1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * uvc_ctrl.c -- USB Video Class driver - Controls 4 * 5 * Copyright (C) 2005-2010 6 * Laurent Pinchart (laurent.pinchart@ideasonboard.com) 7 */ 8 9 #include <asm/barrier.h> 10 #include <linux/bitops.h> 11 #include <linux/kernel.h> 12 #include <linux/list.h> 13 #include <linux/module.h> 14 #include <linux/slab.h> 15 #include <linux/uaccess.h> 16 #include <linux/usb.h> 17 #include <linux/videodev2.h> 18 #include <linux/vmalloc.h> 19 #include <linux/wait.h> 20 #include <linux/workqueue.h> 21 #include <linux/atomic.h> 22 #include <media/v4l2-ctrls.h> 23 #include <media/v4l2-uvc.h> 24 25 #include "uvcvideo.h" 26 27 #define UVC_CTRL_DATA_CURRENT 0 28 #define UVC_CTRL_DATA_BACKUP 1 29 #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 34 35 /* ------------------------------------------------------------------------ 36 * Controls 37 */ 38 39 static const struct uvc_control_info uvc_ctrls[] = { 40 { 41 .entity = UVC_GUID_UVC_PROCESSING, 42 .selector = UVC_PU_BRIGHTNESS_CONTROL, 43 .index = 0, 44 .size = 2, 45 .flags = UVC_CTRL_FLAG_SET_CUR 46 | UVC_CTRL_FLAG_GET_RANGE 47 | UVC_CTRL_FLAG_RESTORE, 48 }, 49 { 50 .entity = UVC_GUID_UVC_PROCESSING, 51 .selector = UVC_PU_CONTRAST_CONTROL, 52 .index = 1, 53 .size = 2, 54 .flags = UVC_CTRL_FLAG_SET_CUR 55 | UVC_CTRL_FLAG_GET_RANGE 56 | UVC_CTRL_FLAG_RESTORE, 57 }, 58 { 59 .entity = UVC_GUID_UVC_PROCESSING, 60 .selector = UVC_PU_HUE_CONTROL, 61 .index = 2, 62 .size = 2, 63 .flags = UVC_CTRL_FLAG_SET_CUR 64 | UVC_CTRL_FLAG_GET_RANGE 65 | UVC_CTRL_FLAG_RESTORE 66 | UVC_CTRL_FLAG_AUTO_UPDATE, 67 }, 68 { 69 .entity = UVC_GUID_UVC_PROCESSING, 70 .selector = UVC_PU_SATURATION_CONTROL, 71 .index = 3, 72 .size = 2, 73 .flags = UVC_CTRL_FLAG_SET_CUR 74 | UVC_CTRL_FLAG_GET_RANGE 75 | UVC_CTRL_FLAG_RESTORE, 76 }, 77 { 78 .entity = UVC_GUID_UVC_PROCESSING, 79 .selector = UVC_PU_SHARPNESS_CONTROL, 80 .index = 4, 81 .size = 2, 82 .flags = UVC_CTRL_FLAG_SET_CUR 83 | UVC_CTRL_FLAG_GET_RANGE 84 | UVC_CTRL_FLAG_RESTORE, 85 }, 86 { 87 .entity = UVC_GUID_UVC_PROCESSING, 88 .selector = UVC_PU_GAMMA_CONTROL, 89 .index = 5, 90 .size = 2, 91 .flags = UVC_CTRL_FLAG_SET_CUR 92 | UVC_CTRL_FLAG_GET_RANGE 93 | UVC_CTRL_FLAG_RESTORE, 94 }, 95 { 96 .entity = UVC_GUID_UVC_PROCESSING, 97 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_CONTROL, 98 .index = 6, 99 .size = 2, 100 .flags = UVC_CTRL_FLAG_SET_CUR 101 | UVC_CTRL_FLAG_GET_RANGE 102 | UVC_CTRL_FLAG_RESTORE 103 | UVC_CTRL_FLAG_AUTO_UPDATE, 104 }, 105 { 106 .entity = UVC_GUID_UVC_PROCESSING, 107 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL, 108 .index = 7, 109 .size = 4, 110 .flags = UVC_CTRL_FLAG_SET_CUR 111 | UVC_CTRL_FLAG_GET_RANGE 112 | UVC_CTRL_FLAG_RESTORE 113 | UVC_CTRL_FLAG_AUTO_UPDATE, 114 }, 115 { 116 .entity = UVC_GUID_UVC_PROCESSING, 117 .selector = UVC_PU_BACKLIGHT_COMPENSATION_CONTROL, 118 .index = 8, 119 .size = 2, 120 .flags = UVC_CTRL_FLAG_SET_CUR 121 | UVC_CTRL_FLAG_GET_RANGE 122 | UVC_CTRL_FLAG_RESTORE, 123 }, 124 { 125 .entity = UVC_GUID_UVC_PROCESSING, 126 .selector = UVC_PU_GAIN_CONTROL, 127 .index = 9, 128 .size = 2, 129 .flags = UVC_CTRL_FLAG_SET_CUR 130 | UVC_CTRL_FLAG_GET_RANGE 131 | UVC_CTRL_FLAG_RESTORE, 132 }, 133 { 134 .entity = UVC_GUID_UVC_PROCESSING, 135 .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, 136 .index = 10, 137 .size = 1, 138 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_CUR 139 | UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_RESTORE, 140 }, 141 { 142 .entity = UVC_GUID_UVC_PROCESSING, 143 .selector = UVC_PU_HUE_AUTO_CONTROL, 144 .index = 11, 145 .size = 1, 146 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_CUR 147 | UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_RESTORE, 148 }, 149 { 150 .entity = UVC_GUID_UVC_PROCESSING, 151 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_AUTO_CONTROL, 152 .index = 12, 153 .size = 1, 154 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_CUR 155 | UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_RESTORE, 156 }, 157 { 158 .entity = UVC_GUID_UVC_PROCESSING, 159 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_AUTO_CONTROL, 160 .index = 13, 161 .size = 1, 162 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_CUR 163 | UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_RESTORE, 164 }, 165 { 166 .entity = UVC_GUID_UVC_PROCESSING, 167 .selector = UVC_PU_DIGITAL_MULTIPLIER_CONTROL, 168 .index = 14, 169 .size = 2, 170 .flags = UVC_CTRL_FLAG_SET_CUR 171 | UVC_CTRL_FLAG_GET_RANGE 172 | UVC_CTRL_FLAG_RESTORE, 173 }, 174 { 175 .entity = UVC_GUID_UVC_PROCESSING, 176 .selector = UVC_PU_DIGITAL_MULTIPLIER_LIMIT_CONTROL, 177 .index = 15, 178 .size = 2, 179 .flags = UVC_CTRL_FLAG_SET_CUR 180 | UVC_CTRL_FLAG_GET_RANGE 181 | UVC_CTRL_FLAG_RESTORE, 182 }, 183 { 184 .entity = UVC_GUID_UVC_PROCESSING, 185 .selector = UVC_PU_ANALOG_VIDEO_STANDARD_CONTROL, 186 .index = 16, 187 .size = 1, 188 .flags = UVC_CTRL_FLAG_GET_CUR, 189 }, 190 { 191 .entity = UVC_GUID_UVC_PROCESSING, 192 .selector = UVC_PU_ANALOG_LOCK_STATUS_CONTROL, 193 .index = 17, 194 .size = 1, 195 .flags = UVC_CTRL_FLAG_GET_CUR, 196 }, 197 { 198 .entity = UVC_GUID_UVC_CAMERA, 199 .selector = UVC_CT_SCANNING_MODE_CONTROL, 200 .index = 0, 201 .size = 1, 202 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_CUR 203 | UVC_CTRL_FLAG_RESTORE, 204 }, 205 { 206 .entity = UVC_GUID_UVC_CAMERA, 207 .selector = UVC_CT_AE_MODE_CONTROL, 208 .index = 1, 209 .size = 1, 210 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_CUR 211 | UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_GET_RES 212 | UVC_CTRL_FLAG_RESTORE, 213 }, 214 { 215 .entity = UVC_GUID_UVC_CAMERA, 216 .selector = UVC_CT_AE_PRIORITY_CONTROL, 217 .index = 2, 218 .size = 1, 219 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_CUR 220 | UVC_CTRL_FLAG_RESTORE, 221 }, 222 { 223 .entity = UVC_GUID_UVC_CAMERA, 224 .selector = UVC_CT_EXPOSURE_TIME_ABSOLUTE_CONTROL, 225 .index = 3, 226 .size = 4, 227 .flags = UVC_CTRL_FLAG_SET_CUR 228 | UVC_CTRL_FLAG_GET_RANGE 229 | UVC_CTRL_FLAG_RESTORE 230 | UVC_CTRL_FLAG_AUTO_UPDATE, 231 }, 232 { 233 .entity = UVC_GUID_UVC_CAMERA, 234 .selector = UVC_CT_EXPOSURE_TIME_RELATIVE_CONTROL, 235 .index = 4, 236 .size = 1, 237 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_RESTORE, 238 }, 239 { 240 .entity = UVC_GUID_UVC_CAMERA, 241 .selector = UVC_CT_FOCUS_ABSOLUTE_CONTROL, 242 .index = 5, 243 .size = 2, 244 .flags = UVC_CTRL_FLAG_SET_CUR 245 | UVC_CTRL_FLAG_GET_RANGE 246 | UVC_CTRL_FLAG_RESTORE 247 | UVC_CTRL_FLAG_AUTO_UPDATE, 248 }, 249 { 250 .entity = UVC_GUID_UVC_CAMERA, 251 .selector = UVC_CT_FOCUS_RELATIVE_CONTROL, 252 .index = 6, 253 .size = 2, 254 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_MIN 255 | UVC_CTRL_FLAG_GET_MAX | UVC_CTRL_FLAG_GET_RES 256 | UVC_CTRL_FLAG_GET_DEF 257 | UVC_CTRL_FLAG_AUTO_UPDATE, 258 }, 259 { 260 .entity = UVC_GUID_UVC_CAMERA, 261 .selector = UVC_CT_IRIS_ABSOLUTE_CONTROL, 262 .index = 7, 263 .size = 2, 264 .flags = UVC_CTRL_FLAG_SET_CUR 265 | UVC_CTRL_FLAG_GET_RANGE 266 | UVC_CTRL_FLAG_RESTORE 267 | UVC_CTRL_FLAG_AUTO_UPDATE, 268 }, 269 { 270 .entity = UVC_GUID_UVC_CAMERA, 271 .selector = UVC_CT_IRIS_RELATIVE_CONTROL, 272 .index = 8, 273 .size = 1, 274 .flags = UVC_CTRL_FLAG_SET_CUR 275 | UVC_CTRL_FLAG_AUTO_UPDATE, 276 }, 277 { 278 .entity = UVC_GUID_UVC_CAMERA, 279 .selector = UVC_CT_ZOOM_ABSOLUTE_CONTROL, 280 .index = 9, 281 .size = 2, 282 .flags = UVC_CTRL_FLAG_SET_CUR 283 | UVC_CTRL_FLAG_GET_RANGE 284 | UVC_CTRL_FLAG_RESTORE 285 | UVC_CTRL_FLAG_AUTO_UPDATE, 286 }, 287 { 288 .entity = UVC_GUID_UVC_CAMERA, 289 .selector = UVC_CT_ZOOM_RELATIVE_CONTROL, 290 .index = 10, 291 .size = 3, 292 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_MIN 293 | UVC_CTRL_FLAG_GET_MAX | UVC_CTRL_FLAG_GET_RES 294 | UVC_CTRL_FLAG_GET_DEF 295 | UVC_CTRL_FLAG_AUTO_UPDATE, 296 }, 297 { 298 .entity = UVC_GUID_UVC_CAMERA, 299 .selector = UVC_CT_PANTILT_ABSOLUTE_CONTROL, 300 .index = 11, 301 .size = 8, 302 .flags = UVC_CTRL_FLAG_SET_CUR 303 | UVC_CTRL_FLAG_GET_RANGE 304 | UVC_CTRL_FLAG_RESTORE 305 | UVC_CTRL_FLAG_AUTO_UPDATE, 306 }, 307 { 308 .entity = UVC_GUID_UVC_CAMERA, 309 .selector = UVC_CT_PANTILT_RELATIVE_CONTROL, 310 .index = 12, 311 .size = 4, 312 .flags = UVC_CTRL_FLAG_SET_CUR 313 | UVC_CTRL_FLAG_GET_RANGE 314 | UVC_CTRL_FLAG_AUTO_UPDATE, 315 }, 316 { 317 .entity = UVC_GUID_UVC_CAMERA, 318 .selector = UVC_CT_ROLL_ABSOLUTE_CONTROL, 319 .index = 13, 320 .size = 2, 321 .flags = UVC_CTRL_FLAG_SET_CUR 322 | UVC_CTRL_FLAG_GET_RANGE 323 | UVC_CTRL_FLAG_RESTORE 324 | UVC_CTRL_FLAG_AUTO_UPDATE, 325 }, 326 { 327 .entity = UVC_GUID_UVC_CAMERA, 328 .selector = UVC_CT_ROLL_RELATIVE_CONTROL, 329 .index = 14, 330 .size = 2, 331 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_MIN 332 | UVC_CTRL_FLAG_GET_MAX | UVC_CTRL_FLAG_GET_RES 333 | UVC_CTRL_FLAG_GET_DEF 334 | UVC_CTRL_FLAG_AUTO_UPDATE, 335 }, 336 { 337 .entity = UVC_GUID_UVC_CAMERA, 338 .selector = UVC_CT_FOCUS_AUTO_CONTROL, 339 .index = 17, 340 .size = 1, 341 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_CUR 342 | UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_RESTORE, 343 }, 344 { 345 .entity = UVC_GUID_UVC_CAMERA, 346 .selector = UVC_CT_PRIVACY_CONTROL, 347 .index = 18, 348 .size = 1, 349 .flags = UVC_CTRL_FLAG_SET_CUR | UVC_CTRL_FLAG_GET_CUR 350 | UVC_CTRL_FLAG_RESTORE 351 | UVC_CTRL_FLAG_AUTO_UPDATE, 352 }, 353 { 354 .entity = UVC_GUID_EXT_GPIO_CONTROLLER, 355 .selector = UVC_CT_PRIVACY_CONTROL, 356 .index = 0, 357 .size = 1, 358 .flags = UVC_CTRL_FLAG_GET_CUR 359 | UVC_CTRL_FLAG_AUTO_UPDATE, 360 }, 361 }; 362 363 static const u32 uvc_control_classes[] = { 364 V4L2_CID_CAMERA_CLASS, 365 V4L2_CID_USER_CLASS, 366 }; 367 368 static const int exposure_auto_mapping[] = { 2, 1, 4, 8 }; 369 370 /* 371 * This function translates the V4L2 menu index @idx, as exposed to userspace as 372 * the V4L2 control value, to the corresponding UVC control value used by the 373 * device. The custom menu_mapping in the control @mapping is used when 374 * available, otherwise the function assumes that the V4L2 and UVC values are 375 * identical. 376 * 377 * For controls of type UVC_CTRL_DATA_TYPE_BITMASK, the UVC control value is 378 * expressed as a bitmask and is thus guaranteed to have a single bit set. 379 * 380 * The function returns -EINVAL if the V4L2 menu index @idx isn't valid for the 381 * control, which includes all controls whose type isn't UVC_CTRL_DATA_TYPE_ENUM 382 * or UVC_CTRL_DATA_TYPE_BITMASK. 383 */ 384 static int uvc_mapping_get_menu_value(const struct uvc_control_mapping *mapping, 385 u32 idx) 386 { 387 if (!test_bit(idx, &mapping->menu_mask)) 388 return -EINVAL; 389 390 if (mapping->menu_mapping) 391 return mapping->menu_mapping[idx]; 392 393 return idx; 394 } 395 396 static const char * 397 uvc_mapping_get_menu_name(const struct uvc_control_mapping *mapping, u32 idx) 398 { 399 if (!test_bit(idx, &mapping->menu_mask)) 400 return NULL; 401 402 if (mapping->menu_names) 403 return mapping->menu_names[idx]; 404 405 return v4l2_ctrl_get_menu(mapping->id)[idx]; 406 } 407 408 static s32 uvc_ctrl_get_zoom(struct uvc_control_mapping *mapping, 409 u8 query, const u8 *data) 410 { 411 s8 zoom = (s8)data[0]; 412 413 switch (query) { 414 case UVC_GET_CUR: 415 return (zoom == 0) ? 0 : (zoom > 0 ? data[2] : -data[2]); 416 417 case UVC_GET_MIN: 418 case UVC_GET_MAX: 419 case UVC_GET_RES: 420 case UVC_GET_DEF: 421 default: 422 return data[2]; 423 } 424 } 425 426 static void uvc_ctrl_set_zoom(struct uvc_control_mapping *mapping, 427 s32 value, u8 *data) 428 { 429 data[0] = value == 0 ? 0 : (value > 0) ? 1 : 0xff; 430 data[2] = min((int)abs(value), 0xff); 431 } 432 433 static s32 uvc_ctrl_get_rel_speed(struct uvc_control_mapping *mapping, 434 u8 query, const u8 *data) 435 { 436 unsigned int first = mapping->offset / 8; 437 s8 rel = (s8)data[first]; 438 439 switch (query) { 440 case UVC_GET_CUR: 441 return (rel == 0) ? 0 : (rel > 0 ? data[first+1] 442 : -data[first+1]); 443 case UVC_GET_MIN: 444 return -data[first+1]; 445 case UVC_GET_MAX: 446 case UVC_GET_RES: 447 case UVC_GET_DEF: 448 default: 449 return data[first+1]; 450 } 451 } 452 453 static void uvc_ctrl_set_rel_speed(struct uvc_control_mapping *mapping, 454 s32 value, u8 *data) 455 { 456 unsigned int first = mapping->offset / 8; 457 458 data[first] = value == 0 ? 0 : (value > 0) ? 1 : 0xff; 459 data[first+1] = min_t(int, abs(value), 0xff); 460 } 461 462 static const struct uvc_control_mapping uvc_ctrl_mappings[] = { 463 { 464 .id = V4L2_CID_BRIGHTNESS, 465 .entity = UVC_GUID_UVC_PROCESSING, 466 .selector = UVC_PU_BRIGHTNESS_CONTROL, 467 .size = 16, 468 .offset = 0, 469 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 470 .data_type = UVC_CTRL_DATA_TYPE_SIGNED, 471 }, 472 { 473 .id = V4L2_CID_CONTRAST, 474 .entity = UVC_GUID_UVC_PROCESSING, 475 .selector = UVC_PU_CONTRAST_CONTROL, 476 .size = 16, 477 .offset = 0, 478 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 479 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 480 }, 481 { 482 .id = V4L2_CID_HUE, 483 .entity = UVC_GUID_UVC_PROCESSING, 484 .selector = UVC_PU_HUE_CONTROL, 485 .size = 16, 486 .offset = 0, 487 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 488 .data_type = UVC_CTRL_DATA_TYPE_SIGNED, 489 .master_id = V4L2_CID_HUE_AUTO, 490 .master_manual = 0, 491 }, 492 { 493 .id = V4L2_CID_SATURATION, 494 .entity = UVC_GUID_UVC_PROCESSING, 495 .selector = UVC_PU_SATURATION_CONTROL, 496 .size = 16, 497 .offset = 0, 498 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 499 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 500 }, 501 { 502 .id = V4L2_CID_SHARPNESS, 503 .entity = UVC_GUID_UVC_PROCESSING, 504 .selector = UVC_PU_SHARPNESS_CONTROL, 505 .size = 16, 506 .offset = 0, 507 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 508 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 509 }, 510 { 511 .id = V4L2_CID_GAMMA, 512 .entity = UVC_GUID_UVC_PROCESSING, 513 .selector = UVC_PU_GAMMA_CONTROL, 514 .size = 16, 515 .offset = 0, 516 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 517 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 518 }, 519 { 520 .id = V4L2_CID_BACKLIGHT_COMPENSATION, 521 .entity = UVC_GUID_UVC_PROCESSING, 522 .selector = UVC_PU_BACKLIGHT_COMPENSATION_CONTROL, 523 .size = 16, 524 .offset = 0, 525 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 526 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 527 }, 528 { 529 .id = V4L2_CID_GAIN, 530 .entity = UVC_GUID_UVC_PROCESSING, 531 .selector = UVC_PU_GAIN_CONTROL, 532 .size = 16, 533 .offset = 0, 534 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 535 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 536 }, 537 { 538 .id = V4L2_CID_HUE_AUTO, 539 .entity = UVC_GUID_UVC_PROCESSING, 540 .selector = UVC_PU_HUE_AUTO_CONTROL, 541 .size = 1, 542 .offset = 0, 543 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN, 544 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN, 545 .slave_ids = { V4L2_CID_HUE, }, 546 }, 547 { 548 .id = V4L2_CID_EXPOSURE_AUTO, 549 .entity = UVC_GUID_UVC_CAMERA, 550 .selector = UVC_CT_AE_MODE_CONTROL, 551 .size = 4, 552 .offset = 0, 553 .v4l2_type = V4L2_CTRL_TYPE_MENU, 554 .data_type = UVC_CTRL_DATA_TYPE_BITMASK, 555 .menu_mapping = exposure_auto_mapping, 556 .menu_mask = GENMASK(V4L2_EXPOSURE_APERTURE_PRIORITY, 557 V4L2_EXPOSURE_AUTO), 558 .slave_ids = { V4L2_CID_EXPOSURE_ABSOLUTE, }, 559 }, 560 { 561 .id = V4L2_CID_EXPOSURE_AUTO_PRIORITY, 562 .entity = UVC_GUID_UVC_CAMERA, 563 .selector = UVC_CT_AE_PRIORITY_CONTROL, 564 .size = 1, 565 .offset = 0, 566 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN, 567 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN, 568 }, 569 { 570 .id = V4L2_CID_EXPOSURE_ABSOLUTE, 571 .entity = UVC_GUID_UVC_CAMERA, 572 .selector = UVC_CT_EXPOSURE_TIME_ABSOLUTE_CONTROL, 573 .size = 32, 574 .offset = 0, 575 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 576 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 577 .master_id = V4L2_CID_EXPOSURE_AUTO, 578 .master_manual = V4L2_EXPOSURE_MANUAL, 579 }, 580 { 581 .id = V4L2_CID_AUTO_WHITE_BALANCE, 582 .entity = UVC_GUID_UVC_PROCESSING, 583 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_AUTO_CONTROL, 584 .size = 1, 585 .offset = 0, 586 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN, 587 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN, 588 .slave_ids = { V4L2_CID_WHITE_BALANCE_TEMPERATURE, }, 589 }, 590 { 591 .id = V4L2_CID_WHITE_BALANCE_TEMPERATURE, 592 .entity = UVC_GUID_UVC_PROCESSING, 593 .selector = UVC_PU_WHITE_BALANCE_TEMPERATURE_CONTROL, 594 .size = 16, 595 .offset = 0, 596 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 597 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 598 .master_id = V4L2_CID_AUTO_WHITE_BALANCE, 599 .master_manual = 0, 600 }, 601 { 602 .id = V4L2_CID_AUTO_WHITE_BALANCE, 603 .entity = UVC_GUID_UVC_PROCESSING, 604 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_AUTO_CONTROL, 605 .size = 1, 606 .offset = 0, 607 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN, 608 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN, 609 .slave_ids = { V4L2_CID_BLUE_BALANCE, 610 V4L2_CID_RED_BALANCE }, 611 }, 612 { 613 .id = V4L2_CID_BLUE_BALANCE, 614 .entity = UVC_GUID_UVC_PROCESSING, 615 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL, 616 .size = 16, 617 .offset = 0, 618 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 619 .data_type = UVC_CTRL_DATA_TYPE_SIGNED, 620 .master_id = V4L2_CID_AUTO_WHITE_BALANCE, 621 .master_manual = 0, 622 }, 623 { 624 .id = V4L2_CID_RED_BALANCE, 625 .entity = UVC_GUID_UVC_PROCESSING, 626 .selector = UVC_PU_WHITE_BALANCE_COMPONENT_CONTROL, 627 .size = 16, 628 .offset = 16, 629 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 630 .data_type = UVC_CTRL_DATA_TYPE_SIGNED, 631 .master_id = V4L2_CID_AUTO_WHITE_BALANCE, 632 .master_manual = 0, 633 }, 634 { 635 .id = V4L2_CID_FOCUS_ABSOLUTE, 636 .entity = UVC_GUID_UVC_CAMERA, 637 .selector = UVC_CT_FOCUS_ABSOLUTE_CONTROL, 638 .size = 16, 639 .offset = 0, 640 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 641 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 642 .master_id = V4L2_CID_FOCUS_AUTO, 643 .master_manual = 0, 644 }, 645 { 646 .id = V4L2_CID_FOCUS_AUTO, 647 .entity = UVC_GUID_UVC_CAMERA, 648 .selector = UVC_CT_FOCUS_AUTO_CONTROL, 649 .size = 1, 650 .offset = 0, 651 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN, 652 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN, 653 .slave_ids = { V4L2_CID_FOCUS_ABSOLUTE, }, 654 }, 655 { 656 .id = V4L2_CID_IRIS_ABSOLUTE, 657 .entity = UVC_GUID_UVC_CAMERA, 658 .selector = UVC_CT_IRIS_ABSOLUTE_CONTROL, 659 .size = 16, 660 .offset = 0, 661 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 662 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 663 }, 664 { 665 .id = V4L2_CID_IRIS_RELATIVE, 666 .entity = UVC_GUID_UVC_CAMERA, 667 .selector = UVC_CT_IRIS_RELATIVE_CONTROL, 668 .size = 8, 669 .offset = 0, 670 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 671 .data_type = UVC_CTRL_DATA_TYPE_SIGNED, 672 }, 673 { 674 .id = V4L2_CID_ZOOM_ABSOLUTE, 675 .entity = UVC_GUID_UVC_CAMERA, 676 .selector = UVC_CT_ZOOM_ABSOLUTE_CONTROL, 677 .size = 16, 678 .offset = 0, 679 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 680 .data_type = UVC_CTRL_DATA_TYPE_UNSIGNED, 681 }, 682 { 683 .id = V4L2_CID_ZOOM_CONTINUOUS, 684 .entity = UVC_GUID_UVC_CAMERA, 685 .selector = UVC_CT_ZOOM_RELATIVE_CONTROL, 686 .size = 0, 687 .offset = 0, 688 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 689 .data_type = UVC_CTRL_DATA_TYPE_SIGNED, 690 .get = uvc_ctrl_get_zoom, 691 .set = uvc_ctrl_set_zoom, 692 }, 693 { 694 .id = V4L2_CID_PAN_ABSOLUTE, 695 .entity = UVC_GUID_UVC_CAMERA, 696 .selector = UVC_CT_PANTILT_ABSOLUTE_CONTROL, 697 .size = 32, 698 .offset = 0, 699 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 700 .data_type = UVC_CTRL_DATA_TYPE_SIGNED, 701 }, 702 { 703 .id = V4L2_CID_TILT_ABSOLUTE, 704 .entity = UVC_GUID_UVC_CAMERA, 705 .selector = UVC_CT_PANTILT_ABSOLUTE_CONTROL, 706 .size = 32, 707 .offset = 32, 708 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 709 .data_type = UVC_CTRL_DATA_TYPE_SIGNED, 710 }, 711 { 712 .id = V4L2_CID_PAN_SPEED, 713 .entity = UVC_GUID_UVC_CAMERA, 714 .selector = UVC_CT_PANTILT_RELATIVE_CONTROL, 715 .size = 16, 716 .offset = 0, 717 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 718 .data_type = UVC_CTRL_DATA_TYPE_SIGNED, 719 .get = uvc_ctrl_get_rel_speed, 720 .set = uvc_ctrl_set_rel_speed, 721 }, 722 { 723 .id = V4L2_CID_TILT_SPEED, 724 .entity = UVC_GUID_UVC_CAMERA, 725 .selector = UVC_CT_PANTILT_RELATIVE_CONTROL, 726 .size = 16, 727 .offset = 16, 728 .v4l2_type = V4L2_CTRL_TYPE_INTEGER, 729 .data_type = UVC_CTRL_DATA_TYPE_SIGNED, 730 .get = uvc_ctrl_get_rel_speed, 731 .set = uvc_ctrl_set_rel_speed, 732 }, 733 { 734 .id = V4L2_CID_PRIVACY, 735 .entity = UVC_GUID_UVC_CAMERA, 736 .selector = UVC_CT_PRIVACY_CONTROL, 737 .size = 1, 738 .offset = 0, 739 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN, 740 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN, 741 }, 742 { 743 .id = V4L2_CID_PRIVACY, 744 .entity = UVC_GUID_EXT_GPIO_CONTROLLER, 745 .selector = UVC_CT_PRIVACY_CONTROL, 746 .size = 1, 747 .offset = 0, 748 .v4l2_type = V4L2_CTRL_TYPE_BOOLEAN, 749 .data_type = UVC_CTRL_DATA_TYPE_BOOLEAN, 750 }, 751 }; 752 753 const struct uvc_control_mapping uvc_ctrl_power_line_mapping_limited = { 754 .id = V4L2_CID_POWER_LINE_FREQUENCY, 755 .entity = UVC_GUID_UVC_PROCESSING, 756 .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, 757 .size = 2, 758 .offset = 0, 759 .v4l2_type = V4L2_CTRL_TYPE_MENU, 760 .data_type = UVC_CTRL_DATA_TYPE_ENUM, 761 .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_60HZ, 762 V4L2_CID_POWER_LINE_FREQUENCY_50HZ), 763 }; 764 765 const struct uvc_control_mapping uvc_ctrl_power_line_mapping_uvc11 = { 766 .id = V4L2_CID_POWER_LINE_FREQUENCY, 767 .entity = UVC_GUID_UVC_PROCESSING, 768 .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, 769 .size = 2, 770 .offset = 0, 771 .v4l2_type = V4L2_CTRL_TYPE_MENU, 772 .data_type = UVC_CTRL_DATA_TYPE_ENUM, 773 .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_60HZ, 774 V4L2_CID_POWER_LINE_FREQUENCY_DISABLED), 775 }; 776 777 static const struct uvc_control_mapping *uvc_ctrl_mappings_uvc11[] = { 778 &uvc_ctrl_power_line_mapping_uvc11, 779 NULL, /* Sentinel */ 780 }; 781 782 static const struct uvc_control_mapping uvc_ctrl_power_line_mapping_uvc15 = { 783 .id = V4L2_CID_POWER_LINE_FREQUENCY, 784 .entity = UVC_GUID_UVC_PROCESSING, 785 .selector = UVC_PU_POWER_LINE_FREQUENCY_CONTROL, 786 .size = 2, 787 .offset = 0, 788 .v4l2_type = V4L2_CTRL_TYPE_MENU, 789 .data_type = UVC_CTRL_DATA_TYPE_ENUM, 790 .menu_mask = GENMASK(V4L2_CID_POWER_LINE_FREQUENCY_AUTO, 791 V4L2_CID_POWER_LINE_FREQUENCY_DISABLED), 792 }; 793 794 static const struct uvc_control_mapping *uvc_ctrl_mappings_uvc15[] = { 795 &uvc_ctrl_power_line_mapping_uvc15, 796 NULL, /* Sentinel */ 797 }; 798 799 /* ------------------------------------------------------------------------ 800 * Utility functions 801 */ 802 803 static inline u8 *uvc_ctrl_data(struct uvc_control *ctrl, int id) 804 { 805 return ctrl->uvc_data + id * ctrl->info.size; 806 } 807 808 static inline int uvc_test_bit(const u8 *data, int bit) 809 { 810 return (data[bit >> 3] >> (bit & 7)) & 1; 811 } 812 813 static inline void uvc_clear_bit(u8 *data, int bit) 814 { 815 data[bit >> 3] &= ~(1 << (bit & 7)); 816 } 817 818 /* 819 * Extract the bit string specified by mapping->offset and mapping->size 820 * from the little-endian data stored at 'data' and return the result as 821 * a signed 32bit integer. Sign extension will be performed if the mapping 822 * references a signed data type. 823 */ 824 static s32 uvc_get_le_value(struct uvc_control_mapping *mapping, 825 u8 query, const u8 *data) 826 { 827 int bits = mapping->size; 828 int offset = mapping->offset; 829 s32 value = 0; 830 u8 mask; 831 832 data += offset / 8; 833 offset &= 7; 834 mask = ((1LL << bits) - 1) << offset; 835 836 while (1) { 837 u8 byte = *data & mask; 838 value |= offset > 0 ? (byte >> offset) : (byte << (-offset)); 839 bits -= 8 - (offset > 0 ? offset : 0); 840 if (bits <= 0) 841 break; 842 843 offset -= 8; 844 mask = (1 << bits) - 1; 845 data++; 846 } 847 848 /* Sign-extend the value if needed. */ 849 if (mapping->data_type == UVC_CTRL_DATA_TYPE_SIGNED) 850 value |= -(value & (1 << (mapping->size - 1))); 851 852 return value; 853 } 854 855 /* 856 * Set the bit string specified by mapping->offset and mapping->size 857 * in the little-endian data stored at 'data' to the value 'value'. 858 */ 859 static void uvc_set_le_value(struct uvc_control_mapping *mapping, 860 s32 value, u8 *data) 861 { 862 int bits = mapping->size; 863 int offset = mapping->offset; 864 u8 mask; 865 866 /* 867 * According to the v4l2 spec, writing any value to a button control 868 * should result in the action belonging to the button control being 869 * triggered. UVC devices however want to see a 1 written -> override 870 * value. 871 */ 872 if (mapping->v4l2_type == V4L2_CTRL_TYPE_BUTTON) 873 value = -1; 874 875 data += offset / 8; 876 offset &= 7; 877 878 for (; bits > 0; data++) { 879 mask = ((1LL << bits) - 1) << offset; 880 *data = (*data & ~mask) | ((value << offset) & mask); 881 value >>= offset ? offset : 8; 882 bits -= 8 - offset; 883 offset = 0; 884 } 885 } 886 887 /* ------------------------------------------------------------------------ 888 * Terminal and unit management 889 */ 890 891 static int uvc_entity_match_guid(const struct uvc_entity *entity, 892 const u8 guid[16]) 893 { 894 return memcmp(entity->guid, guid, sizeof(entity->guid)) == 0; 895 } 896 897 /* ------------------------------------------------------------------------ 898 * UVC Controls 899 */ 900 901 static void __uvc_find_control(struct uvc_entity *entity, u32 v4l2_id, 902 struct uvc_control_mapping **mapping, struct uvc_control **control, 903 int next) 904 { 905 struct uvc_control *ctrl; 906 struct uvc_control_mapping *map; 907 unsigned int i; 908 909 if (entity == NULL) 910 return; 911 912 for (i = 0; i < entity->ncontrols; ++i) { 913 ctrl = &entity->controls[i]; 914 if (!ctrl->initialized) 915 continue; 916 917 list_for_each_entry(map, &ctrl->info.mappings, list) { 918 if ((map->id == v4l2_id) && !next) { 919 *control = ctrl; 920 *mapping = map; 921 return; 922 } 923 924 if ((*mapping == NULL || (*mapping)->id > map->id) && 925 (map->id > v4l2_id) && next) { 926 *control = ctrl; 927 *mapping = map; 928 } 929 } 930 } 931 } 932 933 static struct uvc_control *uvc_find_control(struct uvc_video_chain *chain, 934 u32 v4l2_id, struct uvc_control_mapping **mapping) 935 { 936 struct uvc_control *ctrl = NULL; 937 struct uvc_entity *entity; 938 int next = v4l2_id & V4L2_CTRL_FLAG_NEXT_CTRL; 939 940 *mapping = NULL; 941 942 /* Mask the query flags. */ 943 v4l2_id &= V4L2_CTRL_ID_MASK; 944 945 /* Find the control. */ 946 list_for_each_entry(entity, &chain->entities, chain) { 947 __uvc_find_control(entity, v4l2_id, mapping, &ctrl, next); 948 if (ctrl && !next) 949 return ctrl; 950 } 951 952 if (ctrl == NULL && !next) 953 uvc_dbg(chain->dev, CONTROL, "Control 0x%08x not found\n", 954 v4l2_id); 955 956 return ctrl; 957 } 958 959 static int uvc_ctrl_populate_cache(struct uvc_video_chain *chain, 960 struct uvc_control *ctrl) 961 { 962 int ret; 963 964 if (ctrl->info.flags & UVC_CTRL_FLAG_GET_DEF) { 965 ret = uvc_query_ctrl(chain->dev, UVC_GET_DEF, ctrl->entity->id, 966 chain->dev->intfnum, ctrl->info.selector, 967 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_DEF), 968 ctrl->info.size); 969 if (ret < 0) 970 return ret; 971 } 972 973 if (ctrl->info.flags & UVC_CTRL_FLAG_GET_MIN) { 974 ret = uvc_query_ctrl(chain->dev, UVC_GET_MIN, ctrl->entity->id, 975 chain->dev->intfnum, ctrl->info.selector, 976 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MIN), 977 ctrl->info.size); 978 if (ret < 0) 979 return ret; 980 } 981 if (ctrl->info.flags & UVC_CTRL_FLAG_GET_MAX) { 982 ret = uvc_query_ctrl(chain->dev, UVC_GET_MAX, ctrl->entity->id, 983 chain->dev->intfnum, ctrl->info.selector, 984 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MAX), 985 ctrl->info.size); 986 if (ret < 0) 987 return ret; 988 } 989 if (ctrl->info.flags & UVC_CTRL_FLAG_GET_RES) { 990 ret = uvc_query_ctrl(chain->dev, UVC_GET_RES, ctrl->entity->id, 991 chain->dev->intfnum, ctrl->info.selector, 992 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_RES), 993 ctrl->info.size); 994 if (ret < 0) { 995 if (UVC_ENTITY_TYPE(ctrl->entity) != 996 UVC_VC_EXTENSION_UNIT) 997 return ret; 998 999 /* 1000 * GET_RES is mandatory for XU controls, but some 1001 * cameras still choke on it. Ignore errors and set the 1002 * resolution value to zero. 1003 */ 1004 uvc_warn_once(chain->dev, UVC_WARN_XU_GET_RES, 1005 "UVC non compliance - GET_RES failed on " 1006 "an XU control. Enabling workaround.\n"); 1007 memset(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_RES), 0, 1008 ctrl->info.size); 1009 } 1010 } 1011 1012 ctrl->cached = 1; 1013 return 0; 1014 } 1015 1016 static s32 __uvc_ctrl_get_value(struct uvc_control_mapping *mapping, 1017 const u8 *data) 1018 { 1019 s32 value = mapping->get(mapping, UVC_GET_CUR, data); 1020 1021 if (mapping->v4l2_type == V4L2_CTRL_TYPE_MENU) { 1022 unsigned int i; 1023 1024 for (i = 0; BIT(i) <= mapping->menu_mask; ++i) { 1025 u32 menu_value; 1026 1027 if (!test_bit(i, &mapping->menu_mask)) 1028 continue; 1029 1030 menu_value = uvc_mapping_get_menu_value(mapping, i); 1031 1032 if (menu_value == value) { 1033 value = i; 1034 break; 1035 } 1036 } 1037 } 1038 1039 return value; 1040 } 1041 1042 static int __uvc_ctrl_load_cur(struct uvc_video_chain *chain, 1043 struct uvc_control *ctrl) 1044 { 1045 u8 *data; 1046 int ret; 1047 1048 if (ctrl->loaded) 1049 return 0; 1050 1051 data = uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT); 1052 1053 if ((ctrl->info.flags & UVC_CTRL_FLAG_GET_CUR) == 0) { 1054 memset(data, 0, ctrl->info.size); 1055 ctrl->loaded = 1; 1056 1057 return 0; 1058 } 1059 1060 if (ctrl->entity->get_cur) 1061 ret = ctrl->entity->get_cur(chain->dev, ctrl->entity, 1062 ctrl->info.selector, data, 1063 ctrl->info.size); 1064 else 1065 ret = uvc_query_ctrl(chain->dev, UVC_GET_CUR, 1066 ctrl->entity->id, chain->dev->intfnum, 1067 ctrl->info.selector, data, 1068 ctrl->info.size); 1069 1070 if (ret < 0) 1071 return ret; 1072 1073 ctrl->loaded = 1; 1074 1075 return ret; 1076 } 1077 1078 static int __uvc_ctrl_get(struct uvc_video_chain *chain, 1079 struct uvc_control *ctrl, 1080 struct uvc_control_mapping *mapping, 1081 s32 *value) 1082 { 1083 int ret; 1084 1085 if ((ctrl->info.flags & UVC_CTRL_FLAG_GET_CUR) == 0) 1086 return -EACCES; 1087 1088 ret = __uvc_ctrl_load_cur(chain, ctrl); 1089 if (ret < 0) 1090 return ret; 1091 1092 *value = __uvc_ctrl_get_value(mapping, 1093 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT)); 1094 1095 return 0; 1096 } 1097 1098 static int __uvc_query_v4l2_class(struct uvc_video_chain *chain, u32 req_id, 1099 u32 found_id) 1100 { 1101 bool find_next = req_id & V4L2_CTRL_FLAG_NEXT_CTRL; 1102 unsigned int i; 1103 1104 req_id &= V4L2_CTRL_ID_MASK; 1105 1106 for (i = 0; i < ARRAY_SIZE(uvc_control_classes); i++) { 1107 if (!(chain->ctrl_class_bitmap & BIT(i))) 1108 continue; 1109 if (!find_next) { 1110 if (uvc_control_classes[i] == req_id) 1111 return i; 1112 continue; 1113 } 1114 if (uvc_control_classes[i] > req_id && 1115 uvc_control_classes[i] < found_id) 1116 return i; 1117 } 1118 1119 return -ENODEV; 1120 } 1121 1122 static int uvc_query_v4l2_class(struct uvc_video_chain *chain, u32 req_id, 1123 u32 found_id, struct v4l2_queryctrl *v4l2_ctrl) 1124 { 1125 int idx; 1126 1127 idx = __uvc_query_v4l2_class(chain, req_id, found_id); 1128 if (idx < 0) 1129 return -ENODEV; 1130 1131 memset(v4l2_ctrl, 0, sizeof(*v4l2_ctrl)); 1132 v4l2_ctrl->id = uvc_control_classes[idx]; 1133 strscpy(v4l2_ctrl->name, v4l2_ctrl_get_name(v4l2_ctrl->id), 1134 sizeof(v4l2_ctrl->name)); 1135 v4l2_ctrl->type = V4L2_CTRL_TYPE_CTRL_CLASS; 1136 v4l2_ctrl->flags = V4L2_CTRL_FLAG_WRITE_ONLY 1137 | V4L2_CTRL_FLAG_READ_ONLY; 1138 return 0; 1139 } 1140 1141 /* 1142 * Check if control @v4l2_id can be accessed by the given control @ioctl 1143 * (VIDIOC_G_EXT_CTRLS, VIDIOC_TRY_EXT_CTRLS or VIDIOC_S_EXT_CTRLS). 1144 * 1145 * For set operations on slave controls, check if the master's value is set to 1146 * manual, either in the others controls set in the same ioctl call, or from 1147 * the master's current value. This catches VIDIOC_S_EXT_CTRLS calls that set 1148 * both the master and slave control, such as for instance setting 1149 * auto_exposure=1, exposure_time_absolute=251. 1150 */ 1151 int uvc_ctrl_is_accessible(struct uvc_video_chain *chain, u32 v4l2_id, 1152 const struct v4l2_ext_controls *ctrls, 1153 unsigned long ioctl) 1154 { 1155 struct uvc_control_mapping *master_map = NULL; 1156 struct uvc_control *master_ctrl = NULL; 1157 struct uvc_control_mapping *mapping; 1158 struct uvc_control *ctrl; 1159 bool read = ioctl == VIDIOC_G_EXT_CTRLS; 1160 s32 val; 1161 int ret; 1162 int i; 1163 1164 if (__uvc_query_v4l2_class(chain, v4l2_id, 0) >= 0) 1165 return -EACCES; 1166 1167 ctrl = uvc_find_control(chain, v4l2_id, &mapping); 1168 if (!ctrl) 1169 return -EINVAL; 1170 1171 if (!(ctrl->info.flags & UVC_CTRL_FLAG_GET_CUR) && read) 1172 return -EACCES; 1173 1174 if (!(ctrl->info.flags & UVC_CTRL_FLAG_SET_CUR) && !read) 1175 return -EACCES; 1176 1177 if (ioctl != VIDIOC_S_EXT_CTRLS || !mapping->master_id) 1178 return 0; 1179 1180 /* 1181 * Iterate backwards in cases where the master control is accessed 1182 * multiple times in the same ioctl. We want the last value. 1183 */ 1184 for (i = ctrls->count - 1; i >= 0; i--) { 1185 if (ctrls->controls[i].id == mapping->master_id) 1186 return ctrls->controls[i].value == 1187 mapping->master_manual ? 0 : -EACCES; 1188 } 1189 1190 __uvc_find_control(ctrl->entity, mapping->master_id, &master_map, 1191 &master_ctrl, 0); 1192 1193 if (!master_ctrl || !(master_ctrl->info.flags & UVC_CTRL_FLAG_GET_CUR)) 1194 return 0; 1195 1196 ret = __uvc_ctrl_get(chain, master_ctrl, master_map, &val); 1197 if (ret >= 0 && val != mapping->master_manual) 1198 return -EACCES; 1199 1200 return 0; 1201 } 1202 1203 static const char *uvc_map_get_name(const struct uvc_control_mapping *map) 1204 { 1205 const char *name; 1206 1207 if (map->name) 1208 return map->name; 1209 1210 name = v4l2_ctrl_get_name(map->id); 1211 if (name) 1212 return name; 1213 1214 return "Unknown Control"; 1215 } 1216 1217 static u32 uvc_get_ctrl_bitmap(struct uvc_control *ctrl, 1218 struct uvc_control_mapping *mapping) 1219 { 1220 /* 1221 * Some controls, like CT_AE_MODE_CONTROL, use GET_RES to represent 1222 * the number of bits supported. Those controls do not list GET_MAX 1223 * as supported. 1224 */ 1225 if (ctrl->info.flags & UVC_CTRL_FLAG_GET_RES) 1226 return mapping->get(mapping, UVC_GET_RES, 1227 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_RES)); 1228 1229 if (ctrl->info.flags & UVC_CTRL_FLAG_GET_MAX) 1230 return mapping->get(mapping, UVC_GET_MAX, 1231 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MAX)); 1232 1233 return ~0; 1234 } 1235 1236 static int __uvc_query_v4l2_ctrl(struct uvc_video_chain *chain, 1237 struct uvc_control *ctrl, 1238 struct uvc_control_mapping *mapping, 1239 struct v4l2_queryctrl *v4l2_ctrl) 1240 { 1241 struct uvc_control_mapping *master_map = NULL; 1242 struct uvc_control *master_ctrl = NULL; 1243 unsigned int i; 1244 1245 memset(v4l2_ctrl, 0, sizeof(*v4l2_ctrl)); 1246 v4l2_ctrl->id = mapping->id; 1247 v4l2_ctrl->type = mapping->v4l2_type; 1248 strscpy(v4l2_ctrl->name, uvc_map_get_name(mapping), 1249 sizeof(v4l2_ctrl->name)); 1250 v4l2_ctrl->flags = 0; 1251 1252 if (!(ctrl->info.flags & UVC_CTRL_FLAG_GET_CUR)) 1253 v4l2_ctrl->flags |= V4L2_CTRL_FLAG_WRITE_ONLY; 1254 if (!(ctrl->info.flags & UVC_CTRL_FLAG_SET_CUR)) 1255 v4l2_ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY; 1256 1257 if (mapping->master_id) 1258 __uvc_find_control(ctrl->entity, mapping->master_id, 1259 &master_map, &master_ctrl, 0); 1260 if (master_ctrl && (master_ctrl->info.flags & UVC_CTRL_FLAG_GET_CUR)) { 1261 s32 val; 1262 int ret = __uvc_ctrl_get(chain, master_ctrl, master_map, &val); 1263 if (ret < 0) 1264 return ret; 1265 1266 if (val != mapping->master_manual) 1267 v4l2_ctrl->flags |= V4L2_CTRL_FLAG_INACTIVE; 1268 } 1269 1270 if (!ctrl->cached) { 1271 int ret = uvc_ctrl_populate_cache(chain, ctrl); 1272 if (ret < 0) 1273 return ret; 1274 } 1275 1276 if (ctrl->info.flags & UVC_CTRL_FLAG_GET_DEF) { 1277 v4l2_ctrl->default_value = mapping->get(mapping, UVC_GET_DEF, 1278 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_DEF)); 1279 } 1280 1281 switch (mapping->v4l2_type) { 1282 case V4L2_CTRL_TYPE_MENU: 1283 v4l2_ctrl->minimum = ffs(mapping->menu_mask) - 1; 1284 v4l2_ctrl->maximum = fls(mapping->menu_mask) - 1; 1285 v4l2_ctrl->step = 1; 1286 1287 for (i = 0; BIT(i) <= mapping->menu_mask; ++i) { 1288 u32 menu_value; 1289 1290 if (!test_bit(i, &mapping->menu_mask)) 1291 continue; 1292 1293 menu_value = uvc_mapping_get_menu_value(mapping, i); 1294 1295 if (menu_value == v4l2_ctrl->default_value) { 1296 v4l2_ctrl->default_value = i; 1297 break; 1298 } 1299 } 1300 1301 return 0; 1302 1303 case V4L2_CTRL_TYPE_BOOLEAN: 1304 v4l2_ctrl->minimum = 0; 1305 v4l2_ctrl->maximum = 1; 1306 v4l2_ctrl->step = 1; 1307 return 0; 1308 1309 case V4L2_CTRL_TYPE_BUTTON: 1310 v4l2_ctrl->minimum = 0; 1311 v4l2_ctrl->maximum = 0; 1312 v4l2_ctrl->step = 0; 1313 return 0; 1314 1315 case V4L2_CTRL_TYPE_BITMASK: 1316 v4l2_ctrl->minimum = 0; 1317 v4l2_ctrl->maximum = uvc_get_ctrl_bitmap(ctrl, mapping); 1318 v4l2_ctrl->step = 0; 1319 return 0; 1320 1321 default: 1322 break; 1323 } 1324 1325 if (ctrl->info.flags & UVC_CTRL_FLAG_GET_MIN) 1326 v4l2_ctrl->minimum = mapping->get(mapping, UVC_GET_MIN, 1327 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MIN)); 1328 1329 if (ctrl->info.flags & UVC_CTRL_FLAG_GET_MAX) 1330 v4l2_ctrl->maximum = mapping->get(mapping, UVC_GET_MAX, 1331 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MAX)); 1332 1333 if (ctrl->info.flags & UVC_CTRL_FLAG_GET_RES) 1334 v4l2_ctrl->step = mapping->get(mapping, UVC_GET_RES, 1335 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_RES)); 1336 1337 return 0; 1338 } 1339 1340 int uvc_query_v4l2_ctrl(struct uvc_video_chain *chain, 1341 struct v4l2_queryctrl *v4l2_ctrl) 1342 { 1343 struct uvc_control *ctrl; 1344 struct uvc_control_mapping *mapping; 1345 int ret; 1346 1347 ret = mutex_lock_interruptible(&chain->ctrl_mutex); 1348 if (ret < 0) 1349 return -ERESTARTSYS; 1350 1351 /* Check if the ctrl is a know class */ 1352 if (!(v4l2_ctrl->id & V4L2_CTRL_FLAG_NEXT_CTRL)) { 1353 ret = uvc_query_v4l2_class(chain, v4l2_ctrl->id, 0, v4l2_ctrl); 1354 if (!ret) 1355 goto done; 1356 } 1357 1358 ctrl = uvc_find_control(chain, v4l2_ctrl->id, &mapping); 1359 if (ctrl == NULL) { 1360 ret = -EINVAL; 1361 goto done; 1362 } 1363 1364 /* 1365 * If we're enumerating control with V4L2_CTRL_FLAG_NEXT_CTRL, check if 1366 * a class should be inserted between the previous control and the one 1367 * we have just found. 1368 */ 1369 if (v4l2_ctrl->id & V4L2_CTRL_FLAG_NEXT_CTRL) { 1370 ret = uvc_query_v4l2_class(chain, v4l2_ctrl->id, mapping->id, 1371 v4l2_ctrl); 1372 if (!ret) 1373 goto done; 1374 } 1375 1376 ret = __uvc_query_v4l2_ctrl(chain, ctrl, mapping, v4l2_ctrl); 1377 done: 1378 mutex_unlock(&chain->ctrl_mutex); 1379 return ret; 1380 } 1381 1382 /* 1383 * Mapping V4L2 controls to UVC controls can be straightforward if done well. 1384 * Most of the UVC controls exist in V4L2, and can be mapped directly. Some 1385 * must be grouped (for instance the Red Balance, Blue Balance and Do White 1386 * Balance V4L2 controls use the White Balance Component UVC control) or 1387 * otherwise translated. The approach we take here is to use a translation 1388 * table for the controls that can be mapped directly, and handle the others 1389 * manually. 1390 */ 1391 int uvc_query_v4l2_menu(struct uvc_video_chain *chain, 1392 struct v4l2_querymenu *query_menu) 1393 { 1394 struct uvc_control_mapping *mapping; 1395 struct uvc_control *ctrl; 1396 u32 index = query_menu->index; 1397 u32 id = query_menu->id; 1398 const char *name; 1399 int ret; 1400 1401 memset(query_menu, 0, sizeof(*query_menu)); 1402 query_menu->id = id; 1403 query_menu->index = index; 1404 1405 ret = mutex_lock_interruptible(&chain->ctrl_mutex); 1406 if (ret < 0) 1407 return -ERESTARTSYS; 1408 1409 ctrl = uvc_find_control(chain, query_menu->id, &mapping); 1410 if (ctrl == NULL || mapping->v4l2_type != V4L2_CTRL_TYPE_MENU) { 1411 ret = -EINVAL; 1412 goto done; 1413 } 1414 1415 if (!test_bit(query_menu->index, &mapping->menu_mask)) { 1416 ret = -EINVAL; 1417 goto done; 1418 } 1419 1420 if (mapping->data_type == UVC_CTRL_DATA_TYPE_BITMASK) { 1421 int mask; 1422 1423 if (!ctrl->cached) { 1424 ret = uvc_ctrl_populate_cache(chain, ctrl); 1425 if (ret < 0) 1426 goto done; 1427 } 1428 1429 mask = uvc_mapping_get_menu_value(mapping, query_menu->index); 1430 if (mask < 0) { 1431 ret = mask; 1432 goto done; 1433 } 1434 1435 if (!(uvc_get_ctrl_bitmap(ctrl, mapping) & mask)) { 1436 ret = -EINVAL; 1437 goto done; 1438 } 1439 } 1440 1441 name = uvc_mapping_get_menu_name(mapping, query_menu->index); 1442 if (!name) { 1443 ret = -EINVAL; 1444 goto done; 1445 } 1446 1447 strscpy(query_menu->name, name, sizeof(query_menu->name)); 1448 1449 done: 1450 mutex_unlock(&chain->ctrl_mutex); 1451 return ret; 1452 } 1453 1454 /* -------------------------------------------------------------------------- 1455 * Ctrl event handling 1456 */ 1457 1458 static void uvc_ctrl_fill_event(struct uvc_video_chain *chain, 1459 struct v4l2_event *ev, 1460 struct uvc_control *ctrl, 1461 struct uvc_control_mapping *mapping, 1462 s32 value, u32 changes) 1463 { 1464 struct v4l2_queryctrl v4l2_ctrl; 1465 1466 __uvc_query_v4l2_ctrl(chain, ctrl, mapping, &v4l2_ctrl); 1467 1468 memset(ev, 0, sizeof(*ev)); 1469 ev->type = V4L2_EVENT_CTRL; 1470 ev->id = v4l2_ctrl.id; 1471 ev->u.ctrl.value = value; 1472 ev->u.ctrl.changes = changes; 1473 ev->u.ctrl.type = v4l2_ctrl.type; 1474 ev->u.ctrl.flags = v4l2_ctrl.flags; 1475 ev->u.ctrl.minimum = v4l2_ctrl.minimum; 1476 ev->u.ctrl.maximum = v4l2_ctrl.maximum; 1477 ev->u.ctrl.step = v4l2_ctrl.step; 1478 ev->u.ctrl.default_value = v4l2_ctrl.default_value; 1479 } 1480 1481 /* 1482 * Send control change events to all subscribers for the @ctrl control. By 1483 * default the subscriber that generated the event, as identified by @handle, 1484 * is not notified unless it has set the V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK flag. 1485 * @handle can be NULL for asynchronous events related to auto-update controls, 1486 * in which case all subscribers are notified. 1487 */ 1488 static void uvc_ctrl_send_event(struct uvc_video_chain *chain, 1489 struct uvc_fh *handle, struct uvc_control *ctrl, 1490 struct uvc_control_mapping *mapping, s32 value, u32 changes) 1491 { 1492 struct v4l2_fh *originator = handle ? &handle->vfh : NULL; 1493 struct v4l2_subscribed_event *sev; 1494 struct v4l2_event ev; 1495 1496 if (list_empty(&mapping->ev_subs)) 1497 return; 1498 1499 uvc_ctrl_fill_event(chain, &ev, ctrl, mapping, value, changes); 1500 1501 list_for_each_entry(sev, &mapping->ev_subs, node) { 1502 if (sev->fh != originator || 1503 (sev->flags & V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK) || 1504 (changes & V4L2_EVENT_CTRL_CH_FLAGS)) 1505 v4l2_event_queue_fh(sev->fh, &ev); 1506 } 1507 } 1508 1509 /* 1510 * Send control change events for the slave of the @master control identified 1511 * by the V4L2 ID @slave_id. The @handle identifies the event subscriber that 1512 * generated the event and may be NULL for auto-update events. 1513 */ 1514 static void uvc_ctrl_send_slave_event(struct uvc_video_chain *chain, 1515 struct uvc_fh *handle, struct uvc_control *master, u32 slave_id) 1516 { 1517 struct uvc_control_mapping *mapping = NULL; 1518 struct uvc_control *ctrl = NULL; 1519 u32 changes = V4L2_EVENT_CTRL_CH_FLAGS; 1520 s32 val = 0; 1521 1522 __uvc_find_control(master->entity, slave_id, &mapping, &ctrl, 0); 1523 if (ctrl == NULL) 1524 return; 1525 1526 if (__uvc_ctrl_get(chain, ctrl, mapping, &val) == 0) 1527 changes |= V4L2_EVENT_CTRL_CH_VALUE; 1528 1529 uvc_ctrl_send_event(chain, handle, ctrl, mapping, val, changes); 1530 } 1531 1532 void uvc_ctrl_status_event(struct uvc_video_chain *chain, 1533 struct uvc_control *ctrl, const u8 *data) 1534 { 1535 struct uvc_control_mapping *mapping; 1536 struct uvc_fh *handle; 1537 unsigned int i; 1538 1539 mutex_lock(&chain->ctrl_mutex); 1540 1541 handle = ctrl->handle; 1542 ctrl->handle = NULL; 1543 1544 list_for_each_entry(mapping, &ctrl->info.mappings, list) { 1545 s32 value = __uvc_ctrl_get_value(mapping, data); 1546 1547 /* 1548 * handle may be NULL here if the device sends auto-update 1549 * events without a prior related control set from userspace. 1550 */ 1551 for (i = 0; i < ARRAY_SIZE(mapping->slave_ids); ++i) { 1552 if (!mapping->slave_ids[i]) 1553 break; 1554 1555 uvc_ctrl_send_slave_event(chain, handle, ctrl, 1556 mapping->slave_ids[i]); 1557 } 1558 1559 uvc_ctrl_send_event(chain, handle, ctrl, mapping, value, 1560 V4L2_EVENT_CTRL_CH_VALUE); 1561 } 1562 1563 mutex_unlock(&chain->ctrl_mutex); 1564 } 1565 1566 static void uvc_ctrl_status_event_work(struct work_struct *work) 1567 { 1568 struct uvc_device *dev = container_of(work, struct uvc_device, 1569 async_ctrl.work); 1570 struct uvc_ctrl_work *w = &dev->async_ctrl; 1571 int ret; 1572 1573 uvc_ctrl_status_event(w->chain, w->ctrl, w->data); 1574 1575 /* The barrier is needed to synchronize with uvc_status_stop(). */ 1576 if (smp_load_acquire(&dev->flush_status)) 1577 return; 1578 1579 /* Resubmit the URB. */ 1580 w->urb->interval = dev->int_ep->desc.bInterval; 1581 ret = usb_submit_urb(w->urb, GFP_KERNEL); 1582 if (ret < 0) 1583 dev_err(&dev->udev->dev, 1584 "Failed to resubmit status URB (%d).\n", ret); 1585 } 1586 1587 bool uvc_ctrl_status_event_async(struct urb *urb, struct uvc_video_chain *chain, 1588 struct uvc_control *ctrl, const u8 *data) 1589 { 1590 struct uvc_device *dev = chain->dev; 1591 struct uvc_ctrl_work *w = &dev->async_ctrl; 1592 1593 if (list_empty(&ctrl->info.mappings)) { 1594 ctrl->handle = NULL; 1595 return false; 1596 } 1597 1598 w->data = data; 1599 w->urb = urb; 1600 w->chain = chain; 1601 w->ctrl = ctrl; 1602 1603 schedule_work(&w->work); 1604 1605 return true; 1606 } 1607 1608 static bool uvc_ctrl_xctrls_has_control(const struct v4l2_ext_control *xctrls, 1609 unsigned int xctrls_count, u32 id) 1610 { 1611 unsigned int i; 1612 1613 for (i = 0; i < xctrls_count; ++i) { 1614 if (xctrls[i].id == id) 1615 return true; 1616 } 1617 1618 return false; 1619 } 1620 1621 static void uvc_ctrl_send_events(struct uvc_fh *handle, 1622 const struct v4l2_ext_control *xctrls, unsigned int xctrls_count) 1623 { 1624 struct uvc_control_mapping *mapping; 1625 struct uvc_control *ctrl; 1626 u32 changes = V4L2_EVENT_CTRL_CH_VALUE; 1627 unsigned int i; 1628 unsigned int j; 1629 1630 for (i = 0; i < xctrls_count; ++i) { 1631 ctrl = uvc_find_control(handle->chain, xctrls[i].id, &mapping); 1632 1633 if (ctrl->info.flags & UVC_CTRL_FLAG_ASYNCHRONOUS) 1634 /* Notification will be sent from an Interrupt event. */ 1635 continue; 1636 1637 for (j = 0; j < ARRAY_SIZE(mapping->slave_ids); ++j) { 1638 u32 slave_id = mapping->slave_ids[j]; 1639 1640 if (!slave_id) 1641 break; 1642 1643 /* 1644 * We can skip sending an event for the slave if the 1645 * slave is being modified in the same transaction. 1646 */ 1647 if (uvc_ctrl_xctrls_has_control(xctrls, xctrls_count, 1648 slave_id)) 1649 continue; 1650 1651 uvc_ctrl_send_slave_event(handle->chain, handle, ctrl, 1652 slave_id); 1653 } 1654 1655 /* 1656 * If the master is being modified in the same transaction 1657 * flags may change too. 1658 */ 1659 if (mapping->master_id && 1660 uvc_ctrl_xctrls_has_control(xctrls, xctrls_count, 1661 mapping->master_id)) 1662 changes |= V4L2_EVENT_CTRL_CH_FLAGS; 1663 1664 uvc_ctrl_send_event(handle->chain, handle, ctrl, mapping, 1665 xctrls[i].value, changes); 1666 } 1667 } 1668 1669 static int uvc_ctrl_add_event(struct v4l2_subscribed_event *sev, unsigned elems) 1670 { 1671 struct uvc_fh *handle = container_of(sev->fh, struct uvc_fh, vfh); 1672 struct uvc_control_mapping *mapping; 1673 struct uvc_control *ctrl; 1674 int ret; 1675 1676 ret = mutex_lock_interruptible(&handle->chain->ctrl_mutex); 1677 if (ret < 0) 1678 return -ERESTARTSYS; 1679 1680 if (__uvc_query_v4l2_class(handle->chain, sev->id, 0) >= 0) { 1681 ret = 0; 1682 goto done; 1683 } 1684 1685 ctrl = uvc_find_control(handle->chain, sev->id, &mapping); 1686 if (ctrl == NULL) { 1687 ret = -EINVAL; 1688 goto done; 1689 } 1690 1691 list_add_tail(&sev->node, &mapping->ev_subs); 1692 if (sev->flags & V4L2_EVENT_SUB_FL_SEND_INITIAL) { 1693 struct v4l2_event ev; 1694 u32 changes = V4L2_EVENT_CTRL_CH_FLAGS; 1695 s32 val = 0; 1696 1697 if (__uvc_ctrl_get(handle->chain, ctrl, mapping, &val) == 0) 1698 changes |= V4L2_EVENT_CTRL_CH_VALUE; 1699 1700 uvc_ctrl_fill_event(handle->chain, &ev, ctrl, mapping, val, 1701 changes); 1702 /* 1703 * Mark the queue as active, allowing this initial event to be 1704 * accepted. 1705 */ 1706 sev->elems = elems; 1707 v4l2_event_queue_fh(sev->fh, &ev); 1708 } 1709 1710 done: 1711 mutex_unlock(&handle->chain->ctrl_mutex); 1712 return ret; 1713 } 1714 1715 static void uvc_ctrl_del_event(struct v4l2_subscribed_event *sev) 1716 { 1717 struct uvc_fh *handle = container_of(sev->fh, struct uvc_fh, vfh); 1718 1719 mutex_lock(&handle->chain->ctrl_mutex); 1720 if (__uvc_query_v4l2_class(handle->chain, sev->id, 0) >= 0) 1721 goto done; 1722 list_del(&sev->node); 1723 done: 1724 mutex_unlock(&handle->chain->ctrl_mutex); 1725 } 1726 1727 const struct v4l2_subscribed_event_ops uvc_ctrl_sub_ev_ops = { 1728 .add = uvc_ctrl_add_event, 1729 .del = uvc_ctrl_del_event, 1730 .replace = v4l2_ctrl_replace, 1731 .merge = v4l2_ctrl_merge, 1732 }; 1733 1734 /* -------------------------------------------------------------------------- 1735 * Control transactions 1736 * 1737 * To make extended set operations as atomic as the hardware allows, controls 1738 * are handled using begin/commit/rollback operations. 1739 * 1740 * At the beginning of a set request, uvc_ctrl_begin should be called to 1741 * initialize the request. This function acquires the control lock. 1742 * 1743 * When setting a control, the new value is stored in the control data field 1744 * at position UVC_CTRL_DATA_CURRENT. The control is then marked as dirty for 1745 * later processing. If the UVC and V4L2 control sizes differ, the current 1746 * value is loaded from the hardware before storing the new value in the data 1747 * field. 1748 * 1749 * After processing all controls in the transaction, uvc_ctrl_commit or 1750 * uvc_ctrl_rollback must be called to apply the pending changes to the 1751 * hardware or revert them. When applying changes, all controls marked as 1752 * dirty will be modified in the UVC device, and the dirty flag will be 1753 * cleared. When reverting controls, the control data field 1754 * UVC_CTRL_DATA_CURRENT is reverted to its previous value 1755 * (UVC_CTRL_DATA_BACKUP) for all dirty controls. Both functions release the 1756 * control lock. 1757 */ 1758 int uvc_ctrl_begin(struct uvc_video_chain *chain) 1759 { 1760 return mutex_lock_interruptible(&chain->ctrl_mutex) ? -ERESTARTSYS : 0; 1761 } 1762 1763 static int uvc_ctrl_commit_entity(struct uvc_device *dev, 1764 struct uvc_entity *entity, int rollback, struct uvc_control **err_ctrl) 1765 { 1766 struct uvc_control *ctrl; 1767 unsigned int i; 1768 int ret; 1769 1770 if (entity == NULL) 1771 return 0; 1772 1773 for (i = 0; i < entity->ncontrols; ++i) { 1774 ctrl = &entity->controls[i]; 1775 if (!ctrl->initialized) 1776 continue; 1777 1778 /* 1779 * Reset the loaded flag for auto-update controls that were 1780 * marked as loaded in uvc_ctrl_get/uvc_ctrl_set to prevent 1781 * uvc_ctrl_get from using the cached value, and for write-only 1782 * controls to prevent uvc_ctrl_set from setting bits not 1783 * explicitly set by the user. 1784 */ 1785 if (ctrl->info.flags & UVC_CTRL_FLAG_AUTO_UPDATE || 1786 !(ctrl->info.flags & UVC_CTRL_FLAG_GET_CUR)) 1787 ctrl->loaded = 0; 1788 1789 if (!ctrl->dirty) 1790 continue; 1791 1792 if (!rollback) 1793 ret = uvc_query_ctrl(dev, UVC_SET_CUR, ctrl->entity->id, 1794 dev->intfnum, ctrl->info.selector, 1795 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT), 1796 ctrl->info.size); 1797 else 1798 ret = 0; 1799 1800 if (rollback || ret < 0) 1801 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT), 1802 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP), 1803 ctrl->info.size); 1804 1805 ctrl->dirty = 0; 1806 1807 if (ret < 0) { 1808 if (err_ctrl) 1809 *err_ctrl = ctrl; 1810 return ret; 1811 } 1812 } 1813 1814 return 0; 1815 } 1816 1817 static int uvc_ctrl_find_ctrl_idx(struct uvc_entity *entity, 1818 struct v4l2_ext_controls *ctrls, 1819 struct uvc_control *uvc_control) 1820 { 1821 struct uvc_control_mapping *mapping = NULL; 1822 struct uvc_control *ctrl_found = NULL; 1823 unsigned int i; 1824 1825 if (!entity) 1826 return ctrls->count; 1827 1828 for (i = 0; i < ctrls->count; i++) { 1829 __uvc_find_control(entity, ctrls->controls[i].id, &mapping, 1830 &ctrl_found, 0); 1831 if (uvc_control == ctrl_found) 1832 return i; 1833 } 1834 1835 return ctrls->count; 1836 } 1837 1838 int __uvc_ctrl_commit(struct uvc_fh *handle, int rollback, 1839 struct v4l2_ext_controls *ctrls) 1840 { 1841 struct uvc_video_chain *chain = handle->chain; 1842 struct uvc_control *err_ctrl; 1843 struct uvc_entity *entity; 1844 int ret = 0; 1845 1846 /* Find the control. */ 1847 list_for_each_entry(entity, &chain->entities, chain) { 1848 ret = uvc_ctrl_commit_entity(chain->dev, entity, rollback, 1849 &err_ctrl); 1850 if (ret < 0) 1851 goto done; 1852 } 1853 1854 if (!rollback) 1855 uvc_ctrl_send_events(handle, ctrls->controls, ctrls->count); 1856 done: 1857 if (ret < 0 && ctrls) 1858 ctrls->error_idx = uvc_ctrl_find_ctrl_idx(entity, ctrls, 1859 err_ctrl); 1860 mutex_unlock(&chain->ctrl_mutex); 1861 return ret; 1862 } 1863 1864 int uvc_ctrl_get(struct uvc_video_chain *chain, 1865 struct v4l2_ext_control *xctrl) 1866 { 1867 struct uvc_control *ctrl; 1868 struct uvc_control_mapping *mapping; 1869 1870 if (__uvc_query_v4l2_class(chain, xctrl->id, 0) >= 0) 1871 return -EACCES; 1872 1873 ctrl = uvc_find_control(chain, xctrl->id, &mapping); 1874 if (ctrl == NULL) 1875 return -EINVAL; 1876 1877 return __uvc_ctrl_get(chain, ctrl, mapping, &xctrl->value); 1878 } 1879 1880 int uvc_ctrl_set(struct uvc_fh *handle, 1881 struct v4l2_ext_control *xctrl) 1882 { 1883 struct uvc_video_chain *chain = handle->chain; 1884 struct uvc_control *ctrl; 1885 struct uvc_control_mapping *mapping; 1886 s32 value; 1887 u32 step; 1888 s32 min; 1889 s32 max; 1890 int ret; 1891 1892 if (__uvc_query_v4l2_class(chain, xctrl->id, 0) >= 0) 1893 return -EACCES; 1894 1895 ctrl = uvc_find_control(chain, xctrl->id, &mapping); 1896 if (ctrl == NULL) 1897 return -EINVAL; 1898 if (!(ctrl->info.flags & UVC_CTRL_FLAG_SET_CUR)) 1899 return -EACCES; 1900 1901 /* Clamp out of range values. */ 1902 switch (mapping->v4l2_type) { 1903 case V4L2_CTRL_TYPE_INTEGER: 1904 if (!ctrl->cached) { 1905 ret = uvc_ctrl_populate_cache(chain, ctrl); 1906 if (ret < 0) 1907 return ret; 1908 } 1909 1910 min = mapping->get(mapping, UVC_GET_MIN, 1911 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MIN)); 1912 max = mapping->get(mapping, UVC_GET_MAX, 1913 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MAX)); 1914 step = mapping->get(mapping, UVC_GET_RES, 1915 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_RES)); 1916 if (step == 0) 1917 step = 1; 1918 1919 xctrl->value = min + DIV_ROUND_CLOSEST((u32)(xctrl->value - min), 1920 step) * step; 1921 if (mapping->data_type == UVC_CTRL_DATA_TYPE_SIGNED) 1922 xctrl->value = clamp(xctrl->value, min, max); 1923 else 1924 xctrl->value = clamp_t(u32, xctrl->value, min, max); 1925 value = xctrl->value; 1926 break; 1927 1928 case V4L2_CTRL_TYPE_BITMASK: 1929 if (!ctrl->cached) { 1930 ret = uvc_ctrl_populate_cache(chain, ctrl); 1931 if (ret < 0) 1932 return ret; 1933 } 1934 1935 xctrl->value &= uvc_get_ctrl_bitmap(ctrl, mapping); 1936 value = xctrl->value; 1937 break; 1938 1939 case V4L2_CTRL_TYPE_BOOLEAN: 1940 xctrl->value = clamp(xctrl->value, 0, 1); 1941 value = xctrl->value; 1942 break; 1943 1944 case V4L2_CTRL_TYPE_MENU: 1945 if (xctrl->value < (ffs(mapping->menu_mask) - 1) || 1946 xctrl->value > (fls(mapping->menu_mask) - 1)) 1947 return -ERANGE; 1948 1949 if (!test_bit(xctrl->value, &mapping->menu_mask)) 1950 return -EINVAL; 1951 1952 value = uvc_mapping_get_menu_value(mapping, xctrl->value); 1953 1954 /* 1955 * Valid menu indices are reported by the GET_RES request for 1956 * UVC controls that support it. 1957 */ 1958 if (mapping->data_type == UVC_CTRL_DATA_TYPE_BITMASK) { 1959 if (!ctrl->cached) { 1960 ret = uvc_ctrl_populate_cache(chain, ctrl); 1961 if (ret < 0) 1962 return ret; 1963 } 1964 1965 if (!(uvc_get_ctrl_bitmap(ctrl, mapping) & value)) 1966 return -EINVAL; 1967 } 1968 1969 break; 1970 1971 default: 1972 value = xctrl->value; 1973 break; 1974 } 1975 1976 /* 1977 * If the mapping doesn't span the whole UVC control, the current value 1978 * needs to be loaded from the device to perform the read-modify-write 1979 * operation. 1980 */ 1981 if ((ctrl->info.size * 8) != mapping->size) { 1982 ret = __uvc_ctrl_load_cur(chain, ctrl); 1983 if (ret < 0) 1984 return ret; 1985 } 1986 1987 /* Backup the current value in case we need to rollback later. */ 1988 if (!ctrl->dirty) { 1989 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP), 1990 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT), 1991 ctrl->info.size); 1992 } 1993 1994 mapping->set(mapping, value, 1995 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT)); 1996 1997 if (ctrl->info.flags & UVC_CTRL_FLAG_ASYNCHRONOUS) 1998 ctrl->handle = handle; 1999 2000 ctrl->dirty = 1; 2001 ctrl->modified = 1; 2002 return 0; 2003 } 2004 2005 /* -------------------------------------------------------------------------- 2006 * Dynamic controls 2007 */ 2008 2009 /* 2010 * Retrieve flags for a given control 2011 */ 2012 static int uvc_ctrl_get_flags(struct uvc_device *dev, 2013 const struct uvc_control *ctrl, 2014 struct uvc_control_info *info) 2015 { 2016 u8 *data; 2017 int ret; 2018 2019 data = kmalloc(1, GFP_KERNEL); 2020 if (data == NULL) 2021 return -ENOMEM; 2022 2023 if (ctrl->entity->get_info) 2024 ret = ctrl->entity->get_info(dev, ctrl->entity, 2025 ctrl->info.selector, data); 2026 else 2027 ret = uvc_query_ctrl(dev, UVC_GET_INFO, ctrl->entity->id, 2028 dev->intfnum, info->selector, data, 1); 2029 if (!ret) 2030 info->flags |= (data[0] & UVC_CONTROL_CAP_GET ? 2031 UVC_CTRL_FLAG_GET_CUR : 0) 2032 | (data[0] & UVC_CONTROL_CAP_SET ? 2033 UVC_CTRL_FLAG_SET_CUR : 0) 2034 | (data[0] & UVC_CONTROL_CAP_AUTOUPDATE ? 2035 UVC_CTRL_FLAG_AUTO_UPDATE : 0) 2036 | (data[0] & UVC_CONTROL_CAP_ASYNCHRONOUS ? 2037 UVC_CTRL_FLAG_ASYNCHRONOUS : 0); 2038 2039 kfree(data); 2040 return ret; 2041 } 2042 2043 static void uvc_ctrl_fixup_xu_info(struct uvc_device *dev, 2044 const struct uvc_control *ctrl, struct uvc_control_info *info) 2045 { 2046 struct uvc_ctrl_fixup { 2047 struct usb_device_id id; 2048 u8 entity; 2049 u8 selector; 2050 u8 flags; 2051 }; 2052 2053 static const struct uvc_ctrl_fixup fixups[] = { 2054 { { USB_DEVICE(0x046d, 0x08c2) }, 9, 1, 2055 UVC_CTRL_FLAG_GET_MIN | UVC_CTRL_FLAG_GET_MAX | 2056 UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_SET_CUR | 2057 UVC_CTRL_FLAG_AUTO_UPDATE }, 2058 { { USB_DEVICE(0x046d, 0x08cc) }, 9, 1, 2059 UVC_CTRL_FLAG_GET_MIN | UVC_CTRL_FLAG_GET_MAX | 2060 UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_SET_CUR | 2061 UVC_CTRL_FLAG_AUTO_UPDATE }, 2062 { { USB_DEVICE(0x046d, 0x0994) }, 9, 1, 2063 UVC_CTRL_FLAG_GET_MIN | UVC_CTRL_FLAG_GET_MAX | 2064 UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_SET_CUR | 2065 UVC_CTRL_FLAG_AUTO_UPDATE }, 2066 }; 2067 2068 unsigned int i; 2069 2070 for (i = 0; i < ARRAY_SIZE(fixups); ++i) { 2071 if (!usb_match_one_id(dev->intf, &fixups[i].id)) 2072 continue; 2073 2074 if (fixups[i].entity == ctrl->entity->id && 2075 fixups[i].selector == info->selector) { 2076 info->flags = fixups[i].flags; 2077 return; 2078 } 2079 } 2080 } 2081 2082 /* 2083 * Query control information (size and flags) for XU controls. 2084 */ 2085 static int uvc_ctrl_fill_xu_info(struct uvc_device *dev, 2086 const struct uvc_control *ctrl, struct uvc_control_info *info) 2087 { 2088 u8 *data; 2089 int ret; 2090 2091 data = kmalloc(2, GFP_KERNEL); 2092 if (data == NULL) 2093 return -ENOMEM; 2094 2095 memcpy(info->entity, ctrl->entity->guid, sizeof(info->entity)); 2096 info->index = ctrl->index; 2097 info->selector = ctrl->index + 1; 2098 2099 /* Query and verify the control length (GET_LEN) */ 2100 ret = uvc_query_ctrl(dev, UVC_GET_LEN, ctrl->entity->id, dev->intfnum, 2101 info->selector, data, 2); 2102 if (ret < 0) { 2103 uvc_dbg(dev, CONTROL, 2104 "GET_LEN failed on control %pUl/%u (%d)\n", 2105 info->entity, info->selector, ret); 2106 goto done; 2107 } 2108 2109 info->size = le16_to_cpup((__le16 *)data); 2110 2111 info->flags = UVC_CTRL_FLAG_GET_MIN | UVC_CTRL_FLAG_GET_MAX 2112 | UVC_CTRL_FLAG_GET_RES | UVC_CTRL_FLAG_GET_DEF; 2113 2114 ret = uvc_ctrl_get_flags(dev, ctrl, info); 2115 if (ret < 0) { 2116 uvc_dbg(dev, CONTROL, 2117 "Failed to get flags for control %pUl/%u (%d)\n", 2118 info->entity, info->selector, ret); 2119 goto done; 2120 } 2121 2122 uvc_ctrl_fixup_xu_info(dev, ctrl, info); 2123 2124 uvc_dbg(dev, CONTROL, 2125 "XU control %pUl/%u queried: len %u, flags { get %u set %u auto %u }\n", 2126 info->entity, info->selector, info->size, 2127 (info->flags & UVC_CTRL_FLAG_GET_CUR) ? 1 : 0, 2128 (info->flags & UVC_CTRL_FLAG_SET_CUR) ? 1 : 0, 2129 (info->flags & UVC_CTRL_FLAG_AUTO_UPDATE) ? 1 : 0); 2130 2131 done: 2132 kfree(data); 2133 return ret; 2134 } 2135 2136 static int uvc_ctrl_add_info(struct uvc_device *dev, struct uvc_control *ctrl, 2137 const struct uvc_control_info *info); 2138 2139 static int uvc_ctrl_init_xu_ctrl(struct uvc_device *dev, 2140 struct uvc_control *ctrl) 2141 { 2142 struct uvc_control_info info; 2143 int ret; 2144 2145 if (ctrl->initialized) 2146 return 0; 2147 2148 ret = uvc_ctrl_fill_xu_info(dev, ctrl, &info); 2149 if (ret < 0) 2150 return ret; 2151 2152 ret = uvc_ctrl_add_info(dev, ctrl, &info); 2153 if (ret < 0) 2154 uvc_dbg(dev, CONTROL, 2155 "Failed to initialize control %pUl/%u on device %s entity %u\n", 2156 info.entity, info.selector, dev->udev->devpath, 2157 ctrl->entity->id); 2158 2159 return ret; 2160 } 2161 2162 int uvc_xu_ctrl_query(struct uvc_video_chain *chain, 2163 struct uvc_xu_control_query *xqry) 2164 { 2165 struct uvc_entity *entity; 2166 struct uvc_control *ctrl; 2167 unsigned int i; 2168 bool found; 2169 u32 reqflags; 2170 u16 size; 2171 u8 *data = NULL; 2172 int ret; 2173 2174 /* Find the extension unit. */ 2175 found = false; 2176 list_for_each_entry(entity, &chain->entities, chain) { 2177 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT && 2178 entity->id == xqry->unit) { 2179 found = true; 2180 break; 2181 } 2182 } 2183 2184 if (!found) { 2185 uvc_dbg(chain->dev, CONTROL, "Extension unit %u not found\n", 2186 xqry->unit); 2187 return -ENOENT; 2188 } 2189 2190 /* Find the control and perform delayed initialization if needed. */ 2191 found = false; 2192 for (i = 0; i < entity->ncontrols; ++i) { 2193 ctrl = &entity->controls[i]; 2194 if (ctrl->index == xqry->selector - 1) { 2195 found = true; 2196 break; 2197 } 2198 } 2199 2200 if (!found) { 2201 uvc_dbg(chain->dev, CONTROL, "Control %pUl/%u not found\n", 2202 entity->guid, xqry->selector); 2203 return -ENOENT; 2204 } 2205 2206 if (mutex_lock_interruptible(&chain->ctrl_mutex)) 2207 return -ERESTARTSYS; 2208 2209 ret = uvc_ctrl_init_xu_ctrl(chain->dev, ctrl); 2210 if (ret < 0) { 2211 ret = -ENOENT; 2212 goto done; 2213 } 2214 2215 /* Validate the required buffer size and flags for the request */ 2216 reqflags = 0; 2217 size = ctrl->info.size; 2218 2219 switch (xqry->query) { 2220 case UVC_GET_CUR: 2221 reqflags = UVC_CTRL_FLAG_GET_CUR; 2222 break; 2223 case UVC_GET_MIN: 2224 reqflags = UVC_CTRL_FLAG_GET_MIN; 2225 break; 2226 case UVC_GET_MAX: 2227 reqflags = UVC_CTRL_FLAG_GET_MAX; 2228 break; 2229 case UVC_GET_DEF: 2230 reqflags = UVC_CTRL_FLAG_GET_DEF; 2231 break; 2232 case UVC_GET_RES: 2233 reqflags = UVC_CTRL_FLAG_GET_RES; 2234 break; 2235 case UVC_SET_CUR: 2236 reqflags = UVC_CTRL_FLAG_SET_CUR; 2237 break; 2238 case UVC_GET_LEN: 2239 size = 2; 2240 break; 2241 case UVC_GET_INFO: 2242 size = 1; 2243 break; 2244 default: 2245 ret = -EINVAL; 2246 goto done; 2247 } 2248 2249 if (size != xqry->size) { 2250 ret = -ENOBUFS; 2251 goto done; 2252 } 2253 2254 if (reqflags && !(ctrl->info.flags & reqflags)) { 2255 ret = -EBADRQC; 2256 goto done; 2257 } 2258 2259 data = kmalloc(size, GFP_KERNEL); 2260 if (data == NULL) { 2261 ret = -ENOMEM; 2262 goto done; 2263 } 2264 2265 if (xqry->query == UVC_SET_CUR && 2266 copy_from_user(data, xqry->data, size)) { 2267 ret = -EFAULT; 2268 goto done; 2269 } 2270 2271 ret = uvc_query_ctrl(chain->dev, xqry->query, xqry->unit, 2272 chain->dev->intfnum, xqry->selector, data, size); 2273 if (ret < 0) 2274 goto done; 2275 2276 if (xqry->query != UVC_SET_CUR && 2277 copy_to_user(xqry->data, data, size)) 2278 ret = -EFAULT; 2279 done: 2280 kfree(data); 2281 mutex_unlock(&chain->ctrl_mutex); 2282 return ret; 2283 } 2284 2285 /* -------------------------------------------------------------------------- 2286 * Suspend/resume 2287 */ 2288 2289 /* 2290 * Restore control values after resume, skipping controls that haven't been 2291 * changed. 2292 * 2293 * TODO 2294 * - Don't restore modified controls that are back to their default value. 2295 * - Handle restore order (Auto-Exposure Mode should be restored before 2296 * Exposure Time). 2297 */ 2298 int uvc_ctrl_restore_values(struct uvc_device *dev) 2299 { 2300 struct uvc_control *ctrl; 2301 struct uvc_entity *entity; 2302 unsigned int i; 2303 int ret; 2304 2305 /* Walk the entities list and restore controls when possible. */ 2306 list_for_each_entry(entity, &dev->entities, list) { 2307 2308 for (i = 0; i < entity->ncontrols; ++i) { 2309 ctrl = &entity->controls[i]; 2310 2311 if (!ctrl->initialized || !ctrl->modified || 2312 (ctrl->info.flags & UVC_CTRL_FLAG_RESTORE) == 0) 2313 continue; 2314 dev_dbg(&dev->udev->dev, 2315 "restoring control %pUl/%u/%u\n", 2316 ctrl->info.entity, ctrl->info.index, 2317 ctrl->info.selector); 2318 ctrl->dirty = 1; 2319 } 2320 2321 ret = uvc_ctrl_commit_entity(dev, entity, 0, NULL); 2322 if (ret < 0) 2323 return ret; 2324 } 2325 2326 return 0; 2327 } 2328 2329 /* -------------------------------------------------------------------------- 2330 * Control and mapping handling 2331 */ 2332 2333 /* 2334 * Add control information to a given control. 2335 */ 2336 static int uvc_ctrl_add_info(struct uvc_device *dev, struct uvc_control *ctrl, 2337 const struct uvc_control_info *info) 2338 { 2339 ctrl->info = *info; 2340 INIT_LIST_HEAD(&ctrl->info.mappings); 2341 2342 /* Allocate an array to save control values (cur, def, max, etc.) */ 2343 ctrl->uvc_data = kzalloc(ctrl->info.size * UVC_CTRL_DATA_LAST + 1, 2344 GFP_KERNEL); 2345 if (!ctrl->uvc_data) 2346 return -ENOMEM; 2347 2348 ctrl->initialized = 1; 2349 2350 uvc_dbg(dev, CONTROL, "Added control %pUl/%u to device %s entity %u\n", 2351 ctrl->info.entity, ctrl->info.selector, dev->udev->devpath, 2352 ctrl->entity->id); 2353 2354 return 0; 2355 } 2356 2357 /* 2358 * Add a control mapping to a given control. 2359 */ 2360 static int __uvc_ctrl_add_mapping(struct uvc_video_chain *chain, 2361 struct uvc_control *ctrl, const struct uvc_control_mapping *mapping) 2362 { 2363 struct uvc_control_mapping *map; 2364 unsigned int size; 2365 unsigned int i; 2366 2367 /* 2368 * Most mappings come from static kernel data, and need to be duplicated. 2369 * Mappings that come from userspace will be unnecessarily duplicated, 2370 * this could be optimized. 2371 */ 2372 map = kmemdup(mapping, sizeof(*mapping), GFP_KERNEL); 2373 if (!map) 2374 return -ENOMEM; 2375 2376 map->name = NULL; 2377 map->menu_names = NULL; 2378 map->menu_mapping = NULL; 2379 2380 /* For UVCIOC_CTRL_MAP custom control */ 2381 if (mapping->name) { 2382 map->name = kstrdup(mapping->name, GFP_KERNEL); 2383 if (!map->name) 2384 goto err_nomem; 2385 } 2386 2387 INIT_LIST_HEAD(&map->ev_subs); 2388 2389 if (mapping->menu_mapping && mapping->menu_mask) { 2390 size = sizeof(mapping->menu_mapping[0]) 2391 * fls(mapping->menu_mask); 2392 map->menu_mapping = kmemdup(mapping->menu_mapping, size, 2393 GFP_KERNEL); 2394 if (!map->menu_mapping) 2395 goto err_nomem; 2396 } 2397 if (mapping->menu_names && mapping->menu_mask) { 2398 size = sizeof(mapping->menu_names[0]) 2399 * fls(mapping->menu_mask); 2400 map->menu_names = kmemdup(mapping->menu_names, size, 2401 GFP_KERNEL); 2402 if (!map->menu_names) 2403 goto err_nomem; 2404 } 2405 2406 if (map->get == NULL) 2407 map->get = uvc_get_le_value; 2408 if (map->set == NULL) 2409 map->set = uvc_set_le_value; 2410 2411 for (i = 0; i < ARRAY_SIZE(uvc_control_classes); i++) { 2412 if (V4L2_CTRL_ID2WHICH(uvc_control_classes[i]) == 2413 V4L2_CTRL_ID2WHICH(map->id)) { 2414 chain->ctrl_class_bitmap |= BIT(i); 2415 break; 2416 } 2417 } 2418 2419 list_add_tail(&map->list, &ctrl->info.mappings); 2420 uvc_dbg(chain->dev, CONTROL, "Adding mapping '%s' to control %pUl/%u\n", 2421 uvc_map_get_name(map), ctrl->info.entity, 2422 ctrl->info.selector); 2423 2424 return 0; 2425 2426 err_nomem: 2427 kfree(map->menu_names); 2428 kfree(map->menu_mapping); 2429 kfree(map->name); 2430 kfree(map); 2431 return -ENOMEM; 2432 } 2433 2434 int uvc_ctrl_add_mapping(struct uvc_video_chain *chain, 2435 const struct uvc_control_mapping *mapping) 2436 { 2437 struct uvc_device *dev = chain->dev; 2438 struct uvc_control_mapping *map; 2439 struct uvc_entity *entity; 2440 struct uvc_control *ctrl; 2441 int found = 0; 2442 int ret; 2443 2444 if (mapping->id & ~V4L2_CTRL_ID_MASK) { 2445 uvc_dbg(dev, CONTROL, 2446 "Can't add mapping '%s', control id 0x%08x is invalid\n", 2447 uvc_map_get_name(mapping), mapping->id); 2448 return -EINVAL; 2449 } 2450 2451 /* Search for the matching (GUID/CS) control on the current chain */ 2452 list_for_each_entry(entity, &chain->entities, chain) { 2453 unsigned int i; 2454 2455 if (UVC_ENTITY_TYPE(entity) != UVC_VC_EXTENSION_UNIT || 2456 !uvc_entity_match_guid(entity, mapping->entity)) 2457 continue; 2458 2459 for (i = 0; i < entity->ncontrols; ++i) { 2460 ctrl = &entity->controls[i]; 2461 if (ctrl->index == mapping->selector - 1) { 2462 found = 1; 2463 break; 2464 } 2465 } 2466 2467 if (found) 2468 break; 2469 } 2470 if (!found) 2471 return -ENOENT; 2472 2473 if (mutex_lock_interruptible(&chain->ctrl_mutex)) 2474 return -ERESTARTSYS; 2475 2476 /* Perform delayed initialization of XU controls */ 2477 ret = uvc_ctrl_init_xu_ctrl(dev, ctrl); 2478 if (ret < 0) { 2479 ret = -ENOENT; 2480 goto done; 2481 } 2482 2483 /* Validate the user-provided bit-size and offset */ 2484 if (mapping->size > 32 || 2485 mapping->offset + mapping->size > ctrl->info.size * 8) { 2486 ret = -EINVAL; 2487 goto done; 2488 } 2489 2490 list_for_each_entry(map, &ctrl->info.mappings, list) { 2491 if (mapping->id == map->id) { 2492 uvc_dbg(dev, CONTROL, 2493 "Can't add mapping '%s', control id 0x%08x already exists\n", 2494 uvc_map_get_name(mapping), mapping->id); 2495 ret = -EEXIST; 2496 goto done; 2497 } 2498 } 2499 2500 /* Prevent excess memory consumption */ 2501 if (atomic_inc_return(&dev->nmappings) > UVC_MAX_CONTROL_MAPPINGS) { 2502 atomic_dec(&dev->nmappings); 2503 uvc_dbg(dev, CONTROL, 2504 "Can't add mapping '%s', maximum mappings count (%u) exceeded\n", 2505 uvc_map_get_name(mapping), UVC_MAX_CONTROL_MAPPINGS); 2506 ret = -ENOMEM; 2507 goto done; 2508 } 2509 2510 ret = __uvc_ctrl_add_mapping(chain, ctrl, mapping); 2511 if (ret < 0) 2512 atomic_dec(&dev->nmappings); 2513 2514 done: 2515 mutex_unlock(&chain->ctrl_mutex); 2516 return ret; 2517 } 2518 2519 /* 2520 * Prune an entity of its bogus controls using a blacklist. Bogus controls 2521 * are currently the ones that crash the camera or unconditionally return an 2522 * error when queried. 2523 */ 2524 static void uvc_ctrl_prune_entity(struct uvc_device *dev, 2525 struct uvc_entity *entity) 2526 { 2527 struct uvc_ctrl_blacklist { 2528 struct usb_device_id id; 2529 u8 index; 2530 }; 2531 2532 static const struct uvc_ctrl_blacklist processing_blacklist[] = { 2533 { { USB_DEVICE(0x13d3, 0x509b) }, 9 }, /* Gain */ 2534 { { USB_DEVICE(0x1c4f, 0x3000) }, 6 }, /* WB Temperature */ 2535 { { USB_DEVICE(0x5986, 0x0241) }, 2 }, /* Hue */ 2536 }; 2537 static const struct uvc_ctrl_blacklist camera_blacklist[] = { 2538 { { USB_DEVICE(0x06f8, 0x3005) }, 9 }, /* Zoom, Absolute */ 2539 }; 2540 2541 const struct uvc_ctrl_blacklist *blacklist; 2542 unsigned int size; 2543 unsigned int count; 2544 unsigned int i; 2545 u8 *controls; 2546 2547 switch (UVC_ENTITY_TYPE(entity)) { 2548 case UVC_VC_PROCESSING_UNIT: 2549 blacklist = processing_blacklist; 2550 count = ARRAY_SIZE(processing_blacklist); 2551 controls = entity->processing.bmControls; 2552 size = entity->processing.bControlSize; 2553 break; 2554 2555 case UVC_ITT_CAMERA: 2556 blacklist = camera_blacklist; 2557 count = ARRAY_SIZE(camera_blacklist); 2558 controls = entity->camera.bmControls; 2559 size = entity->camera.bControlSize; 2560 break; 2561 2562 default: 2563 return; 2564 } 2565 2566 for (i = 0; i < count; ++i) { 2567 if (!usb_match_one_id(dev->intf, &blacklist[i].id)) 2568 continue; 2569 2570 if (blacklist[i].index >= 8 * size || 2571 !uvc_test_bit(controls, blacklist[i].index)) 2572 continue; 2573 2574 uvc_dbg(dev, CONTROL, 2575 "%u/%u control is black listed, removing it\n", 2576 entity->id, blacklist[i].index); 2577 2578 uvc_clear_bit(controls, blacklist[i].index); 2579 } 2580 } 2581 2582 /* 2583 * Add control information and hardcoded stock control mappings to the given 2584 * device. 2585 */ 2586 static void uvc_ctrl_init_ctrl(struct uvc_video_chain *chain, 2587 struct uvc_control *ctrl) 2588 { 2589 const struct uvc_control_mapping **mappings; 2590 unsigned int i; 2591 2592 /* 2593 * XU controls initialization requires querying the device for control 2594 * information. As some buggy UVC devices will crash when queried 2595 * repeatedly in a tight loop, delay XU controls initialization until 2596 * first use. 2597 */ 2598 if (UVC_ENTITY_TYPE(ctrl->entity) == UVC_VC_EXTENSION_UNIT) 2599 return; 2600 2601 for (i = 0; i < ARRAY_SIZE(uvc_ctrls); ++i) { 2602 const struct uvc_control_info *info = &uvc_ctrls[i]; 2603 2604 if (uvc_entity_match_guid(ctrl->entity, info->entity) && 2605 ctrl->index == info->index) { 2606 uvc_ctrl_add_info(chain->dev, ctrl, info); 2607 /* 2608 * Retrieve control flags from the device. Ignore errors 2609 * and work with default flag values from the uvc_ctrl 2610 * array when the device doesn't properly implement 2611 * GET_INFO on standard controls. 2612 */ 2613 uvc_ctrl_get_flags(chain->dev, ctrl, &ctrl->info); 2614 break; 2615 } 2616 } 2617 2618 if (!ctrl->initialized) 2619 return; 2620 2621 /* 2622 * First check if the device provides a custom mapping for this control, 2623 * used to override standard mappings for non-conformant devices. Don't 2624 * process standard mappings if a custom mapping is found. This 2625 * mechanism doesn't support combining standard and custom mappings for 2626 * a single control. 2627 */ 2628 if (chain->dev->info->mappings) { 2629 bool custom = false; 2630 2631 for (i = 0; chain->dev->info->mappings[i]; ++i) { 2632 const struct uvc_control_mapping *mapping = 2633 chain->dev->info->mappings[i]; 2634 2635 if (uvc_entity_match_guid(ctrl->entity, mapping->entity) && 2636 ctrl->info.selector == mapping->selector) { 2637 __uvc_ctrl_add_mapping(chain, ctrl, mapping); 2638 custom = true; 2639 } 2640 } 2641 2642 if (custom) 2643 return; 2644 } 2645 2646 /* Process common mappings next. */ 2647 for (i = 0; i < ARRAY_SIZE(uvc_ctrl_mappings); ++i) { 2648 const struct uvc_control_mapping *mapping = &uvc_ctrl_mappings[i]; 2649 2650 if (uvc_entity_match_guid(ctrl->entity, mapping->entity) && 2651 ctrl->info.selector == mapping->selector) 2652 __uvc_ctrl_add_mapping(chain, ctrl, mapping); 2653 } 2654 2655 /* Finally process version-specific mappings. */ 2656 mappings = chain->dev->uvc_version < 0x0150 2657 ? uvc_ctrl_mappings_uvc11 : uvc_ctrl_mappings_uvc15; 2658 2659 for (i = 0; mappings[i]; ++i) { 2660 const struct uvc_control_mapping *mapping = mappings[i]; 2661 2662 if (uvc_entity_match_guid(ctrl->entity, mapping->entity) && 2663 ctrl->info.selector == mapping->selector) 2664 __uvc_ctrl_add_mapping(chain, ctrl, mapping); 2665 } 2666 } 2667 2668 /* 2669 * Initialize device controls. 2670 */ 2671 static int uvc_ctrl_init_chain(struct uvc_video_chain *chain) 2672 { 2673 struct uvc_entity *entity; 2674 unsigned int i; 2675 2676 /* Walk the entities list and instantiate controls */ 2677 list_for_each_entry(entity, &chain->entities, chain) { 2678 struct uvc_control *ctrl; 2679 unsigned int bControlSize = 0, ncontrols; 2680 u8 *bmControls = NULL; 2681 2682 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT) { 2683 bmControls = entity->extension.bmControls; 2684 bControlSize = entity->extension.bControlSize; 2685 } else if (UVC_ENTITY_TYPE(entity) == UVC_VC_PROCESSING_UNIT) { 2686 bmControls = entity->processing.bmControls; 2687 bControlSize = entity->processing.bControlSize; 2688 } else if (UVC_ENTITY_TYPE(entity) == UVC_ITT_CAMERA) { 2689 bmControls = entity->camera.bmControls; 2690 bControlSize = entity->camera.bControlSize; 2691 } else if (UVC_ENTITY_TYPE(entity) == UVC_EXT_GPIO_UNIT) { 2692 bmControls = entity->gpio.bmControls; 2693 bControlSize = entity->gpio.bControlSize; 2694 } 2695 2696 /* Remove bogus/blacklisted controls */ 2697 uvc_ctrl_prune_entity(chain->dev, entity); 2698 2699 /* Count supported controls and allocate the controls array */ 2700 ncontrols = memweight(bmControls, bControlSize); 2701 if (ncontrols == 0) 2702 continue; 2703 2704 entity->controls = kcalloc(ncontrols, sizeof(*ctrl), 2705 GFP_KERNEL); 2706 if (entity->controls == NULL) 2707 return -ENOMEM; 2708 entity->ncontrols = ncontrols; 2709 2710 /* Initialize all supported controls */ 2711 ctrl = entity->controls; 2712 for (i = 0; i < bControlSize * 8; ++i) { 2713 if (uvc_test_bit(bmControls, i) == 0) 2714 continue; 2715 2716 ctrl->entity = entity; 2717 ctrl->index = i; 2718 2719 uvc_ctrl_init_ctrl(chain, ctrl); 2720 ctrl++; 2721 } 2722 } 2723 2724 return 0; 2725 } 2726 2727 int uvc_ctrl_init_device(struct uvc_device *dev) 2728 { 2729 struct uvc_video_chain *chain; 2730 int ret; 2731 2732 INIT_WORK(&dev->async_ctrl.work, uvc_ctrl_status_event_work); 2733 2734 list_for_each_entry(chain, &dev->chains, list) { 2735 ret = uvc_ctrl_init_chain(chain); 2736 if (ret) 2737 return ret; 2738 } 2739 2740 return 0; 2741 } 2742 2743 /* 2744 * Cleanup device controls. 2745 */ 2746 static void uvc_ctrl_cleanup_mappings(struct uvc_device *dev, 2747 struct uvc_control *ctrl) 2748 { 2749 struct uvc_control_mapping *mapping, *nm; 2750 2751 list_for_each_entry_safe(mapping, nm, &ctrl->info.mappings, list) { 2752 list_del(&mapping->list); 2753 kfree(mapping->menu_names); 2754 kfree(mapping->menu_mapping); 2755 kfree(mapping->name); 2756 kfree(mapping); 2757 } 2758 } 2759 2760 void uvc_ctrl_cleanup_device(struct uvc_device *dev) 2761 { 2762 struct uvc_entity *entity; 2763 unsigned int i; 2764 2765 /* Can be uninitialized if we are aborting on probe error. */ 2766 if (dev->async_ctrl.work.func) 2767 cancel_work_sync(&dev->async_ctrl.work); 2768 2769 /* Free controls and control mappings for all entities. */ 2770 list_for_each_entry(entity, &dev->entities, list) { 2771 for (i = 0; i < entity->ncontrols; ++i) { 2772 struct uvc_control *ctrl = &entity->controls[i]; 2773 2774 if (!ctrl->initialized) 2775 continue; 2776 2777 uvc_ctrl_cleanup_mappings(dev, ctrl); 2778 kfree(ctrl->uvc_data); 2779 } 2780 2781 kfree(entity->controls); 2782 } 2783 } 2784