blob: 2703c95243961af195145116844b467ee2028185 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Laurent Pinchartc0efd232008-06-30 15:04:50 -030018#include <linux/uaccess.h>
19#include <linux/usb.h>
20#include <linux/videodev2.h>
21#include <linux/vmalloc.h>
22#include <linux/wait.h>
23#include <asm/atomic.h>
24
25#include "uvcvideo.h"
26
Laurent Pinchartc0efd232008-06-30 15:04:50 -030027#define UVC_CTRL_DATA_CURRENT 0
28#define UVC_CTRL_DATA_BACKUP 1
Laurent Pinchart59529082010-01-23 06:30:20 -030029#define UVC_CTRL_DATA_MIN 2
30#define UVC_CTRL_DATA_MAX 3
31#define UVC_CTRL_DATA_RES 4
32#define UVC_CTRL_DATA_DEF 5
33#define UVC_CTRL_DATA_LAST 6
Laurent Pinchartc0efd232008-06-30 15:04:50 -030034
35/* ------------------------------------------------------------------------
Laurent Pinchart2c2d2642009-01-03 19:12:40 -030036 * Controls
Laurent Pinchartc0efd232008-06-30 15:04:50 -030037 */
38
39static struct uvc_control_info uvc_ctrls[] = {
40 {
41 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -030042 .selector = UVC_PU_BRIGHTNESS_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030043 .index = 0,
44 .size = 2,
45 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
46 | UVC_CONTROL_RESTORE,
47 },
48 {
49 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -030050 .selector = UVC_PU_CONTRAST_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030051 .index = 1,
52 .size = 2,
53 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
54 | UVC_CONTROL_RESTORE,
55 },
56 {
57 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -030058 .selector = UVC_PU_HUE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030059 .index = 2,
60 .size = 2,
61 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
62 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
63 },
64 {
65 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -030066 .selector = UVC_PU_SATURATION_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030067 .index = 3,
68 .size = 2,
69 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
70 | UVC_CONTROL_RESTORE,
71 },
72 {
73 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -030074 .selector = UVC_PU_SHARPNESS_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030075 .index = 4,
76 .size = 2,
77 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
78 | UVC_CONTROL_RESTORE,
79 },
80 {
81 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -030082 .selector = UVC_PU_GAMMA_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -030083 .index = 5,
84 .size = 2,
85 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
86 | UVC_CONTROL_RESTORE,
87 },
88 {
89 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -030090 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -030091 .index = 6,
92 .size = 2,
93 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
94 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
95 },
96 {
97 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -030098 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -030099 .index = 7,
100 .size = 4,
101 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
102 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
103 },
104 {
105 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300106 .selector = UVC_PU_BACKLIGHT_COMPENSATION_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300107 .index = 8,
108 .size = 2,
109 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
110 | UVC_CONTROL_RESTORE,
111 },
112 {
113 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300114 .selector = UVC_PU_GAIN_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300115 .index = 9,
116 .size = 2,
117 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
118 | UVC_CONTROL_RESTORE,
119 },
120 {
121 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300122 .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300123 .index = 10,
124 .size = 1,
125 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
126 | UVC_CONTROL_RESTORE,
127 },
128 {
129 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300130 .selector = UVC_PU_HUE_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300131 .index = 11,
132 .size = 1,
133 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
134 | UVC_CONTROL_GET_DEF | UVC_CONTROL_RESTORE,
135 },
136 {
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300137 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300138 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_AUTO_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300139 .index = 12,
140 .size = 1,
141 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
142 | UVC_CONTROL_GET_DEF | UVC_CONTROL_RESTORE,
143 },
144 {
145 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300146 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_AUTO_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300147 .index = 13,
148 .size = 1,
149 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
150 | UVC_CONTROL_GET_DEF | UVC_CONTROL_RESTORE,
151 },
152 {
153 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300154 .selector = UVC_PU_DIGITAL_MULTIPLIER_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300155 .index = 14,
156 .size = 2,
157 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
158 | UVC_CONTROL_RESTORE,
159 },
160 {
161 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300162 .selector = UVC_PU_DIGITAL_MULTIPLIER_LIMIT_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300163 .index = 15,
164 .size = 2,
165 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
166 | UVC_CONTROL_RESTORE,
167 },
168 {
169 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300170 .selector = UVC_PU_ANALOG_VIDEO_STANDARD_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300171 .index = 16,
172 .size = 1,
173 .flags = UVC_CONTROL_GET_CUR,
174 },
175 {
176 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300177 .selector = UVC_PU_ANALOG_LOCK_STATUS_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300178 .index = 17,
179 .size = 1,
180 .flags = UVC_CONTROL_GET_CUR,
181 },
182 {
183 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300184 .selector = UVC_CT_SCANNING_MODE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300185 .index = 0,
186 .size = 1,
187 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
188 | UVC_CONTROL_RESTORE,
189 },
190 {
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300191 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300192 .selector = UVC_CT_AE_MODE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300193 .index = 1,
194 .size = 1,
195 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
196 | UVC_CONTROL_GET_DEF | UVC_CONTROL_GET_RES
197 | UVC_CONTROL_RESTORE,
198 },
199 {
200 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300201 .selector = UVC_CT_AE_PRIORITY_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300202 .index = 2,
203 .size = 1,
204 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
205 | UVC_CONTROL_RESTORE,
206 },
207 {
208 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300209 .selector = UVC_CT_EXPOSURE_TIME_ABSOLUTE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300210 .index = 3,
211 .size = 4,
212 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
213 | UVC_CONTROL_RESTORE,
214 },
215 {
216 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300217 .selector = UVC_CT_EXPOSURE_TIME_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300218 .index = 4,
219 .size = 1,
Laurent Pincharta90ef692010-04-25 16:23:24 -0300220 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_RESTORE,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300221 },
222 {
223 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300224 .selector = UVC_CT_FOCUS_ABSOLUTE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300225 .index = 5,
226 .size = 2,
227 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
228 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
229 },
230 {
231 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300232 .selector = UVC_CT_FOCUS_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300233 .index = 6,
234 .size = 2,
Laurent Pincharta90ef692010-04-25 16:23:24 -0300235 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_MIN
236 | UVC_CONTROL_GET_MAX | UVC_CONTROL_GET_RES
237 | UVC_CONTROL_GET_DEF | UVC_CONTROL_AUTO_UPDATE,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300238 },
239 {
240 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300241 .selector = UVC_CT_IRIS_ABSOLUTE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300242 .index = 7,
243 .size = 2,
244 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
245 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
246 },
247 {
248 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300249 .selector = UVC_CT_IRIS_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300250 .index = 8,
251 .size = 1,
Laurent Pincharta90ef692010-04-25 16:23:24 -0300252 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_AUTO_UPDATE,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300253 },
254 {
255 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300256 .selector = UVC_CT_ZOOM_ABSOLUTE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300257 .index = 9,
258 .size = 2,
259 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
260 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
261 },
262 {
263 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300264 .selector = UVC_CT_ZOOM_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300265 .index = 10,
266 .size = 3,
Laurent Pincharta90ef692010-04-25 16:23:24 -0300267 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_MIN
268 | UVC_CONTROL_GET_MAX | UVC_CONTROL_GET_RES
269 | UVC_CONTROL_GET_DEF | UVC_CONTROL_AUTO_UPDATE,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300270 },
271 {
272 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300273 .selector = UVC_CT_PANTILT_ABSOLUTE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300274 .index = 11,
275 .size = 8,
276 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
277 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
278 },
279 {
280 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300281 .selector = UVC_CT_PANTILT_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300282 .index = 12,
283 .size = 4,
Laurent Pincharta90ef692010-04-25 16:23:24 -0300284 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_MIN
285 | UVC_CONTROL_GET_MAX | UVC_CONTROL_GET_RES
286 | UVC_CONTROL_GET_DEF | UVC_CONTROL_AUTO_UPDATE,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300287 },
288 {
289 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300290 .selector = UVC_CT_ROLL_ABSOLUTE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300291 .index = 13,
292 .size = 2,
293 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_RANGE
294 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
295 },
296 {
297 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300298 .selector = UVC_CT_ROLL_RELATIVE_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300299 .index = 14,
300 .size = 2,
Laurent Pincharta90ef692010-04-25 16:23:24 -0300301 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_MIN
302 | UVC_CONTROL_GET_MAX | UVC_CONTROL_GET_RES
303 | UVC_CONTROL_GET_DEF | UVC_CONTROL_AUTO_UPDATE,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300304 },
305 {
306 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300307 .selector = UVC_CT_FOCUS_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300308 .index = 17,
309 .size = 1,
310 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
311 | UVC_CONTROL_GET_DEF | UVC_CONTROL_RESTORE,
312 },
313 {
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300314 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300315 .selector = UVC_CT_PRIVACY_CONTROL,
Laurent Pinchart5e26d502008-09-22 13:14:59 -0300316 .index = 18,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300317 .size = 1,
318 .flags = UVC_CONTROL_SET_CUR | UVC_CONTROL_GET_CUR
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300319 | UVC_CONTROL_RESTORE | UVC_CONTROL_AUTO_UPDATE,
320 },
321};
322
323static struct uvc_menu_info power_line_frequency_controls[] = {
324 { 0, "Disabled" },
325 { 1, "50 Hz" },
326 { 2, "60 Hz" },
327};
328
329static struct uvc_menu_info exposure_auto_controls[] = {
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300330 { 2, "Auto Mode" },
Laurent Pinchart90ac5ea2008-07-26 11:42:29 -0300331 { 1, "Manual Mode" },
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300332 { 4, "Shutter Priority Mode" },
333 { 8, "Aperture Priority Mode" },
334};
335
Laurent Pinchart97683522008-12-16 06:46:32 -0300336static __s32 uvc_ctrl_get_zoom(struct uvc_control_mapping *mapping,
337 __u8 query, const __u8 *data)
338{
339 __s8 zoom = (__s8)data[0];
340
341 switch (query) {
Laurent Pinchartb482d922009-06-26 11:39:42 -0300342 case UVC_GET_CUR:
Laurent Pinchart97683522008-12-16 06:46:32 -0300343 return (zoom == 0) ? 0 : (zoom > 0 ? data[2] : -data[2]);
344
Laurent Pinchartb482d922009-06-26 11:39:42 -0300345 case UVC_GET_MIN:
346 case UVC_GET_MAX:
347 case UVC_GET_RES:
348 case UVC_GET_DEF:
Laurent Pinchart97683522008-12-16 06:46:32 -0300349 default:
350 return data[2];
351 }
352}
353
354static void uvc_ctrl_set_zoom(struct uvc_control_mapping *mapping,
355 __s32 value, __u8 *data)
356{
357 data[0] = value == 0 ? 0 : (value > 0) ? 1 : 0xff;
Laurent Pinchart2e896132009-11-04 13:11:10 -0300358 data[2] = min((int)abs(value), 0xff);
Laurent Pinchart97683522008-12-16 06:46:32 -0300359}
360
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300361static struct uvc_control_mapping uvc_ctrl_mappings[] = {
362 {
363 .id = V4L2_CID_BRIGHTNESS,
364 .name = "Brightness",
365 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300366 .selector = UVC_PU_BRIGHTNESS_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300367 .size = 16,
368 .offset = 0,
369 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
370 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
371 },
372 {
373 .id = V4L2_CID_CONTRAST,
374 .name = "Contrast",
375 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300376 .selector = UVC_PU_CONTRAST_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300377 .size = 16,
378 .offset = 0,
379 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
380 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
381 },
382 {
383 .id = V4L2_CID_HUE,
384 .name = "Hue",
385 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300386 .selector = UVC_PU_HUE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300387 .size = 16,
388 .offset = 0,
389 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
390 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
391 },
392 {
393 .id = V4L2_CID_SATURATION,
394 .name = "Saturation",
395 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300396 .selector = UVC_PU_SATURATION_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300397 .size = 16,
398 .offset = 0,
399 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
400 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
401 },
402 {
403 .id = V4L2_CID_SHARPNESS,
404 .name = "Sharpness",
405 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300406 .selector = UVC_PU_SHARPNESS_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300407 .size = 16,
408 .offset = 0,
409 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
410 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
411 },
412 {
413 .id = V4L2_CID_GAMMA,
414 .name = "Gamma",
415 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300416 .selector = UVC_PU_GAMMA_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300417 .size = 16,
418 .offset = 0,
419 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
420 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
421 },
422 {
423 .id = V4L2_CID_BACKLIGHT_COMPENSATION,
424 .name = "Backlight Compensation",
425 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300426 .selector = UVC_PU_BACKLIGHT_COMPENSATION_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300427 .size = 16,
428 .offset = 0,
429 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
430 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
431 },
432 {
433 .id = V4L2_CID_GAIN,
434 .name = "Gain",
435 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300436 .selector = UVC_PU_GAIN_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300437 .size = 16,
438 .offset = 0,
439 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
440 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
441 },
442 {
443 .id = V4L2_CID_POWER_LINE_FREQUENCY,
444 .name = "Power Line Frequency",
445 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300446 .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300447 .size = 2,
448 .offset = 0,
449 .v4l2_type = V4L2_CTRL_TYPE_MENU,
450 .data_type = UVC_CTRL_DATA_TYPE_ENUM,
451 .menu_info = power_line_frequency_controls,
452 .menu_count = ARRAY_SIZE(power_line_frequency_controls),
453 },
454 {
455 .id = V4L2_CID_HUE_AUTO,
456 .name = "Hue, Auto",
457 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300458 .selector = UVC_PU_HUE_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300459 .size = 1,
460 .offset = 0,
461 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
462 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
463 },
464 {
465 .id = V4L2_CID_EXPOSURE_AUTO,
466 .name = "Exposure, Auto",
467 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300468 .selector = UVC_CT_AE_MODE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300469 .size = 4,
470 .offset = 0,
471 .v4l2_type = V4L2_CTRL_TYPE_MENU,
472 .data_type = UVC_CTRL_DATA_TYPE_BITMASK,
473 .menu_info = exposure_auto_controls,
474 .menu_count = ARRAY_SIZE(exposure_auto_controls),
475 },
476 {
477 .id = V4L2_CID_EXPOSURE_AUTO_PRIORITY,
478 .name = "Exposure, Auto Priority",
479 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300480 .selector = UVC_CT_AE_PRIORITY_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300481 .size = 1,
482 .offset = 0,
483 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
484 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
485 },
486 {
487 .id = V4L2_CID_EXPOSURE_ABSOLUTE,
488 .name = "Exposure (Absolute)",
489 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300490 .selector = UVC_CT_EXPOSURE_TIME_ABSOLUTE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300491 .size = 32,
492 .offset = 0,
493 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
494 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
495 },
496 {
497 .id = V4L2_CID_AUTO_WHITE_BALANCE,
498 .name = "White Balance Temperature, Auto",
499 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300500 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300501 .size = 1,
502 .offset = 0,
503 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
504 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
505 },
506 {
507 .id = V4L2_CID_WHITE_BALANCE_TEMPERATURE,
508 .name = "White Balance Temperature",
509 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300510 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300511 .size = 16,
512 .offset = 0,
513 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
514 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
515 },
516 {
517 .id = V4L2_CID_AUTO_WHITE_BALANCE,
518 .name = "White Balance Component, Auto",
519 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300520 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300521 .size = 1,
522 .offset = 0,
523 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
524 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
525 },
526 {
527 .id = V4L2_CID_BLUE_BALANCE,
528 .name = "White Balance Blue Component",
529 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300530 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300531 .size = 16,
532 .offset = 0,
533 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
534 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
535 },
536 {
537 .id = V4L2_CID_RED_BALANCE,
538 .name = "White Balance Red Component",
539 .entity = UVC_GUID_UVC_PROCESSING,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300540 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300541 .size = 16,
542 .offset = 16,
543 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
544 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
545 },
546 {
547 .id = V4L2_CID_FOCUS_ABSOLUTE,
548 .name = "Focus (absolute)",
549 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300550 .selector = UVC_CT_FOCUS_ABSOLUTE_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300551 .size = 16,
552 .offset = 0,
553 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
554 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
555 },
556 {
557 .id = V4L2_CID_FOCUS_AUTO,
558 .name = "Focus, Auto",
559 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300560 .selector = UVC_CT_FOCUS_AUTO_CONTROL,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300561 .size = 1,
562 .offset = 0,
563 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
564 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
565 },
Laurent Pinchart6df126f2008-12-16 06:44:11 -0300566 {
Laurent Pinchart35a00c42010-01-20 12:13:46 -0300567 .id = V4L2_CID_IRIS_ABSOLUTE,
568 .name = "Iris, Absolute",
569 .entity = UVC_GUID_UVC_CAMERA,
570 .selector = UVC_CT_IRIS_ABSOLUTE_CONTROL,
571 .size = 16,
572 .offset = 0,
573 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
574 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
575 },
576 {
577 .id = V4L2_CID_IRIS_RELATIVE,
578 .name = "Iris, Relative",
579 .entity = UVC_GUID_UVC_CAMERA,
580 .selector = UVC_CT_IRIS_RELATIVE_CONTROL,
581 .size = 8,
582 .offset = 0,
583 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
584 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
585 },
586 {
Laurent Pinchart97683522008-12-16 06:46:32 -0300587 .id = V4L2_CID_ZOOM_ABSOLUTE,
588 .name = "Zoom, Absolute",
589 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300590 .selector = UVC_CT_ZOOM_ABSOLUTE_CONTROL,
Laurent Pinchart97683522008-12-16 06:46:32 -0300591 .size = 16,
592 .offset = 0,
593 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
594 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED,
595 },
596 {
597 .id = V4L2_CID_ZOOM_CONTINUOUS,
598 .name = "Zoom, Continuous",
599 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300600 .selector = UVC_CT_ZOOM_RELATIVE_CONTROL,
Laurent Pinchart97683522008-12-16 06:46:32 -0300601 .size = 0,
602 .offset = 0,
603 .v4l2_type = V4L2_CTRL_TYPE_INTEGER,
604 .data_type = UVC_CTRL_DATA_TYPE_SIGNED,
605 .get = uvc_ctrl_get_zoom,
606 .set = uvc_ctrl_set_zoom,
607 },
608 {
Laurent Pinchart6df126f2008-12-16 06:44:11 -0300609 .id = V4L2_CID_PRIVACY,
610 .name = "Privacy",
611 .entity = UVC_GUID_UVC_CAMERA,
Laurent Pinchartb482d922009-06-26 11:39:42 -0300612 .selector = UVC_CT_PRIVACY_CONTROL,
Laurent Pinchart6df126f2008-12-16 06:44:11 -0300613 .size = 1,
614 .offset = 0,
615 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN,
616 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN,
617 },
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300618};
619
620/* ------------------------------------------------------------------------
621 * Utility functions
622 */
623
624static inline __u8 *uvc_ctrl_data(struct uvc_control *ctrl, int id)
625{
626 return ctrl->data + id * ctrl->info->size;
627}
628
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -0300629static inline int uvc_test_bit(const __u8 *data, int bit)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300630{
631 return (data[bit >> 3] >> (bit & 7)) & 1;
632}
633
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -0300634static inline void uvc_clear_bit(__u8 *data, int bit)
635{
636 data[bit >> 3] &= ~(1 << (bit & 7));
637}
638
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300639/* Extract the bit string specified by mapping->offset and mapping->size
640 * from the little-endian data stored at 'data' and return the result as
641 * a signed 32bit integer. Sign extension will be performed if the mapping
642 * references a signed data type.
643 */
Laurent Pinchart97683522008-12-16 06:46:32 -0300644static __s32 uvc_get_le_value(struct uvc_control_mapping *mapping,
645 __u8 query, const __u8 *data)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300646{
647 int bits = mapping->size;
648 int offset = mapping->offset;
649 __s32 value = 0;
650 __u8 mask;
651
652 data += offset / 8;
653 offset &= 7;
654 mask = ((1LL << bits) - 1) << offset;
655
656 for (; bits > 0; data++) {
657 __u8 byte = *data & mask;
658 value |= offset > 0 ? (byte >> offset) : (byte << (-offset));
659 bits -= 8 - (offset > 0 ? offset : 0);
660 offset -= 8;
661 mask = (1 << bits) - 1;
662 }
663
Laurent Pinchart2c2d2642009-01-03 19:12:40 -0300664 /* Sign-extend the value if needed. */
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300665 if (mapping->data_type == UVC_CTRL_DATA_TYPE_SIGNED)
666 value |= -(value & (1 << (mapping->size - 1)));
667
668 return value;
669}
670
671/* Set the bit string specified by mapping->offset and mapping->size
672 * in the little-endian data stored at 'data' to the value 'value'.
673 */
Laurent Pinchart97683522008-12-16 06:46:32 -0300674static void uvc_set_le_value(struct uvc_control_mapping *mapping,
675 __s32 value, __u8 *data)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300676{
677 int bits = mapping->size;
678 int offset = mapping->offset;
679 __u8 mask;
680
681 data += offset / 8;
682 offset &= 7;
683
684 for (; bits > 0; data++) {
685 mask = ((1LL << bits) - 1) << offset;
686 *data = (*data & ~mask) | ((value << offset) & mask);
687 value >>= offset ? offset : 8;
688 bits -= 8 - offset;
689 offset = 0;
690 }
691}
692
693/* ------------------------------------------------------------------------
694 * Terminal and unit management
695 */
696
697static const __u8 uvc_processing_guid[16] = UVC_GUID_UVC_PROCESSING;
698static const __u8 uvc_camera_guid[16] = UVC_GUID_UVC_CAMERA;
699static const __u8 uvc_media_transport_input_guid[16] =
700 UVC_GUID_UVC_MEDIA_TRANSPORT_INPUT;
701
702static int uvc_entity_match_guid(struct uvc_entity *entity, __u8 guid[16])
703{
704 switch (UVC_ENTITY_TYPE(entity)) {
Laurent Pinchartb482d922009-06-26 11:39:42 -0300705 case UVC_ITT_CAMERA:
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300706 return memcmp(uvc_camera_guid, guid, 16) == 0;
707
Laurent Pinchartb482d922009-06-26 11:39:42 -0300708 case UVC_ITT_MEDIA_TRANSPORT_INPUT:
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300709 return memcmp(uvc_media_transport_input_guid, guid, 16) == 0;
710
Laurent Pinchartb482d922009-06-26 11:39:42 -0300711 case UVC_VC_PROCESSING_UNIT:
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300712 return memcmp(uvc_processing_guid, guid, 16) == 0;
713
Laurent Pinchartb482d922009-06-26 11:39:42 -0300714 case UVC_VC_EXTENSION_UNIT:
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300715 return memcmp(entity->extension.guidExtensionCode,
716 guid, 16) == 0;
717
718 default:
719 return 0;
720 }
721}
722
723/* ------------------------------------------------------------------------
724 * UVC Controls
725 */
726
727static void __uvc_find_control(struct uvc_entity *entity, __u32 v4l2_id,
728 struct uvc_control_mapping **mapping, struct uvc_control **control,
729 int next)
730{
731 struct uvc_control *ctrl;
732 struct uvc_control_mapping *map;
733 unsigned int i;
734
735 if (entity == NULL)
736 return;
737
738 for (i = 0; i < entity->ncontrols; ++i) {
739 ctrl = &entity->controls[i];
740 if (ctrl->info == NULL)
741 continue;
742
743 list_for_each_entry(map, &ctrl->info->mappings, list) {
744 if ((map->id == v4l2_id) && !next) {
745 *control = ctrl;
746 *mapping = map;
747 return;
748 }
749
750 if ((*mapping == NULL || (*mapping)->id > map->id) &&
751 (map->id > v4l2_id) && next) {
752 *control = ctrl;
753 *mapping = map;
754 }
755 }
756 }
757}
758
Laurent Pinchart8e113592009-07-01 20:24:47 -0300759struct uvc_control *uvc_find_control(struct uvc_video_chain *chain,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300760 __u32 v4l2_id, struct uvc_control_mapping **mapping)
761{
762 struct uvc_control *ctrl = NULL;
763 struct uvc_entity *entity;
764 int next = v4l2_id & V4L2_CTRL_FLAG_NEXT_CTRL;
765
766 *mapping = NULL;
767
768 /* Mask the query flags. */
769 v4l2_id &= V4L2_CTRL_ID_MASK;
770
771 /* Find the control. */
Laurent Pinchart6241d8c2009-11-25 12:00:22 -0300772 list_for_each_entry(entity, &chain->entities, chain) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300773 __uvc_find_control(entity, v4l2_id, mapping, &ctrl, next);
774 if (ctrl && !next)
775 return ctrl;
776 }
777
778 if (ctrl == NULL && !next)
779 uvc_trace(UVC_TRACE_CONTROL, "Control 0x%08x not found.\n",
780 v4l2_id);
781
782 return ctrl;
783}
784
Laurent Pinchart59529082010-01-23 06:30:20 -0300785static int uvc_ctrl_populate_cache(struct uvc_video_chain *chain,
786 struct uvc_control *ctrl)
787{
788 int ret;
789
790 if (ctrl->info->flags & UVC_CONTROL_GET_DEF) {
791 ret = uvc_query_ctrl(chain->dev, UVC_GET_DEF, ctrl->entity->id,
792 chain->dev->intfnum, ctrl->info->selector,
793 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_DEF),
794 ctrl->info->size);
795 if (ret < 0)
796 return ret;
797 }
798
799 if (ctrl->info->flags & UVC_CONTROL_GET_MIN) {
800 ret = uvc_query_ctrl(chain->dev, UVC_GET_MIN, ctrl->entity->id,
801 chain->dev->intfnum, ctrl->info->selector,
802 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MIN),
803 ctrl->info->size);
804 if (ret < 0)
805 return ret;
806 }
807 if (ctrl->info->flags & UVC_CONTROL_GET_MAX) {
808 ret = uvc_query_ctrl(chain->dev, UVC_GET_MAX, ctrl->entity->id,
809 chain->dev->intfnum, ctrl->info->selector,
810 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MAX),
811 ctrl->info->size);
812 if (ret < 0)
813 return ret;
814 }
815 if (ctrl->info->flags & UVC_CONTROL_GET_RES) {
816 ret = uvc_query_ctrl(chain->dev, UVC_GET_RES, ctrl->entity->id,
817 chain->dev->intfnum, ctrl->info->selector,
818 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_RES),
819 ctrl->info->size);
820 if (ret < 0)
821 return ret;
822 }
823
824 ctrl->cached = 1;
825 return 0;
826}
827
Laurent Pinchart8e113592009-07-01 20:24:47 -0300828int uvc_query_v4l2_ctrl(struct uvc_video_chain *chain,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300829 struct v4l2_queryctrl *v4l2_ctrl)
830{
831 struct uvc_control *ctrl;
832 struct uvc_control_mapping *mapping;
833 struct uvc_menu_info *menu;
834 unsigned int i;
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300835 int ret;
836
Laurent Pinchart8e113592009-07-01 20:24:47 -0300837 ctrl = uvc_find_control(chain, v4l2_ctrl->id, &mapping);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300838 if (ctrl == NULL)
839 return -EINVAL;
840
Laurent Pinchart54812c72008-07-17 07:37:37 -0300841 memset(v4l2_ctrl, 0, sizeof *v4l2_ctrl);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300842 v4l2_ctrl->id = mapping->id;
843 v4l2_ctrl->type = mapping->v4l2_type;
Laurent Pinchartd0ebf302009-01-08 14:05:11 -0300844 strlcpy(v4l2_ctrl->name, mapping->name, sizeof v4l2_ctrl->name);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300845 v4l2_ctrl->flags = 0;
846
Laurent Pincharta90ef692010-04-25 16:23:24 -0300847 if (!(ctrl->info->flags & UVC_CONTROL_GET_CUR))
848 v4l2_ctrl->flags |= V4L2_CTRL_FLAG_WRITE_ONLY;
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300849 if (!(ctrl->info->flags & UVC_CONTROL_SET_CUR))
850 v4l2_ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY;
851
Laurent Pinchart59529082010-01-23 06:30:20 -0300852 if (!ctrl->cached) {
853 ret = uvc_ctrl_populate_cache(chain, ctrl);
Laurent Pinchartb482d922009-06-26 11:39:42 -0300854 if (ret < 0)
Laurent Pinchart59529082010-01-23 06:30:20 -0300855 return ret;
856 }
857
858 if (ctrl->info->flags & UVC_CONTROL_GET_DEF) {
859 v4l2_ctrl->default_value = mapping->get(mapping, UVC_GET_DEF,
860 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_DEF));
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300861 }
862
Laurent Pinchart54812c72008-07-17 07:37:37 -0300863 switch (mapping->v4l2_type) {
864 case V4L2_CTRL_TYPE_MENU:
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300865 v4l2_ctrl->minimum = 0;
866 v4l2_ctrl->maximum = mapping->menu_count - 1;
867 v4l2_ctrl->step = 1;
868
869 menu = mapping->menu_info;
870 for (i = 0; i < mapping->menu_count; ++i, ++menu) {
871 if (menu->value == v4l2_ctrl->default_value) {
872 v4l2_ctrl->default_value = i;
873 break;
874 }
875 }
876
Laurent Pinchart59529082010-01-23 06:30:20 -0300877 return 0;
Laurent Pinchart54812c72008-07-17 07:37:37 -0300878
879 case V4L2_CTRL_TYPE_BOOLEAN:
880 v4l2_ctrl->minimum = 0;
881 v4l2_ctrl->maximum = 1;
882 v4l2_ctrl->step = 1;
Laurent Pinchart59529082010-01-23 06:30:20 -0300883 return 0;
Laurent Pinchart54812c72008-07-17 07:37:37 -0300884
Laurent Pinchartf4eabaf2009-08-06 06:05:40 -0300885 case V4L2_CTRL_TYPE_BUTTON:
886 v4l2_ctrl->minimum = 0;
887 v4l2_ctrl->maximum = 0;
888 v4l2_ctrl->step = 0;
Laurent Pinchart59529082010-01-23 06:30:20 -0300889 return 0;
Laurent Pinchartf4eabaf2009-08-06 06:05:40 -0300890
Laurent Pinchart54812c72008-07-17 07:37:37 -0300891 default:
892 break;
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300893 }
894
Laurent Pinchart59529082010-01-23 06:30:20 -0300895 if (ctrl->info->flags & UVC_CONTROL_GET_MIN)
896 v4l2_ctrl->minimum = mapping->get(mapping, UVC_GET_MIN,
897 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MIN));
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300898
Laurent Pinchart59529082010-01-23 06:30:20 -0300899 if (ctrl->info->flags & UVC_CONTROL_GET_MAX)
900 v4l2_ctrl->maximum = mapping->get(mapping, UVC_GET_MAX,
901 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MAX));
902
903 if (ctrl->info->flags & UVC_CONTROL_GET_RES)
904 v4l2_ctrl->step = mapping->get(mapping, UVC_GET_RES,
905 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_RES));
906
907 return 0;
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300908}
909
910
911/* --------------------------------------------------------------------------
912 * Control transactions
913 *
914 * To make extended set operations as atomic as the hardware allows, controls
915 * are handled using begin/commit/rollback operations.
916 *
917 * At the beginning of a set request, uvc_ctrl_begin should be called to
918 * initialize the request. This function acquires the control lock.
919 *
920 * When setting a control, the new value is stored in the control data field
921 * at position UVC_CTRL_DATA_CURRENT. The control is then marked as dirty for
922 * later processing. If the UVC and V4L2 control sizes differ, the current
923 * value is loaded from the hardware before storing the new value in the data
924 * field.
925 *
926 * After processing all controls in the transaction, uvc_ctrl_commit or
927 * uvc_ctrl_rollback must be called to apply the pending changes to the
928 * hardware or revert them. When applying changes, all controls marked as
929 * dirty will be modified in the UVC device, and the dirty flag will be
930 * cleared. When reverting controls, the control data field
931 * UVC_CTRL_DATA_CURRENT is reverted to its previous value
932 * (UVC_CTRL_DATA_BACKUP) for all dirty controls. Both functions release the
933 * control lock.
934 */
Laurent Pinchart8e113592009-07-01 20:24:47 -0300935int uvc_ctrl_begin(struct uvc_video_chain *chain)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300936{
Laurent Pinchart8e113592009-07-01 20:24:47 -0300937 return mutex_lock_interruptible(&chain->ctrl_mutex) ? -ERESTARTSYS : 0;
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300938}
939
940static int uvc_ctrl_commit_entity(struct uvc_device *dev,
941 struct uvc_entity *entity, int rollback)
942{
943 struct uvc_control *ctrl;
944 unsigned int i;
945 int ret;
946
947 if (entity == NULL)
948 return 0;
949
950 for (i = 0; i < entity->ncontrols; ++i) {
951 ctrl = &entity->controls[i];
Laurent Pinchartb1accfa2008-09-27 20:54:02 -0300952 if (ctrl->info == NULL)
953 continue;
954
955 /* Reset the loaded flag for auto-update controls that were
956 * marked as loaded in uvc_ctrl_get/uvc_ctrl_set to prevent
957 * uvc_ctrl_get from using the cached value.
958 */
959 if (ctrl->info->flags & UVC_CONTROL_AUTO_UPDATE)
960 ctrl->loaded = 0;
961
962 if (!ctrl->dirty)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300963 continue;
964
965 if (!rollback)
Laurent Pinchartb482d922009-06-26 11:39:42 -0300966 ret = uvc_query_ctrl(dev, UVC_SET_CUR, ctrl->entity->id,
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300967 dev->intfnum, ctrl->info->selector,
968 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
969 ctrl->info->size);
970 else
971 ret = 0;
972
973 if (rollback || ret < 0)
974 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
975 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
976 ctrl->info->size);
977
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300978 ctrl->dirty = 0;
979
980 if (ret < 0)
981 return ret;
982 }
983
984 return 0;
985}
986
Laurent Pinchart8e113592009-07-01 20:24:47 -0300987int __uvc_ctrl_commit(struct uvc_video_chain *chain, int rollback)
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300988{
989 struct uvc_entity *entity;
990 int ret = 0;
991
992 /* Find the control. */
Laurent Pinchart6241d8c2009-11-25 12:00:22 -0300993 list_for_each_entry(entity, &chain->entities, chain) {
Laurent Pinchart8e113592009-07-01 20:24:47 -0300994 ret = uvc_ctrl_commit_entity(chain->dev, entity, rollback);
Laurent Pinchartc0efd232008-06-30 15:04:50 -0300995 if (ret < 0)
996 goto done;
997 }
998
999done:
Laurent Pinchart8e113592009-07-01 20:24:47 -03001000 mutex_unlock(&chain->ctrl_mutex);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001001 return ret;
1002}
1003
Laurent Pinchart8e113592009-07-01 20:24:47 -03001004int uvc_ctrl_get(struct uvc_video_chain *chain,
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001005 struct v4l2_ext_control *xctrl)
1006{
1007 struct uvc_control *ctrl;
1008 struct uvc_control_mapping *mapping;
1009 struct uvc_menu_info *menu;
1010 unsigned int i;
1011 int ret;
1012
Laurent Pinchart8e113592009-07-01 20:24:47 -03001013 ctrl = uvc_find_control(chain, xctrl->id, &mapping);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001014 if (ctrl == NULL || (ctrl->info->flags & UVC_CONTROL_GET_CUR) == 0)
1015 return -EINVAL;
1016
1017 if (!ctrl->loaded) {
Laurent Pinchart8e113592009-07-01 20:24:47 -03001018 ret = uvc_query_ctrl(chain->dev, UVC_GET_CUR, ctrl->entity->id,
1019 chain->dev->intfnum, ctrl->info->selector,
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001020 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1021 ctrl->info->size);
1022 if (ret < 0)
1023 return ret;
1024
Laurent Pinchartb1accfa2008-09-27 20:54:02 -03001025 ctrl->loaded = 1;
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001026 }
1027
Laurent Pinchartb482d922009-06-26 11:39:42 -03001028 xctrl->value = mapping->get(mapping, UVC_GET_CUR,
Laurent Pinchart97683522008-12-16 06:46:32 -03001029 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT));
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001030
1031 if (mapping->v4l2_type == V4L2_CTRL_TYPE_MENU) {
1032 menu = mapping->menu_info;
1033 for (i = 0; i < mapping->menu_count; ++i, ++menu) {
1034 if (menu->value == xctrl->value) {
1035 xctrl->value = i;
1036 break;
1037 }
1038 }
1039 }
1040
1041 return 0;
1042}
1043
Laurent Pinchart8e113592009-07-01 20:24:47 -03001044int uvc_ctrl_set(struct uvc_video_chain *chain,
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001045 struct v4l2_ext_control *xctrl)
1046{
1047 struct uvc_control *ctrl;
1048 struct uvc_control_mapping *mapping;
Laurent Pincharte54532e2010-01-23 07:07:53 -03001049 s32 value;
1050 u32 step;
1051 s32 min;
1052 s32 max;
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001053 int ret;
1054
Laurent Pinchart8e113592009-07-01 20:24:47 -03001055 ctrl = uvc_find_control(chain, xctrl->id, &mapping);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001056 if (ctrl == NULL || (ctrl->info->flags & UVC_CONTROL_SET_CUR) == 0)
1057 return -EINVAL;
1058
Laurent Pincharte54532e2010-01-23 07:07:53 -03001059 /* Clamp out of range values. */
1060 switch (mapping->v4l2_type) {
1061 case V4L2_CTRL_TYPE_INTEGER:
1062 if (!ctrl->cached) {
1063 ret = uvc_ctrl_populate_cache(chain, ctrl);
1064 if (ret < 0)
1065 return ret;
1066 }
1067
1068 min = mapping->get(mapping, UVC_GET_MIN,
1069 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MIN));
1070 max = mapping->get(mapping, UVC_GET_MAX,
1071 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MAX));
1072 step = mapping->get(mapping, UVC_GET_RES,
1073 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_RES));
1074
1075 xctrl->value = min + (xctrl->value - min + step/2) / step * step;
1076 xctrl->value = clamp(xctrl->value, min, max);
1077 value = xctrl->value;
1078 break;
1079
1080 case V4L2_CTRL_TYPE_BOOLEAN:
1081 xctrl->value = clamp(xctrl->value, 0, 1);
1082 value = xctrl->value;
1083 break;
1084
1085 case V4L2_CTRL_TYPE_MENU:
1086 if (xctrl->value < 0 || xctrl->value >= mapping->menu_count)
Laurent Pinchart8a4e76c2010-01-21 16:53:11 -03001087 return -ERANGE;
Laurent Pincharte54532e2010-01-23 07:07:53 -03001088 value = mapping->menu_info[xctrl->value].value;
1089 break;
1090
1091 default:
1092 value = xctrl->value;
1093 break;
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001094 }
1095
Laurent Pincharte54532e2010-01-23 07:07:53 -03001096 /* If the mapping doesn't span the whole UVC control, the current value
1097 * needs to be loaded from the device to perform the read-modify-write
1098 * operation.
1099 */
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001100 if (!ctrl->loaded && (ctrl->info->size * 8) != mapping->size) {
1101 if ((ctrl->info->flags & UVC_CONTROL_GET_CUR) == 0) {
1102 memset(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1103 0, ctrl->info->size);
1104 } else {
Laurent Pinchart8e113592009-07-01 20:24:47 -03001105 ret = uvc_query_ctrl(chain->dev, UVC_GET_CUR,
1106 ctrl->entity->id, chain->dev->intfnum,
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001107 ctrl->info->selector,
1108 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1109 ctrl->info->size);
1110 if (ret < 0)
1111 return ret;
1112 }
1113
Laurent Pinchartb1accfa2008-09-27 20:54:02 -03001114 ctrl->loaded = 1;
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001115 }
1116
Laurent Pincharte54532e2010-01-23 07:07:53 -03001117 /* Backup the current value in case we need to rollback later. */
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001118 if (!ctrl->dirty) {
1119 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
1120 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1121 ctrl->info->size);
1122 }
1123
Laurent Pinchart97683522008-12-16 06:46:32 -03001124 mapping->set(mapping, value,
1125 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT));
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001126
1127 ctrl->dirty = 1;
1128 ctrl->modified = 1;
1129 return 0;
1130}
1131
1132/* --------------------------------------------------------------------------
1133 * Dynamic controls
1134 */
1135
Laurent Pinchart8e113592009-07-01 20:24:47 -03001136int uvc_xu_ctrl_query(struct uvc_video_chain *chain,
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001137 struct uvc_xu_control *xctrl, int set)
1138{
1139 struct uvc_entity *entity;
1140 struct uvc_control *ctrl = NULL;
1141 unsigned int i, found = 0;
1142 __u8 *data;
1143 int ret;
1144
1145 /* Find the extension unit. */
Laurent Pinchart6241d8c2009-11-25 12:00:22 -03001146 list_for_each_entry(entity, &chain->entities, chain) {
1147 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT &&
1148 entity->id == xctrl->unit)
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001149 break;
1150 }
1151
1152 if (entity->id != xctrl->unit) {
1153 uvc_trace(UVC_TRACE_CONTROL, "Extension unit %u not found.\n",
1154 xctrl->unit);
1155 return -EINVAL;
1156 }
1157
1158 /* Find the control. */
1159 for (i = 0; i < entity->ncontrols; ++i) {
1160 ctrl = &entity->controls[i];
1161 if (ctrl->info == NULL)
1162 continue;
1163
1164 if (ctrl->info->selector == xctrl->selector) {
1165 found = 1;
1166 break;
1167 }
1168 }
1169
1170 if (!found) {
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001171 uvc_trace(UVC_TRACE_CONTROL, "Control %pUl/%u not found.\n",
1172 entity->extension.guidExtensionCode, xctrl->selector);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001173 return -EINVAL;
1174 }
1175
1176 /* Validate control data size. */
1177 if (ctrl->info->size != xctrl->size)
1178 return -EINVAL;
1179
1180 if ((set && !(ctrl->info->flags & UVC_CONTROL_SET_CUR)) ||
1181 (!set && !(ctrl->info->flags & UVC_CONTROL_GET_CUR)))
1182 return -EINVAL;
1183
Laurent Pinchart8e113592009-07-01 20:24:47 -03001184 if (mutex_lock_interruptible(&chain->ctrl_mutex))
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001185 return -ERESTARTSYS;
1186
1187 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
1188 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1189 xctrl->size);
1190 data = uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT);
1191
1192 if (set && copy_from_user(data, xctrl->data, xctrl->size)) {
1193 ret = -EFAULT;
1194 goto out;
1195 }
1196
Laurent Pinchart8e113592009-07-01 20:24:47 -03001197 ret = uvc_query_ctrl(chain->dev, set ? UVC_SET_CUR : UVC_GET_CUR,
1198 xctrl->unit, chain->dev->intfnum, xctrl->selector,
Laurent Pinchartb482d922009-06-26 11:39:42 -03001199 data, xctrl->size);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001200 if (ret < 0)
1201 goto out;
1202
1203 if (!set && copy_to_user(xctrl->data, data, xctrl->size)) {
1204 ret = -EFAULT;
1205 goto out;
1206 }
1207
1208out:
1209 if (ret)
1210 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT),
1211 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP),
1212 xctrl->size);
1213
Laurent Pinchart8e113592009-07-01 20:24:47 -03001214 mutex_unlock(&chain->ctrl_mutex);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001215 return ret;
1216}
1217
1218/* --------------------------------------------------------------------------
1219 * Suspend/resume
1220 */
1221
1222/*
1223 * Restore control values after resume, skipping controls that haven't been
1224 * changed.
1225 *
1226 * TODO
1227 * - Don't restore modified controls that are back to their default value.
1228 * - Handle restore order (Auto-Exposure Mode should be restored before
1229 * Exposure Time).
1230 */
1231int uvc_ctrl_resume_device(struct uvc_device *dev)
1232{
1233 struct uvc_control *ctrl;
1234 struct uvc_entity *entity;
1235 unsigned int i;
1236 int ret;
1237
1238 /* Walk the entities list and restore controls when possible. */
1239 list_for_each_entry(entity, &dev->entities, list) {
1240
1241 for (i = 0; i < entity->ncontrols; ++i) {
1242 ctrl = &entity->controls[i];
1243
1244 if (ctrl->info == NULL || !ctrl->modified ||
1245 (ctrl->info->flags & UVC_CONTROL_RESTORE) == 0)
1246 continue;
1247
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001248 printk(KERN_INFO "restoring control %pUl/%u/%u\n",
1249 ctrl->info->entity, ctrl->info->index,
1250 ctrl->info->selector);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001251 ctrl->dirty = 1;
1252 }
1253
1254 ret = uvc_ctrl_commit_entity(dev, entity, 0);
1255 if (ret < 0)
1256 return ret;
1257 }
1258
1259 return 0;
1260}
1261
1262/* --------------------------------------------------------------------------
1263 * Control and mapping handling
1264 */
1265
1266static void uvc_ctrl_add_ctrl(struct uvc_device *dev,
1267 struct uvc_control_info *info)
1268{
1269 struct uvc_entity *entity;
1270 struct uvc_control *ctrl = NULL;
1271 int ret, found = 0;
1272 unsigned int i;
1273
1274 list_for_each_entry(entity, &dev->entities, list) {
1275 if (!uvc_entity_match_guid(entity, info->entity))
1276 continue;
1277
1278 for (i = 0; i < entity->ncontrols; ++i) {
1279 ctrl = &entity->controls[i];
1280 if (ctrl->index == info->index) {
1281 found = 1;
1282 break;
1283 }
1284 }
1285
1286 if (found)
1287 break;
1288 }
1289
1290 if (!found)
1291 return;
1292
Laurent Pinchartb482d922009-06-26 11:39:42 -03001293 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001294 /* Check if the device control information and length match
1295 * the user supplied information.
1296 */
1297 __u32 flags;
1298 __le16 size;
1299 __u8 inf;
1300
Laurent Pinchartb482d922009-06-26 11:39:42 -03001301 ret = uvc_query_ctrl(dev, UVC_GET_LEN, ctrl->entity->id,
1302 dev->intfnum, info->selector, (__u8 *)&size, 2);
1303 if (ret < 0) {
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001304 uvc_trace(UVC_TRACE_CONTROL,
1305 "GET_LEN failed on control %pUl/%u (%d).\n",
1306 info->entity, info->selector, ret);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001307 return;
1308 }
1309
1310 if (info->size != le16_to_cpu(size)) {
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001311 uvc_trace(UVC_TRACE_CONTROL, "Control %pUl/%u size "
1312 "doesn't match user supplied value.\n",
1313 info->entity, info->selector);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001314 return;
1315 }
1316
Laurent Pinchartb482d922009-06-26 11:39:42 -03001317 ret = uvc_query_ctrl(dev, UVC_GET_INFO, ctrl->entity->id,
1318 dev->intfnum, info->selector, &inf, 1);
1319 if (ret < 0) {
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001320 uvc_trace(UVC_TRACE_CONTROL,
1321 "GET_INFO failed on control %pUl/%u (%d).\n",
1322 info->entity, info->selector, ret);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001323 return;
1324 }
1325
1326 flags = info->flags;
1327 if (((flags & UVC_CONTROL_GET_CUR) && !(inf & (1 << 0))) ||
1328 ((flags & UVC_CONTROL_SET_CUR) && !(inf & (1 << 1)))) {
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001329 uvc_trace(UVC_TRACE_CONTROL, "Control %pUl/%u flags "
1330 "don't match supported operations.\n",
1331 info->entity, info->selector);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001332 return;
1333 }
1334 }
1335
1336 ctrl->info = info;
Laurent Pinchart59529082010-01-23 06:30:20 -03001337 ctrl->data = kmalloc(ctrl->info->size * UVC_CTRL_DATA_LAST, GFP_KERNEL);
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001338 uvc_trace(UVC_TRACE_CONTROL, "Added control %pUl/%u to device %s "
1339 "entity %u\n", ctrl->info->entity, ctrl->info->selector,
1340 dev->udev->devpath, entity->id);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001341}
1342
1343/*
1344 * Add an item to the UVC control information list, and instantiate a control
1345 * structure for each device that supports the control.
1346 */
1347int uvc_ctrl_add_info(struct uvc_control_info *info)
1348{
1349 struct uvc_control_info *ctrl;
1350 struct uvc_device *dev;
1351 int ret = 0;
1352
1353 /* Find matching controls by walking the devices, entities and
1354 * controls list.
1355 */
1356 mutex_lock(&uvc_driver.ctrl_mutex);
1357
1358 /* First check if the list contains a control matching the new one.
1359 * Bail out if it does.
1360 */
1361 list_for_each_entry(ctrl, &uvc_driver.controls, list) {
1362 if (memcmp(ctrl->entity, info->entity, 16))
1363 continue;
1364
1365 if (ctrl->selector == info->selector) {
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001366 uvc_trace(UVC_TRACE_CONTROL,
1367 "Control %pUl/%u is already defined.\n",
1368 info->entity, info->selector);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001369 ret = -EEXIST;
1370 goto end;
1371 }
1372 if (ctrl->index == info->index) {
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001373 uvc_trace(UVC_TRACE_CONTROL,
1374 "Control %pUl/%u would overwrite index %d.\n",
1375 info->entity, info->selector, info->index);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001376 ret = -EEXIST;
1377 goto end;
1378 }
1379 }
1380
1381 list_for_each_entry(dev, &uvc_driver.devices, list)
1382 uvc_ctrl_add_ctrl(dev, info);
1383
1384 INIT_LIST_HEAD(&info->mappings);
1385 list_add_tail(&info->list, &uvc_driver.controls);
1386end:
1387 mutex_unlock(&uvc_driver.ctrl_mutex);
1388 return ret;
1389}
1390
1391int uvc_ctrl_add_mapping(struct uvc_control_mapping *mapping)
1392{
1393 struct uvc_control_info *info;
1394 struct uvc_control_mapping *map;
1395 int ret = -EINVAL;
1396
Laurent Pinchart97683522008-12-16 06:46:32 -03001397 if (mapping->get == NULL)
1398 mapping->get = uvc_get_le_value;
1399 if (mapping->set == NULL)
1400 mapping->set = uvc_set_le_value;
1401
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001402 if (mapping->id & ~V4L2_CTRL_ID_MASK) {
1403 uvc_trace(UVC_TRACE_CONTROL, "Can't add mapping '%s' with "
1404 "invalid control id 0x%08x\n", mapping->name,
1405 mapping->id);
1406 return -EINVAL;
1407 }
1408
1409 mutex_lock(&uvc_driver.ctrl_mutex);
1410 list_for_each_entry(info, &uvc_driver.controls, list) {
1411 if (memcmp(info->entity, mapping->entity, 16) ||
1412 info->selector != mapping->selector)
1413 continue;
1414
1415 if (info->size * 8 < mapping->size + mapping->offset) {
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001416 uvc_trace(UVC_TRACE_CONTROL,
1417 "Mapping '%s' would overflow control %pUl/%u\n",
1418 mapping->name, info->entity, info->selector);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001419 ret = -EOVERFLOW;
1420 goto end;
1421 }
1422
1423 /* Check if the list contains a mapping matching the new one.
1424 * Bail out if it does.
1425 */
1426 list_for_each_entry(map, &info->mappings, list) {
1427 if (map->id == mapping->id) {
1428 uvc_trace(UVC_TRACE_CONTROL, "Mapping '%s' is "
1429 "already defined.\n", mapping->name);
1430 ret = -EEXIST;
1431 goto end;
1432 }
1433 }
1434
1435 mapping->ctrl = info;
1436 list_add_tail(&mapping->list, &info->mappings);
Laurent Pinchart36bd8832010-01-19 09:06:22 -03001437 uvc_trace(UVC_TRACE_CONTROL,
1438 "Adding mapping %s to control %pUl/%u.\n",
1439 mapping->name, info->entity, info->selector);
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001440
1441 ret = 0;
1442 break;
1443 }
1444end:
1445 mutex_unlock(&uvc_driver.ctrl_mutex);
1446 return ret;
1447}
1448
1449/*
Laurent Pinchartd732c442009-05-31 17:05:55 -03001450 * Prune an entity of its bogus controls using a blacklist. Bogus controls
1451 * are currently the ones that crash the camera or unconditionally return an
1452 * error when queried.
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001453 */
1454static void
Laurent Pinchartd732c442009-05-31 17:05:55 -03001455uvc_ctrl_prune_entity(struct uvc_device *dev, struct uvc_entity *entity)
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001456{
1457 static const struct {
Laurent Pinchartd732c442009-05-31 17:05:55 -03001458 struct usb_device_id id;
1459 u8 index;
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001460 } blacklist[] = {
Laurent Pinchart9405e3c2010-02-03 06:49:35 -03001461 { { USB_DEVICE(0x13d3, 0x509b) }, 9 }, /* Gain */
Laurent Pinchartd732c442009-05-31 17:05:55 -03001462 { { USB_DEVICE(0x1c4f, 0x3000) }, 6 }, /* WB Temperature */
1463 { { USB_DEVICE(0x5986, 0x0241) }, 2 }, /* Hue */
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001464 };
1465
1466 u8 *controls;
1467 unsigned int size;
1468 unsigned int i;
1469
Laurent Pinchartb482d922009-06-26 11:39:42 -03001470 if (UVC_ENTITY_TYPE(entity) != UVC_VC_PROCESSING_UNIT)
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001471 return;
1472
1473 controls = entity->processing.bmControls;
1474 size = entity->processing.bControlSize;
1475
1476 for (i = 0; i < ARRAY_SIZE(blacklist); ++i) {
Laurent Pinchart385097e2009-12-09 22:31:21 -03001477 if (!usb_match_one_id(dev->intf, &blacklist[i].id))
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001478 continue;
1479
Laurent Pinchartd732c442009-05-31 17:05:55 -03001480 if (blacklist[i].index >= 8 * size ||
1481 !uvc_test_bit(controls, blacklist[i].index))
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001482 continue;
1483
Laurent Pinchartd732c442009-05-31 17:05:55 -03001484 uvc_trace(UVC_TRACE_CONTROL, "%u/%u control is black listed, "
1485 "removing it.\n", entity->id, blacklist[i].index);
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001486
Laurent Pinchartd732c442009-05-31 17:05:55 -03001487 uvc_clear_bit(controls, blacklist[i].index);
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001488 }
1489}
1490
1491/*
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001492 * Initialize device controls.
1493 */
1494int uvc_ctrl_init_device(struct uvc_device *dev)
1495{
1496 struct uvc_control_info *info;
1497 struct uvc_control *ctrl;
1498 struct uvc_entity *entity;
1499 unsigned int i;
1500
1501 /* Walk the entities list and instantiate controls */
1502 list_for_each_entry(entity, &dev->entities, list) {
1503 unsigned int bControlSize = 0, ncontrols = 0;
1504 __u8 *bmControls = NULL;
1505
Laurent Pinchartb482d922009-06-26 11:39:42 -03001506 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001507 bmControls = entity->extension.bmControls;
1508 bControlSize = entity->extension.bControlSize;
Laurent Pinchartb482d922009-06-26 11:39:42 -03001509 } else if (UVC_ENTITY_TYPE(entity) == UVC_VC_PROCESSING_UNIT) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001510 bmControls = entity->processing.bmControls;
1511 bControlSize = entity->processing.bControlSize;
Laurent Pinchartb482d922009-06-26 11:39:42 -03001512 } else if (UVC_ENTITY_TYPE(entity) == UVC_ITT_CAMERA) {
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001513 bmControls = entity->camera.bmControls;
1514 bControlSize = entity->camera.bControlSize;
1515 }
1516
Laurent Pinchartd732c442009-05-31 17:05:55 -03001517 uvc_ctrl_prune_entity(dev, entity);
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001518
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001519 for (i = 0; i < bControlSize; ++i)
1520 ncontrols += hweight8(bmControls[i]);
1521
1522 if (ncontrols == 0)
1523 continue;
1524
1525 entity->controls = kzalloc(ncontrols*sizeof *ctrl, GFP_KERNEL);
1526 if (entity->controls == NULL)
1527 return -ENOMEM;
1528
1529 entity->ncontrols = ncontrols;
1530
1531 ctrl = entity->controls;
1532 for (i = 0; i < bControlSize * 8; ++i) {
Laurent Pinchart2bdd29c2008-12-06 17:43:40 -03001533 if (uvc_test_bit(bmControls, i) == 0)
Laurent Pinchartc0efd232008-06-30 15:04:50 -03001534 continue;
1535
1536 ctrl->entity = entity;
1537 ctrl->index = i;
1538 ctrl++;
1539 }
1540 }
1541
1542 /* Walk the controls info list and associate them with the device
1543 * controls, then add the device to the global device list. This has
1544 * to be done while holding the controls lock, to make sure
1545 * uvc_ctrl_add_info() will not get called in-between.
1546 */
1547 mutex_lock(&uvc_driver.ctrl_mutex);
1548 list_for_each_entry(info, &uvc_driver.controls, list)
1549 uvc_ctrl_add_ctrl(dev, info);
1550
1551 list_add_tail(&dev->list, &uvc_driver.devices);
1552 mutex_unlock(&uvc_driver.ctrl_mutex);
1553
1554 return 0;
1555}
1556
1557/*
1558 * Cleanup device controls.
1559 */
1560void uvc_ctrl_cleanup_device(struct uvc_device *dev)
1561{
1562 struct uvc_entity *entity;
1563 unsigned int i;
1564
1565 /* Remove the device from the global devices list */
1566 mutex_lock(&uvc_driver.ctrl_mutex);
1567 if (dev->list.next != NULL)
1568 list_del(&dev->list);
1569 mutex_unlock(&uvc_driver.ctrl_mutex);
1570
1571 list_for_each_entry(entity, &dev->entities, list) {
1572 for (i = 0; i < entity->ncontrols; ++i)
1573 kfree(entity->controls[i].data);
1574
1575 kfree(entity->controls);
1576 }
1577}
1578
1579void uvc_ctrl_init(void)
1580{
1581 struct uvc_control_info *ctrl = uvc_ctrls;
1582 struct uvc_control_info *cend = ctrl + ARRAY_SIZE(uvc_ctrls);
1583 struct uvc_control_mapping *mapping = uvc_ctrl_mappings;
1584 struct uvc_control_mapping *mend =
1585 mapping + ARRAY_SIZE(uvc_ctrl_mappings);
1586
1587 for (; ctrl < cend; ++ctrl)
1588 uvc_ctrl_add_info(ctrl);
1589
1590 for (; mapping < mend; ++mapping)
1591 uvc_ctrl_add_mapping(mapping);
1592}
Hans Verkuilf87086e2008-07-18 00:50:58 -03001593