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/usb/uvc.h> 18 #include <linux/videodev2.h> 19 #include <linux/vmalloc.h> 20 #include <linux/wait.h> 21 #include <linux/workqueue.h> 22 #include <linux/atomic.h> 23 #include <media/v4l2-ctrls.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 if (index >= BITS_PER_TYPE(mapping->menu_mask)) 1406 return -EINVAL; 1407 1408 ret = mutex_lock_interruptible(&chain->ctrl_mutex); 1409 if (ret < 0) 1410 return -ERESTARTSYS; 1411 1412 ctrl = uvc_find_control(chain, query_menu->id, &mapping); 1413 if (ctrl == NULL || mapping->v4l2_type != V4L2_CTRL_TYPE_MENU) { 1414 ret = -EINVAL; 1415 goto done; 1416 } 1417 1418 if (!test_bit(query_menu->index, &mapping->menu_mask)) { 1419 ret = -EINVAL; 1420 goto done; 1421 } 1422 1423 if (mapping->data_type == UVC_CTRL_DATA_TYPE_BITMASK) { 1424 int mask; 1425 1426 if (!ctrl->cached) { 1427 ret = uvc_ctrl_populate_cache(chain, ctrl); 1428 if (ret < 0) 1429 goto done; 1430 } 1431 1432 mask = uvc_mapping_get_menu_value(mapping, query_menu->index); 1433 if (mask < 0) { 1434 ret = mask; 1435 goto done; 1436 } 1437 1438 if (!(uvc_get_ctrl_bitmap(ctrl, mapping) & mask)) { 1439 ret = -EINVAL; 1440 goto done; 1441 } 1442 } 1443 1444 name = uvc_mapping_get_menu_name(mapping, query_menu->index); 1445 if (!name) { 1446 ret = -EINVAL; 1447 goto done; 1448 } 1449 1450 strscpy(query_menu->name, name, sizeof(query_menu->name)); 1451 1452 done: 1453 mutex_unlock(&chain->ctrl_mutex); 1454 return ret; 1455 } 1456 1457 /* -------------------------------------------------------------------------- 1458 * Ctrl event handling 1459 */ 1460 1461 static void uvc_ctrl_fill_event(struct uvc_video_chain *chain, 1462 struct v4l2_event *ev, 1463 struct uvc_control *ctrl, 1464 struct uvc_control_mapping *mapping, 1465 s32 value, u32 changes) 1466 { 1467 struct v4l2_queryctrl v4l2_ctrl; 1468 1469 __uvc_query_v4l2_ctrl(chain, ctrl, mapping, &v4l2_ctrl); 1470 1471 memset(ev, 0, sizeof(*ev)); 1472 ev->type = V4L2_EVENT_CTRL; 1473 ev->id = v4l2_ctrl.id; 1474 ev->u.ctrl.value = value; 1475 ev->u.ctrl.changes = changes; 1476 ev->u.ctrl.type = v4l2_ctrl.type; 1477 ev->u.ctrl.flags = v4l2_ctrl.flags; 1478 ev->u.ctrl.minimum = v4l2_ctrl.minimum; 1479 ev->u.ctrl.maximum = v4l2_ctrl.maximum; 1480 ev->u.ctrl.step = v4l2_ctrl.step; 1481 ev->u.ctrl.default_value = v4l2_ctrl.default_value; 1482 } 1483 1484 /* 1485 * Send control change events to all subscribers for the @ctrl control. By 1486 * default the subscriber that generated the event, as identified by @handle, 1487 * is not notified unless it has set the V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK flag. 1488 * @handle can be NULL for asynchronous events related to auto-update controls, 1489 * in which case all subscribers are notified. 1490 */ 1491 static void uvc_ctrl_send_event(struct uvc_video_chain *chain, 1492 struct uvc_fh *handle, struct uvc_control *ctrl, 1493 struct uvc_control_mapping *mapping, s32 value, u32 changes) 1494 { 1495 struct v4l2_fh *originator = handle ? &handle->vfh : NULL; 1496 struct v4l2_subscribed_event *sev; 1497 struct v4l2_event ev; 1498 1499 if (list_empty(&mapping->ev_subs)) 1500 return; 1501 1502 uvc_ctrl_fill_event(chain, &ev, ctrl, mapping, value, changes); 1503 1504 list_for_each_entry(sev, &mapping->ev_subs, node) { 1505 if (sev->fh != originator || 1506 (sev->flags & V4L2_EVENT_SUB_FL_ALLOW_FEEDBACK) || 1507 (changes & V4L2_EVENT_CTRL_CH_FLAGS)) 1508 v4l2_event_queue_fh(sev->fh, &ev); 1509 } 1510 } 1511 1512 /* 1513 * Send control change events for the slave of the @master control identified 1514 * by the V4L2 ID @slave_id. The @handle identifies the event subscriber that 1515 * generated the event and may be NULL for auto-update events. 1516 */ 1517 static void uvc_ctrl_send_slave_event(struct uvc_video_chain *chain, 1518 struct uvc_fh *handle, struct uvc_control *master, u32 slave_id) 1519 { 1520 struct uvc_control_mapping *mapping = NULL; 1521 struct uvc_control *ctrl = NULL; 1522 u32 changes = V4L2_EVENT_CTRL_CH_FLAGS; 1523 s32 val = 0; 1524 1525 __uvc_find_control(master->entity, slave_id, &mapping, &ctrl, 0); 1526 if (ctrl == NULL) 1527 return; 1528 1529 if (__uvc_ctrl_get(chain, ctrl, mapping, &val) == 0) 1530 changes |= V4L2_EVENT_CTRL_CH_VALUE; 1531 1532 uvc_ctrl_send_event(chain, handle, ctrl, mapping, val, changes); 1533 } 1534 1535 void uvc_ctrl_status_event(struct uvc_video_chain *chain, 1536 struct uvc_control *ctrl, const u8 *data) 1537 { 1538 struct uvc_control_mapping *mapping; 1539 struct uvc_fh *handle; 1540 unsigned int i; 1541 1542 mutex_lock(&chain->ctrl_mutex); 1543 1544 handle = ctrl->handle; 1545 ctrl->handle = NULL; 1546 1547 list_for_each_entry(mapping, &ctrl->info.mappings, list) { 1548 s32 value = __uvc_ctrl_get_value(mapping, data); 1549 1550 /* 1551 * handle may be NULL here if the device sends auto-update 1552 * events without a prior related control set from userspace. 1553 */ 1554 for (i = 0; i < ARRAY_SIZE(mapping->slave_ids); ++i) { 1555 if (!mapping->slave_ids[i]) 1556 break; 1557 1558 uvc_ctrl_send_slave_event(chain, handle, ctrl, 1559 mapping->slave_ids[i]); 1560 } 1561 1562 uvc_ctrl_send_event(chain, handle, ctrl, mapping, value, 1563 V4L2_EVENT_CTRL_CH_VALUE); 1564 } 1565 1566 mutex_unlock(&chain->ctrl_mutex); 1567 } 1568 1569 static void uvc_ctrl_status_event_work(struct work_struct *work) 1570 { 1571 struct uvc_device *dev = container_of(work, struct uvc_device, 1572 async_ctrl.work); 1573 struct uvc_ctrl_work *w = &dev->async_ctrl; 1574 int ret; 1575 1576 uvc_ctrl_status_event(w->chain, w->ctrl, w->data); 1577 1578 /* The barrier is needed to synchronize with uvc_status_stop(). */ 1579 if (smp_load_acquire(&dev->flush_status)) 1580 return; 1581 1582 /* Resubmit the URB. */ 1583 w->urb->interval = dev->int_ep->desc.bInterval; 1584 ret = usb_submit_urb(w->urb, GFP_KERNEL); 1585 if (ret < 0) 1586 dev_err(&dev->udev->dev, 1587 "Failed to resubmit status URB (%d).\n", ret); 1588 } 1589 1590 bool uvc_ctrl_status_event_async(struct urb *urb, struct uvc_video_chain *chain, 1591 struct uvc_control *ctrl, const u8 *data) 1592 { 1593 struct uvc_device *dev = chain->dev; 1594 struct uvc_ctrl_work *w = &dev->async_ctrl; 1595 1596 if (list_empty(&ctrl->info.mappings)) { 1597 ctrl->handle = NULL; 1598 return false; 1599 } 1600 1601 w->data = data; 1602 w->urb = urb; 1603 w->chain = chain; 1604 w->ctrl = ctrl; 1605 1606 schedule_work(&w->work); 1607 1608 return true; 1609 } 1610 1611 static bool uvc_ctrl_xctrls_has_control(const struct v4l2_ext_control *xctrls, 1612 unsigned int xctrls_count, u32 id) 1613 { 1614 unsigned int i; 1615 1616 for (i = 0; i < xctrls_count; ++i) { 1617 if (xctrls[i].id == id) 1618 return true; 1619 } 1620 1621 return false; 1622 } 1623 1624 static void uvc_ctrl_send_events(struct uvc_fh *handle, 1625 const struct v4l2_ext_control *xctrls, unsigned int xctrls_count) 1626 { 1627 struct uvc_control_mapping *mapping; 1628 struct uvc_control *ctrl; 1629 u32 changes = V4L2_EVENT_CTRL_CH_VALUE; 1630 unsigned int i; 1631 unsigned int j; 1632 1633 for (i = 0; i < xctrls_count; ++i) { 1634 ctrl = uvc_find_control(handle->chain, xctrls[i].id, &mapping); 1635 1636 if (ctrl->info.flags & UVC_CTRL_FLAG_ASYNCHRONOUS) 1637 /* Notification will be sent from an Interrupt event. */ 1638 continue; 1639 1640 for (j = 0; j < ARRAY_SIZE(mapping->slave_ids); ++j) { 1641 u32 slave_id = mapping->slave_ids[j]; 1642 1643 if (!slave_id) 1644 break; 1645 1646 /* 1647 * We can skip sending an event for the slave if the 1648 * slave is being modified in the same transaction. 1649 */ 1650 if (uvc_ctrl_xctrls_has_control(xctrls, xctrls_count, 1651 slave_id)) 1652 continue; 1653 1654 uvc_ctrl_send_slave_event(handle->chain, handle, ctrl, 1655 slave_id); 1656 } 1657 1658 /* 1659 * If the master is being modified in the same transaction 1660 * flags may change too. 1661 */ 1662 if (mapping->master_id && 1663 uvc_ctrl_xctrls_has_control(xctrls, xctrls_count, 1664 mapping->master_id)) 1665 changes |= V4L2_EVENT_CTRL_CH_FLAGS; 1666 1667 uvc_ctrl_send_event(handle->chain, handle, ctrl, mapping, 1668 xctrls[i].value, changes); 1669 } 1670 } 1671 1672 static int uvc_ctrl_add_event(struct v4l2_subscribed_event *sev, unsigned elems) 1673 { 1674 struct uvc_fh *handle = container_of(sev->fh, struct uvc_fh, vfh); 1675 struct uvc_control_mapping *mapping; 1676 struct uvc_control *ctrl; 1677 int ret; 1678 1679 ret = mutex_lock_interruptible(&handle->chain->ctrl_mutex); 1680 if (ret < 0) 1681 return -ERESTARTSYS; 1682 1683 if (__uvc_query_v4l2_class(handle->chain, sev->id, 0) >= 0) { 1684 ret = 0; 1685 goto done; 1686 } 1687 1688 ctrl = uvc_find_control(handle->chain, sev->id, &mapping); 1689 if (ctrl == NULL) { 1690 ret = -EINVAL; 1691 goto done; 1692 } 1693 1694 list_add_tail(&sev->node, &mapping->ev_subs); 1695 if (sev->flags & V4L2_EVENT_SUB_FL_SEND_INITIAL) { 1696 struct v4l2_event ev; 1697 u32 changes = V4L2_EVENT_CTRL_CH_FLAGS; 1698 s32 val = 0; 1699 1700 if (__uvc_ctrl_get(handle->chain, ctrl, mapping, &val) == 0) 1701 changes |= V4L2_EVENT_CTRL_CH_VALUE; 1702 1703 uvc_ctrl_fill_event(handle->chain, &ev, ctrl, mapping, val, 1704 changes); 1705 /* 1706 * Mark the queue as active, allowing this initial event to be 1707 * accepted. 1708 */ 1709 sev->elems = elems; 1710 v4l2_event_queue_fh(sev->fh, &ev); 1711 } 1712 1713 done: 1714 mutex_unlock(&handle->chain->ctrl_mutex); 1715 return ret; 1716 } 1717 1718 static void uvc_ctrl_del_event(struct v4l2_subscribed_event *sev) 1719 { 1720 struct uvc_fh *handle = container_of(sev->fh, struct uvc_fh, vfh); 1721 1722 mutex_lock(&handle->chain->ctrl_mutex); 1723 if (__uvc_query_v4l2_class(handle->chain, sev->id, 0) >= 0) 1724 goto done; 1725 list_del(&sev->node); 1726 done: 1727 mutex_unlock(&handle->chain->ctrl_mutex); 1728 } 1729 1730 const struct v4l2_subscribed_event_ops uvc_ctrl_sub_ev_ops = { 1731 .add = uvc_ctrl_add_event, 1732 .del = uvc_ctrl_del_event, 1733 .replace = v4l2_ctrl_replace, 1734 .merge = v4l2_ctrl_merge, 1735 }; 1736 1737 /* -------------------------------------------------------------------------- 1738 * Control transactions 1739 * 1740 * To make extended set operations as atomic as the hardware allows, controls 1741 * are handled using begin/commit/rollback operations. 1742 * 1743 * At the beginning of a set request, uvc_ctrl_begin should be called to 1744 * initialize the request. This function acquires the control lock. 1745 * 1746 * When setting a control, the new value is stored in the control data field 1747 * at position UVC_CTRL_DATA_CURRENT. The control is then marked as dirty for 1748 * later processing. If the UVC and V4L2 control sizes differ, the current 1749 * value is loaded from the hardware before storing the new value in the data 1750 * field. 1751 * 1752 * After processing all controls in the transaction, uvc_ctrl_commit or 1753 * uvc_ctrl_rollback must be called to apply the pending changes to the 1754 * hardware or revert them. When applying changes, all controls marked as 1755 * dirty will be modified in the UVC device, and the dirty flag will be 1756 * cleared. When reverting controls, the control data field 1757 * UVC_CTRL_DATA_CURRENT is reverted to its previous value 1758 * (UVC_CTRL_DATA_BACKUP) for all dirty controls. Both functions release the 1759 * control lock. 1760 */ 1761 int uvc_ctrl_begin(struct uvc_video_chain *chain) 1762 { 1763 return mutex_lock_interruptible(&chain->ctrl_mutex) ? -ERESTARTSYS : 0; 1764 } 1765 1766 static int uvc_ctrl_commit_entity(struct uvc_device *dev, 1767 struct uvc_entity *entity, int rollback, struct uvc_control **err_ctrl) 1768 { 1769 struct uvc_control *ctrl; 1770 unsigned int i; 1771 int ret; 1772 1773 if (entity == NULL) 1774 return 0; 1775 1776 for (i = 0; i < entity->ncontrols; ++i) { 1777 ctrl = &entity->controls[i]; 1778 if (!ctrl->initialized) 1779 continue; 1780 1781 /* 1782 * Reset the loaded flag for auto-update controls that were 1783 * marked as loaded in uvc_ctrl_get/uvc_ctrl_set to prevent 1784 * uvc_ctrl_get from using the cached value, and for write-only 1785 * controls to prevent uvc_ctrl_set from setting bits not 1786 * explicitly set by the user. 1787 */ 1788 if (ctrl->info.flags & UVC_CTRL_FLAG_AUTO_UPDATE || 1789 !(ctrl->info.flags & UVC_CTRL_FLAG_GET_CUR)) 1790 ctrl->loaded = 0; 1791 1792 if (!ctrl->dirty) 1793 continue; 1794 1795 if (!rollback) 1796 ret = uvc_query_ctrl(dev, UVC_SET_CUR, ctrl->entity->id, 1797 dev->intfnum, ctrl->info.selector, 1798 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT), 1799 ctrl->info.size); 1800 else 1801 ret = 0; 1802 1803 if (rollback || ret < 0) 1804 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT), 1805 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP), 1806 ctrl->info.size); 1807 1808 ctrl->dirty = 0; 1809 1810 if (ret < 0) { 1811 if (err_ctrl) 1812 *err_ctrl = ctrl; 1813 return ret; 1814 } 1815 } 1816 1817 return 0; 1818 } 1819 1820 static int uvc_ctrl_find_ctrl_idx(struct uvc_entity *entity, 1821 struct v4l2_ext_controls *ctrls, 1822 struct uvc_control *uvc_control) 1823 { 1824 struct uvc_control_mapping *mapping = NULL; 1825 struct uvc_control *ctrl_found = NULL; 1826 unsigned int i; 1827 1828 if (!entity) 1829 return ctrls->count; 1830 1831 for (i = 0; i < ctrls->count; i++) { 1832 __uvc_find_control(entity, ctrls->controls[i].id, &mapping, 1833 &ctrl_found, 0); 1834 if (uvc_control == ctrl_found) 1835 return i; 1836 } 1837 1838 return ctrls->count; 1839 } 1840 1841 int __uvc_ctrl_commit(struct uvc_fh *handle, int rollback, 1842 struct v4l2_ext_controls *ctrls) 1843 { 1844 struct uvc_video_chain *chain = handle->chain; 1845 struct uvc_control *err_ctrl; 1846 struct uvc_entity *entity; 1847 int ret = 0; 1848 1849 /* Find the control. */ 1850 list_for_each_entry(entity, &chain->entities, chain) { 1851 ret = uvc_ctrl_commit_entity(chain->dev, entity, rollback, 1852 &err_ctrl); 1853 if (ret < 0) 1854 goto done; 1855 } 1856 1857 if (!rollback) 1858 uvc_ctrl_send_events(handle, ctrls->controls, ctrls->count); 1859 done: 1860 if (ret < 0 && ctrls) 1861 ctrls->error_idx = uvc_ctrl_find_ctrl_idx(entity, ctrls, 1862 err_ctrl); 1863 mutex_unlock(&chain->ctrl_mutex); 1864 return ret; 1865 } 1866 1867 int uvc_ctrl_get(struct uvc_video_chain *chain, 1868 struct v4l2_ext_control *xctrl) 1869 { 1870 struct uvc_control *ctrl; 1871 struct uvc_control_mapping *mapping; 1872 1873 if (__uvc_query_v4l2_class(chain, xctrl->id, 0) >= 0) 1874 return -EACCES; 1875 1876 ctrl = uvc_find_control(chain, xctrl->id, &mapping); 1877 if (ctrl == NULL) 1878 return -EINVAL; 1879 1880 return __uvc_ctrl_get(chain, ctrl, mapping, &xctrl->value); 1881 } 1882 1883 int uvc_ctrl_set(struct uvc_fh *handle, 1884 struct v4l2_ext_control *xctrl) 1885 { 1886 struct uvc_video_chain *chain = handle->chain; 1887 struct uvc_control *ctrl; 1888 struct uvc_control_mapping *mapping; 1889 s32 value; 1890 u32 step; 1891 s32 min; 1892 s32 max; 1893 int ret; 1894 1895 if (__uvc_query_v4l2_class(chain, xctrl->id, 0) >= 0) 1896 return -EACCES; 1897 1898 ctrl = uvc_find_control(chain, xctrl->id, &mapping); 1899 if (ctrl == NULL) 1900 return -EINVAL; 1901 if (!(ctrl->info.flags & UVC_CTRL_FLAG_SET_CUR)) 1902 return -EACCES; 1903 1904 /* Clamp out of range values. */ 1905 switch (mapping->v4l2_type) { 1906 case V4L2_CTRL_TYPE_INTEGER: 1907 if (!ctrl->cached) { 1908 ret = uvc_ctrl_populate_cache(chain, ctrl); 1909 if (ret < 0) 1910 return ret; 1911 } 1912 1913 min = mapping->get(mapping, UVC_GET_MIN, 1914 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MIN)); 1915 max = mapping->get(mapping, UVC_GET_MAX, 1916 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_MAX)); 1917 step = mapping->get(mapping, UVC_GET_RES, 1918 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_RES)); 1919 if (step == 0) 1920 step = 1; 1921 1922 xctrl->value = min + DIV_ROUND_CLOSEST((u32)(xctrl->value - min), 1923 step) * step; 1924 if (mapping->data_type == UVC_CTRL_DATA_TYPE_SIGNED) 1925 xctrl->value = clamp(xctrl->value, min, max); 1926 else 1927 xctrl->value = clamp_t(u32, xctrl->value, min, max); 1928 value = xctrl->value; 1929 break; 1930 1931 case V4L2_CTRL_TYPE_BITMASK: 1932 if (!ctrl->cached) { 1933 ret = uvc_ctrl_populate_cache(chain, ctrl); 1934 if (ret < 0) 1935 return ret; 1936 } 1937 1938 xctrl->value &= uvc_get_ctrl_bitmap(ctrl, mapping); 1939 value = xctrl->value; 1940 break; 1941 1942 case V4L2_CTRL_TYPE_BOOLEAN: 1943 xctrl->value = clamp(xctrl->value, 0, 1); 1944 value = xctrl->value; 1945 break; 1946 1947 case V4L2_CTRL_TYPE_MENU: 1948 if (xctrl->value < (ffs(mapping->menu_mask) - 1) || 1949 xctrl->value > (fls(mapping->menu_mask) - 1)) 1950 return -ERANGE; 1951 1952 if (!test_bit(xctrl->value, &mapping->menu_mask)) 1953 return -EINVAL; 1954 1955 value = uvc_mapping_get_menu_value(mapping, xctrl->value); 1956 1957 /* 1958 * Valid menu indices are reported by the GET_RES request for 1959 * UVC controls that support it. 1960 */ 1961 if (mapping->data_type == UVC_CTRL_DATA_TYPE_BITMASK) { 1962 if (!ctrl->cached) { 1963 ret = uvc_ctrl_populate_cache(chain, ctrl); 1964 if (ret < 0) 1965 return ret; 1966 } 1967 1968 if (!(uvc_get_ctrl_bitmap(ctrl, mapping) & value)) 1969 return -EINVAL; 1970 } 1971 1972 break; 1973 1974 default: 1975 value = xctrl->value; 1976 break; 1977 } 1978 1979 /* 1980 * If the mapping doesn't span the whole UVC control, the current value 1981 * needs to be loaded from the device to perform the read-modify-write 1982 * operation. 1983 */ 1984 if ((ctrl->info.size * 8) != mapping->size) { 1985 ret = __uvc_ctrl_load_cur(chain, ctrl); 1986 if (ret < 0) 1987 return ret; 1988 } 1989 1990 /* Backup the current value in case we need to rollback later. */ 1991 if (!ctrl->dirty) { 1992 memcpy(uvc_ctrl_data(ctrl, UVC_CTRL_DATA_BACKUP), 1993 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT), 1994 ctrl->info.size); 1995 } 1996 1997 mapping->set(mapping, value, 1998 uvc_ctrl_data(ctrl, UVC_CTRL_DATA_CURRENT)); 1999 2000 if (ctrl->info.flags & UVC_CTRL_FLAG_ASYNCHRONOUS) 2001 ctrl->handle = handle; 2002 2003 ctrl->dirty = 1; 2004 ctrl->modified = 1; 2005 return 0; 2006 } 2007 2008 /* -------------------------------------------------------------------------- 2009 * Dynamic controls 2010 */ 2011 2012 /* 2013 * Retrieve flags for a given control 2014 */ 2015 static int uvc_ctrl_get_flags(struct uvc_device *dev, 2016 const struct uvc_control *ctrl, 2017 struct uvc_control_info *info) 2018 { 2019 u8 *data; 2020 int ret; 2021 2022 data = kmalloc(1, GFP_KERNEL); 2023 if (data == NULL) 2024 return -ENOMEM; 2025 2026 if (ctrl->entity->get_info) 2027 ret = ctrl->entity->get_info(dev, ctrl->entity, 2028 ctrl->info.selector, data); 2029 else 2030 ret = uvc_query_ctrl(dev, UVC_GET_INFO, ctrl->entity->id, 2031 dev->intfnum, info->selector, data, 1); 2032 2033 if (!ret) { 2034 info->flags &= ~(UVC_CTRL_FLAG_GET_CUR | 2035 UVC_CTRL_FLAG_SET_CUR | 2036 UVC_CTRL_FLAG_AUTO_UPDATE | 2037 UVC_CTRL_FLAG_ASYNCHRONOUS); 2038 2039 info->flags |= (data[0] & UVC_CONTROL_CAP_GET ? 2040 UVC_CTRL_FLAG_GET_CUR : 0) 2041 | (data[0] & UVC_CONTROL_CAP_SET ? 2042 UVC_CTRL_FLAG_SET_CUR : 0) 2043 | (data[0] & UVC_CONTROL_CAP_AUTOUPDATE ? 2044 UVC_CTRL_FLAG_AUTO_UPDATE : 0) 2045 | (data[0] & UVC_CONTROL_CAP_ASYNCHRONOUS ? 2046 UVC_CTRL_FLAG_ASYNCHRONOUS : 0); 2047 } 2048 2049 kfree(data); 2050 return ret; 2051 } 2052 2053 static void uvc_ctrl_fixup_xu_info(struct uvc_device *dev, 2054 const struct uvc_control *ctrl, struct uvc_control_info *info) 2055 { 2056 struct uvc_ctrl_fixup { 2057 struct usb_device_id id; 2058 u8 entity; 2059 u8 selector; 2060 u8 flags; 2061 }; 2062 2063 static const struct uvc_ctrl_fixup fixups[] = { 2064 { { USB_DEVICE(0x046d, 0x08c2) }, 9, 1, 2065 UVC_CTRL_FLAG_GET_MIN | UVC_CTRL_FLAG_GET_MAX | 2066 UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_SET_CUR | 2067 UVC_CTRL_FLAG_AUTO_UPDATE }, 2068 { { USB_DEVICE(0x046d, 0x08cc) }, 9, 1, 2069 UVC_CTRL_FLAG_GET_MIN | UVC_CTRL_FLAG_GET_MAX | 2070 UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_SET_CUR | 2071 UVC_CTRL_FLAG_AUTO_UPDATE }, 2072 { { USB_DEVICE(0x046d, 0x0994) }, 9, 1, 2073 UVC_CTRL_FLAG_GET_MIN | UVC_CTRL_FLAG_GET_MAX | 2074 UVC_CTRL_FLAG_GET_DEF | UVC_CTRL_FLAG_SET_CUR | 2075 UVC_CTRL_FLAG_AUTO_UPDATE }, 2076 }; 2077 2078 unsigned int i; 2079 2080 for (i = 0; i < ARRAY_SIZE(fixups); ++i) { 2081 if (!usb_match_one_id(dev->intf, &fixups[i].id)) 2082 continue; 2083 2084 if (fixups[i].entity == ctrl->entity->id && 2085 fixups[i].selector == info->selector) { 2086 info->flags = fixups[i].flags; 2087 return; 2088 } 2089 } 2090 } 2091 2092 /* 2093 * Query control information (size and flags) for XU controls. 2094 */ 2095 static int uvc_ctrl_fill_xu_info(struct uvc_device *dev, 2096 const struct uvc_control *ctrl, struct uvc_control_info *info) 2097 { 2098 u8 *data; 2099 int ret; 2100 2101 data = kmalloc(2, GFP_KERNEL); 2102 if (data == NULL) 2103 return -ENOMEM; 2104 2105 memcpy(info->entity, ctrl->entity->guid, sizeof(info->entity)); 2106 info->index = ctrl->index; 2107 info->selector = ctrl->index + 1; 2108 2109 /* Query and verify the control length (GET_LEN) */ 2110 ret = uvc_query_ctrl(dev, UVC_GET_LEN, ctrl->entity->id, dev->intfnum, 2111 info->selector, data, 2); 2112 if (ret < 0) { 2113 uvc_dbg(dev, CONTROL, 2114 "GET_LEN failed on control %pUl/%u (%d)\n", 2115 info->entity, info->selector, ret); 2116 goto done; 2117 } 2118 2119 info->size = le16_to_cpup((__le16 *)data); 2120 2121 info->flags = UVC_CTRL_FLAG_GET_MIN | UVC_CTRL_FLAG_GET_MAX 2122 | UVC_CTRL_FLAG_GET_RES | UVC_CTRL_FLAG_GET_DEF; 2123 2124 ret = uvc_ctrl_get_flags(dev, ctrl, info); 2125 if (ret < 0) { 2126 uvc_dbg(dev, CONTROL, 2127 "Failed to get flags for control %pUl/%u (%d)\n", 2128 info->entity, info->selector, ret); 2129 goto done; 2130 } 2131 2132 uvc_ctrl_fixup_xu_info(dev, ctrl, info); 2133 2134 uvc_dbg(dev, CONTROL, 2135 "XU control %pUl/%u queried: len %u, flags { get %u set %u auto %u }\n", 2136 info->entity, info->selector, info->size, 2137 (info->flags & UVC_CTRL_FLAG_GET_CUR) ? 1 : 0, 2138 (info->flags & UVC_CTRL_FLAG_SET_CUR) ? 1 : 0, 2139 (info->flags & UVC_CTRL_FLAG_AUTO_UPDATE) ? 1 : 0); 2140 2141 done: 2142 kfree(data); 2143 return ret; 2144 } 2145 2146 static int uvc_ctrl_add_info(struct uvc_device *dev, struct uvc_control *ctrl, 2147 const struct uvc_control_info *info); 2148 2149 static int uvc_ctrl_init_xu_ctrl(struct uvc_device *dev, 2150 struct uvc_control *ctrl) 2151 { 2152 struct uvc_control_info info; 2153 int ret; 2154 2155 if (ctrl->initialized) 2156 return 0; 2157 2158 ret = uvc_ctrl_fill_xu_info(dev, ctrl, &info); 2159 if (ret < 0) 2160 return ret; 2161 2162 ret = uvc_ctrl_add_info(dev, ctrl, &info); 2163 if (ret < 0) 2164 uvc_dbg(dev, CONTROL, 2165 "Failed to initialize control %pUl/%u on device %s entity %u\n", 2166 info.entity, info.selector, dev->udev->devpath, 2167 ctrl->entity->id); 2168 2169 return ret; 2170 } 2171 2172 int uvc_xu_ctrl_query(struct uvc_video_chain *chain, 2173 struct uvc_xu_control_query *xqry) 2174 { 2175 struct uvc_entity *entity; 2176 struct uvc_control *ctrl; 2177 unsigned int i; 2178 bool found; 2179 u32 reqflags; 2180 u16 size; 2181 u8 *data = NULL; 2182 int ret; 2183 2184 /* Find the extension unit. */ 2185 found = false; 2186 list_for_each_entry(entity, &chain->entities, chain) { 2187 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT && 2188 entity->id == xqry->unit) { 2189 found = true; 2190 break; 2191 } 2192 } 2193 2194 if (!found) { 2195 uvc_dbg(chain->dev, CONTROL, "Extension unit %u not found\n", 2196 xqry->unit); 2197 return -ENOENT; 2198 } 2199 2200 /* Find the control and perform delayed initialization if needed. */ 2201 found = false; 2202 for (i = 0; i < entity->ncontrols; ++i) { 2203 ctrl = &entity->controls[i]; 2204 if (ctrl->index == xqry->selector - 1) { 2205 found = true; 2206 break; 2207 } 2208 } 2209 2210 if (!found) { 2211 uvc_dbg(chain->dev, CONTROL, "Control %pUl/%u not found\n", 2212 entity->guid, xqry->selector); 2213 return -ENOENT; 2214 } 2215 2216 if (mutex_lock_interruptible(&chain->ctrl_mutex)) 2217 return -ERESTARTSYS; 2218 2219 ret = uvc_ctrl_init_xu_ctrl(chain->dev, ctrl); 2220 if (ret < 0) { 2221 ret = -ENOENT; 2222 goto done; 2223 } 2224 2225 /* Validate the required buffer size and flags for the request */ 2226 reqflags = 0; 2227 size = ctrl->info.size; 2228 2229 switch (xqry->query) { 2230 case UVC_GET_CUR: 2231 reqflags = UVC_CTRL_FLAG_GET_CUR; 2232 break; 2233 case UVC_GET_MIN: 2234 reqflags = UVC_CTRL_FLAG_GET_MIN; 2235 break; 2236 case UVC_GET_MAX: 2237 reqflags = UVC_CTRL_FLAG_GET_MAX; 2238 break; 2239 case UVC_GET_DEF: 2240 reqflags = UVC_CTRL_FLAG_GET_DEF; 2241 break; 2242 case UVC_GET_RES: 2243 reqflags = UVC_CTRL_FLAG_GET_RES; 2244 break; 2245 case UVC_SET_CUR: 2246 reqflags = UVC_CTRL_FLAG_SET_CUR; 2247 break; 2248 case UVC_GET_LEN: 2249 size = 2; 2250 break; 2251 case UVC_GET_INFO: 2252 size = 1; 2253 break; 2254 default: 2255 ret = -EINVAL; 2256 goto done; 2257 } 2258 2259 if (size != xqry->size) { 2260 ret = -ENOBUFS; 2261 goto done; 2262 } 2263 2264 if (reqflags && !(ctrl->info.flags & reqflags)) { 2265 ret = -EBADRQC; 2266 goto done; 2267 } 2268 2269 data = kmalloc(size, GFP_KERNEL); 2270 if (data == NULL) { 2271 ret = -ENOMEM; 2272 goto done; 2273 } 2274 2275 if (xqry->query == UVC_SET_CUR && 2276 copy_from_user(data, xqry->data, size)) { 2277 ret = -EFAULT; 2278 goto done; 2279 } 2280 2281 ret = uvc_query_ctrl(chain->dev, xqry->query, xqry->unit, 2282 chain->dev->intfnum, xqry->selector, data, size); 2283 if (ret < 0) 2284 goto done; 2285 2286 if (xqry->query != UVC_SET_CUR && 2287 copy_to_user(xqry->data, data, size)) 2288 ret = -EFAULT; 2289 done: 2290 kfree(data); 2291 mutex_unlock(&chain->ctrl_mutex); 2292 return ret; 2293 } 2294 2295 /* -------------------------------------------------------------------------- 2296 * Suspend/resume 2297 */ 2298 2299 /* 2300 * Restore control values after resume, skipping controls that haven't been 2301 * changed. 2302 * 2303 * TODO 2304 * - Don't restore modified controls that are back to their default value. 2305 * - Handle restore order (Auto-Exposure Mode should be restored before 2306 * Exposure Time). 2307 */ 2308 int uvc_ctrl_restore_values(struct uvc_device *dev) 2309 { 2310 struct uvc_control *ctrl; 2311 struct uvc_entity *entity; 2312 unsigned int i; 2313 int ret; 2314 2315 /* Walk the entities list and restore controls when possible. */ 2316 list_for_each_entry(entity, &dev->entities, list) { 2317 2318 for (i = 0; i < entity->ncontrols; ++i) { 2319 ctrl = &entity->controls[i]; 2320 2321 if (!ctrl->initialized || !ctrl->modified || 2322 (ctrl->info.flags & UVC_CTRL_FLAG_RESTORE) == 0) 2323 continue; 2324 dev_dbg(&dev->udev->dev, 2325 "restoring control %pUl/%u/%u\n", 2326 ctrl->info.entity, ctrl->info.index, 2327 ctrl->info.selector); 2328 ctrl->dirty = 1; 2329 } 2330 2331 ret = uvc_ctrl_commit_entity(dev, entity, 0, NULL); 2332 if (ret < 0) 2333 return ret; 2334 } 2335 2336 return 0; 2337 } 2338 2339 /* -------------------------------------------------------------------------- 2340 * Control and mapping handling 2341 */ 2342 2343 /* 2344 * Add control information to a given control. 2345 */ 2346 static int uvc_ctrl_add_info(struct uvc_device *dev, struct uvc_control *ctrl, 2347 const struct uvc_control_info *info) 2348 { 2349 ctrl->info = *info; 2350 INIT_LIST_HEAD(&ctrl->info.mappings); 2351 2352 /* Allocate an array to save control values (cur, def, max, etc.) */ 2353 ctrl->uvc_data = kzalloc(ctrl->info.size * UVC_CTRL_DATA_LAST + 1, 2354 GFP_KERNEL); 2355 if (!ctrl->uvc_data) 2356 return -ENOMEM; 2357 2358 ctrl->initialized = 1; 2359 2360 uvc_dbg(dev, CONTROL, "Added control %pUl/%u to device %s entity %u\n", 2361 ctrl->info.entity, ctrl->info.selector, dev->udev->devpath, 2362 ctrl->entity->id); 2363 2364 return 0; 2365 } 2366 2367 /* 2368 * Add a control mapping to a given control. 2369 */ 2370 static int __uvc_ctrl_add_mapping(struct uvc_video_chain *chain, 2371 struct uvc_control *ctrl, const struct uvc_control_mapping *mapping) 2372 { 2373 struct uvc_control_mapping *map; 2374 unsigned int size; 2375 unsigned int i; 2376 2377 /* 2378 * Most mappings come from static kernel data, and need to be duplicated. 2379 * Mappings that come from userspace will be unnecessarily duplicated, 2380 * this could be optimized. 2381 */ 2382 map = kmemdup(mapping, sizeof(*mapping), GFP_KERNEL); 2383 if (!map) 2384 return -ENOMEM; 2385 2386 map->name = NULL; 2387 map->menu_names = NULL; 2388 map->menu_mapping = NULL; 2389 2390 /* For UVCIOC_CTRL_MAP custom control */ 2391 if (mapping->name) { 2392 map->name = kstrdup(mapping->name, GFP_KERNEL); 2393 if (!map->name) 2394 goto err_nomem; 2395 } 2396 2397 INIT_LIST_HEAD(&map->ev_subs); 2398 2399 if (mapping->menu_mapping && mapping->menu_mask) { 2400 size = sizeof(mapping->menu_mapping[0]) 2401 * fls(mapping->menu_mask); 2402 map->menu_mapping = kmemdup(mapping->menu_mapping, size, 2403 GFP_KERNEL); 2404 if (!map->menu_mapping) 2405 goto err_nomem; 2406 } 2407 if (mapping->menu_names && mapping->menu_mask) { 2408 size = sizeof(mapping->menu_names[0]) 2409 * fls(mapping->menu_mask); 2410 map->menu_names = kmemdup(mapping->menu_names, size, 2411 GFP_KERNEL); 2412 if (!map->menu_names) 2413 goto err_nomem; 2414 } 2415 2416 if (map->get == NULL) 2417 map->get = uvc_get_le_value; 2418 if (map->set == NULL) 2419 map->set = uvc_set_le_value; 2420 2421 for (i = 0; i < ARRAY_SIZE(uvc_control_classes); i++) { 2422 if (V4L2_CTRL_ID2WHICH(uvc_control_classes[i]) == 2423 V4L2_CTRL_ID2WHICH(map->id)) { 2424 chain->ctrl_class_bitmap |= BIT(i); 2425 break; 2426 } 2427 } 2428 2429 list_add_tail(&map->list, &ctrl->info.mappings); 2430 uvc_dbg(chain->dev, CONTROL, "Adding mapping '%s' to control %pUl/%u\n", 2431 uvc_map_get_name(map), ctrl->info.entity, 2432 ctrl->info.selector); 2433 2434 return 0; 2435 2436 err_nomem: 2437 kfree(map->menu_names); 2438 kfree(map->menu_mapping); 2439 kfree(map->name); 2440 kfree(map); 2441 return -ENOMEM; 2442 } 2443 2444 int uvc_ctrl_add_mapping(struct uvc_video_chain *chain, 2445 const struct uvc_control_mapping *mapping) 2446 { 2447 struct uvc_device *dev = chain->dev; 2448 struct uvc_control_mapping *map; 2449 struct uvc_entity *entity; 2450 struct uvc_control *ctrl; 2451 int found = 0; 2452 int ret; 2453 2454 if (mapping->id & ~V4L2_CTRL_ID_MASK) { 2455 uvc_dbg(dev, CONTROL, 2456 "Can't add mapping '%s', control id 0x%08x is invalid\n", 2457 uvc_map_get_name(mapping), mapping->id); 2458 return -EINVAL; 2459 } 2460 2461 /* Search for the matching (GUID/CS) control on the current chain */ 2462 list_for_each_entry(entity, &chain->entities, chain) { 2463 unsigned int i; 2464 2465 if (UVC_ENTITY_TYPE(entity) != UVC_VC_EXTENSION_UNIT || 2466 !uvc_entity_match_guid(entity, mapping->entity)) 2467 continue; 2468 2469 for (i = 0; i < entity->ncontrols; ++i) { 2470 ctrl = &entity->controls[i]; 2471 if (ctrl->index == mapping->selector - 1) { 2472 found = 1; 2473 break; 2474 } 2475 } 2476 2477 if (found) 2478 break; 2479 } 2480 if (!found) 2481 return -ENOENT; 2482 2483 if (mutex_lock_interruptible(&chain->ctrl_mutex)) 2484 return -ERESTARTSYS; 2485 2486 /* Perform delayed initialization of XU controls */ 2487 ret = uvc_ctrl_init_xu_ctrl(dev, ctrl); 2488 if (ret < 0) { 2489 ret = -ENOENT; 2490 goto done; 2491 } 2492 2493 /* Validate the user-provided bit-size and offset */ 2494 if (mapping->size > 32 || 2495 mapping->offset + mapping->size > ctrl->info.size * 8) { 2496 ret = -EINVAL; 2497 goto done; 2498 } 2499 2500 list_for_each_entry(map, &ctrl->info.mappings, list) { 2501 if (mapping->id == map->id) { 2502 uvc_dbg(dev, CONTROL, 2503 "Can't add mapping '%s', control id 0x%08x already exists\n", 2504 uvc_map_get_name(mapping), mapping->id); 2505 ret = -EEXIST; 2506 goto done; 2507 } 2508 } 2509 2510 /* Prevent excess memory consumption */ 2511 if (atomic_inc_return(&dev->nmappings) > UVC_MAX_CONTROL_MAPPINGS) { 2512 atomic_dec(&dev->nmappings); 2513 uvc_dbg(dev, CONTROL, 2514 "Can't add mapping '%s', maximum mappings count (%u) exceeded\n", 2515 uvc_map_get_name(mapping), UVC_MAX_CONTROL_MAPPINGS); 2516 ret = -ENOMEM; 2517 goto done; 2518 } 2519 2520 ret = __uvc_ctrl_add_mapping(chain, ctrl, mapping); 2521 if (ret < 0) 2522 atomic_dec(&dev->nmappings); 2523 2524 done: 2525 mutex_unlock(&chain->ctrl_mutex); 2526 return ret; 2527 } 2528 2529 /* 2530 * Prune an entity of its bogus controls using a blacklist. Bogus controls 2531 * are currently the ones that crash the camera or unconditionally return an 2532 * error when queried. 2533 */ 2534 static void uvc_ctrl_prune_entity(struct uvc_device *dev, 2535 struct uvc_entity *entity) 2536 { 2537 struct uvc_ctrl_blacklist { 2538 struct usb_device_id id; 2539 u8 index; 2540 }; 2541 2542 static const struct uvc_ctrl_blacklist processing_blacklist[] = { 2543 { { USB_DEVICE(0x13d3, 0x509b) }, 9 }, /* Gain */ 2544 { { USB_DEVICE(0x1c4f, 0x3000) }, 6 }, /* WB Temperature */ 2545 { { USB_DEVICE(0x5986, 0x0241) }, 2 }, /* Hue */ 2546 }; 2547 static const struct uvc_ctrl_blacklist camera_blacklist[] = { 2548 { { USB_DEVICE(0x06f8, 0x3005) }, 9 }, /* Zoom, Absolute */ 2549 }; 2550 2551 const struct uvc_ctrl_blacklist *blacklist; 2552 unsigned int size; 2553 unsigned int count; 2554 unsigned int i; 2555 u8 *controls; 2556 2557 switch (UVC_ENTITY_TYPE(entity)) { 2558 case UVC_VC_PROCESSING_UNIT: 2559 blacklist = processing_blacklist; 2560 count = ARRAY_SIZE(processing_blacklist); 2561 controls = entity->processing.bmControls; 2562 size = entity->processing.bControlSize; 2563 break; 2564 2565 case UVC_ITT_CAMERA: 2566 blacklist = camera_blacklist; 2567 count = ARRAY_SIZE(camera_blacklist); 2568 controls = entity->camera.bmControls; 2569 size = entity->camera.bControlSize; 2570 break; 2571 2572 default: 2573 return; 2574 } 2575 2576 for (i = 0; i < count; ++i) { 2577 if (!usb_match_one_id(dev->intf, &blacklist[i].id)) 2578 continue; 2579 2580 if (blacklist[i].index >= 8 * size || 2581 !uvc_test_bit(controls, blacklist[i].index)) 2582 continue; 2583 2584 uvc_dbg(dev, CONTROL, 2585 "%u/%u control is black listed, removing it\n", 2586 entity->id, blacklist[i].index); 2587 2588 uvc_clear_bit(controls, blacklist[i].index); 2589 } 2590 } 2591 2592 /* 2593 * Add control information and hardcoded stock control mappings to the given 2594 * device. 2595 */ 2596 static void uvc_ctrl_init_ctrl(struct uvc_video_chain *chain, 2597 struct uvc_control *ctrl) 2598 { 2599 const struct uvc_control_mapping **mappings; 2600 unsigned int i; 2601 2602 /* 2603 * XU controls initialization requires querying the device for control 2604 * information. As some buggy UVC devices will crash when queried 2605 * repeatedly in a tight loop, delay XU controls initialization until 2606 * first use. 2607 */ 2608 if (UVC_ENTITY_TYPE(ctrl->entity) == UVC_VC_EXTENSION_UNIT) 2609 return; 2610 2611 for (i = 0; i < ARRAY_SIZE(uvc_ctrls); ++i) { 2612 const struct uvc_control_info *info = &uvc_ctrls[i]; 2613 2614 if (uvc_entity_match_guid(ctrl->entity, info->entity) && 2615 ctrl->index == info->index) { 2616 uvc_ctrl_add_info(chain->dev, ctrl, info); 2617 /* 2618 * Retrieve control flags from the device. Ignore errors 2619 * and work with default flag values from the uvc_ctrl 2620 * array when the device doesn't properly implement 2621 * GET_INFO on standard controls. 2622 */ 2623 uvc_ctrl_get_flags(chain->dev, ctrl, &ctrl->info); 2624 break; 2625 } 2626 } 2627 2628 if (!ctrl->initialized) 2629 return; 2630 2631 /* 2632 * First check if the device provides a custom mapping for this control, 2633 * used to override standard mappings for non-conformant devices. Don't 2634 * process standard mappings if a custom mapping is found. This 2635 * mechanism doesn't support combining standard and custom mappings for 2636 * a single control. 2637 */ 2638 if (chain->dev->info->mappings) { 2639 bool custom = false; 2640 2641 for (i = 0; chain->dev->info->mappings[i]; ++i) { 2642 const struct uvc_control_mapping *mapping = 2643 chain->dev->info->mappings[i]; 2644 2645 if (uvc_entity_match_guid(ctrl->entity, mapping->entity) && 2646 ctrl->info.selector == mapping->selector) { 2647 __uvc_ctrl_add_mapping(chain, ctrl, mapping); 2648 custom = true; 2649 } 2650 } 2651 2652 if (custom) 2653 return; 2654 } 2655 2656 /* Process common mappings next. */ 2657 for (i = 0; i < ARRAY_SIZE(uvc_ctrl_mappings); ++i) { 2658 const struct uvc_control_mapping *mapping = &uvc_ctrl_mappings[i]; 2659 2660 if (uvc_entity_match_guid(ctrl->entity, mapping->entity) && 2661 ctrl->info.selector == mapping->selector) 2662 __uvc_ctrl_add_mapping(chain, ctrl, mapping); 2663 } 2664 2665 /* Finally process version-specific mappings. */ 2666 mappings = chain->dev->uvc_version < 0x0150 2667 ? uvc_ctrl_mappings_uvc11 : uvc_ctrl_mappings_uvc15; 2668 2669 for (i = 0; mappings[i]; ++i) { 2670 const struct uvc_control_mapping *mapping = mappings[i]; 2671 2672 if (uvc_entity_match_guid(ctrl->entity, mapping->entity) && 2673 ctrl->info.selector == mapping->selector) 2674 __uvc_ctrl_add_mapping(chain, ctrl, mapping); 2675 } 2676 } 2677 2678 /* 2679 * Initialize device controls. 2680 */ 2681 static int uvc_ctrl_init_chain(struct uvc_video_chain *chain) 2682 { 2683 struct uvc_entity *entity; 2684 unsigned int i; 2685 2686 /* Walk the entities list and instantiate controls */ 2687 list_for_each_entry(entity, &chain->entities, chain) { 2688 struct uvc_control *ctrl; 2689 unsigned int bControlSize = 0, ncontrols; 2690 u8 *bmControls = NULL; 2691 2692 if (UVC_ENTITY_TYPE(entity) == UVC_VC_EXTENSION_UNIT) { 2693 bmControls = entity->extension.bmControls; 2694 bControlSize = entity->extension.bControlSize; 2695 } else if (UVC_ENTITY_TYPE(entity) == UVC_VC_PROCESSING_UNIT) { 2696 bmControls = entity->processing.bmControls; 2697 bControlSize = entity->processing.bControlSize; 2698 } else if (UVC_ENTITY_TYPE(entity) == UVC_ITT_CAMERA) { 2699 bmControls = entity->camera.bmControls; 2700 bControlSize = entity->camera.bControlSize; 2701 } else if (UVC_ENTITY_TYPE(entity) == UVC_EXT_GPIO_UNIT) { 2702 bmControls = entity->gpio.bmControls; 2703 bControlSize = entity->gpio.bControlSize; 2704 } 2705 2706 /* Remove bogus/blacklisted controls */ 2707 uvc_ctrl_prune_entity(chain->dev, entity); 2708 2709 /* Count supported controls and allocate the controls array */ 2710 ncontrols = memweight(bmControls, bControlSize); 2711 if (ncontrols == 0) 2712 continue; 2713 2714 entity->controls = kcalloc(ncontrols, sizeof(*ctrl), 2715 GFP_KERNEL); 2716 if (entity->controls == NULL) 2717 return -ENOMEM; 2718 entity->ncontrols = ncontrols; 2719 2720 /* Initialize all supported controls */ 2721 ctrl = entity->controls; 2722 for (i = 0; i < bControlSize * 8; ++i) { 2723 if (uvc_test_bit(bmControls, i) == 0) 2724 continue; 2725 2726 ctrl->entity = entity; 2727 ctrl->index = i; 2728 2729 uvc_ctrl_init_ctrl(chain, ctrl); 2730 ctrl++; 2731 } 2732 } 2733 2734 return 0; 2735 } 2736 2737 int uvc_ctrl_init_device(struct uvc_device *dev) 2738 { 2739 struct uvc_video_chain *chain; 2740 int ret; 2741 2742 INIT_WORK(&dev->async_ctrl.work, uvc_ctrl_status_event_work); 2743 2744 list_for_each_entry(chain, &dev->chains, list) { 2745 ret = uvc_ctrl_init_chain(chain); 2746 if (ret) 2747 return ret; 2748 } 2749 2750 return 0; 2751 } 2752 2753 /* 2754 * Cleanup device controls. 2755 */ 2756 static void uvc_ctrl_cleanup_mappings(struct uvc_device *dev, 2757 struct uvc_control *ctrl) 2758 { 2759 struct uvc_control_mapping *mapping, *nm; 2760 2761 list_for_each_entry_safe(mapping, nm, &ctrl->info.mappings, list) { 2762 list_del(&mapping->list); 2763 kfree(mapping->menu_names); 2764 kfree(mapping->menu_mapping); 2765 kfree(mapping->name); 2766 kfree(mapping); 2767 } 2768 } 2769 2770 void uvc_ctrl_cleanup_device(struct uvc_device *dev) 2771 { 2772 struct uvc_entity *entity; 2773 unsigned int i; 2774 2775 /* Can be uninitialized if we are aborting on probe error. */ 2776 if (dev->async_ctrl.work.func) 2777 cancel_work_sync(&dev->async_ctrl.work); 2778 2779 /* Free controls and control mappings for all entities. */ 2780 list_for_each_entry(entity, &dev->entities, list) { 2781 for (i = 0; i < entity->ncontrols; ++i) { 2782 struct uvc_control *ctrl = &entity->controls[i]; 2783 2784 if (!ctrl->initialized) 2785 continue; 2786 2787 uvc_ctrl_cleanup_mappings(dev, ctrl); 2788 kfree(ctrl->uvc_data); 2789 } 2790 2791 kfree(entity->controls); 2792 } 2793 } 2794