1 /* 2 * Copyright (c) 2016 Intel Corporation 3 * 4 * Permission to use, copy, modify, distribute, and sell this software and its 5 * documentation for any purpose is hereby granted without fee, provided that 6 * the above copyright notice appear in all copies and that both that copyright 7 * notice and this permission notice appear in supporting documentation, and 8 * that the name of the copyright holders not be used in advertising or 9 * publicity pertaining to distribution of the software without specific, 10 * written prior permission. The copyright holders make no representations 11 * about the suitability of this software for any purpose. It is provided "as 12 * is" without express or implied warranty. 13 * 14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 20 * OF THIS SOFTWARE. 21 */ 22 23 #include <drm/drm_connector.h> 24 #include <drm/drm_edid.h> 25 #include <drm/drm_encoder.h> 26 #include <drm/drm_utils.h> 27 #include <drm/drm_print.h> 28 #include <drm/drm_drv.h> 29 #include <drm/drm_file.h> 30 31 #include <linux/uaccess.h> 32 33 #include "drm_crtc_internal.h" 34 #include "drm_internal.h" 35 36 /** 37 * DOC: overview 38 * 39 * In DRM connectors are the general abstraction for display sinks, and include 40 * als fixed panels or anything else that can display pixels in some form. As 41 * opposed to all other KMS objects representing hardware (like CRTC, encoder or 42 * plane abstractions) connectors can be hotplugged and unplugged at runtime. 43 * Hence they are reference-counted using drm_connector_get() and 44 * drm_connector_put(). 45 * 46 * KMS driver must create, initialize, register and attach at a &struct 47 * drm_connector for each such sink. The instance is created as other KMS 48 * objects and initialized by setting the following fields. The connector is 49 * initialized with a call to drm_connector_init() with a pointer to the 50 * &struct drm_connector_funcs and a connector type, and then exposed to 51 * userspace with a call to drm_connector_register(). 52 * 53 * Connectors must be attached to an encoder to be used. For devices that map 54 * connectors to encoders 1:1, the connector should be attached at 55 * initialization time with a call to drm_connector_attach_encoder(). The 56 * driver must also set the &drm_connector.encoder field to point to the 57 * attached encoder. 58 * 59 * For connectors which are not fixed (like built-in panels) the driver needs to 60 * support hotplug notifications. The simplest way to do that is by using the 61 * probe helpers, see drm_kms_helper_poll_init() for connectors which don't have 62 * hardware support for hotplug interrupts. Connectors with hardware hotplug 63 * support can instead use e.g. drm_helper_hpd_irq_event(). 64 */ 65 66 struct drm_conn_prop_enum_list { 67 int type; 68 const char *name; 69 struct ida ida; 70 }; 71 72 /* 73 * Connector and encoder types. 74 */ 75 static struct drm_conn_prop_enum_list drm_connector_enum_list[] = { 76 { DRM_MODE_CONNECTOR_Unknown, "Unknown" }, 77 { DRM_MODE_CONNECTOR_VGA, "VGA" }, 78 { DRM_MODE_CONNECTOR_DVII, "DVI-I" }, 79 { DRM_MODE_CONNECTOR_DVID, "DVI-D" }, 80 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" }, 81 { DRM_MODE_CONNECTOR_Composite, "Composite" }, 82 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" }, 83 { DRM_MODE_CONNECTOR_LVDS, "LVDS" }, 84 { DRM_MODE_CONNECTOR_Component, "Component" }, 85 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" }, 86 { DRM_MODE_CONNECTOR_DisplayPort, "DP" }, 87 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" }, 88 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" }, 89 { DRM_MODE_CONNECTOR_TV, "TV" }, 90 { DRM_MODE_CONNECTOR_eDP, "eDP" }, 91 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" }, 92 { DRM_MODE_CONNECTOR_DSI, "DSI" }, 93 { DRM_MODE_CONNECTOR_DPI, "DPI" }, 94 { DRM_MODE_CONNECTOR_WRITEBACK, "Writeback" }, 95 }; 96 97 void drm_connector_ida_init(void) 98 { 99 int i; 100 101 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++) 102 ida_init(&drm_connector_enum_list[i].ida); 103 } 104 105 void drm_connector_ida_destroy(void) 106 { 107 int i; 108 109 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++) 110 ida_destroy(&drm_connector_enum_list[i].ida); 111 } 112 113 /** 114 * drm_connector_get_cmdline_mode - reads the user's cmdline mode 115 * @connector: connector to quwery 116 * 117 * The kernel supports per-connector configuration of its consoles through 118 * use of the video= parameter. This function parses that option and 119 * extracts the user's specified mode (or enable/disable status) for a 120 * particular connector. This is typically only used during the early fbdev 121 * setup. 122 */ 123 static void drm_connector_get_cmdline_mode(struct drm_connector *connector) 124 { 125 struct drm_cmdline_mode *mode = &connector->cmdline_mode; 126 char *option = NULL; 127 128 if (fb_get_options(connector->name, &option)) 129 return; 130 131 if (!drm_mode_parse_command_line_for_connector(option, 132 connector, 133 mode)) 134 return; 135 136 if (mode->force) { 137 DRM_INFO("forcing %s connector %s\n", connector->name, 138 drm_get_connector_force_name(mode->force)); 139 connector->force = mode->force; 140 } 141 142 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n", 143 connector->name, 144 mode->xres, mode->yres, 145 mode->refresh_specified ? mode->refresh : 60, 146 mode->rb ? " reduced blanking" : "", 147 mode->margins ? " with margins" : "", 148 mode->interlace ? " interlaced" : ""); 149 } 150 151 static void drm_connector_free(struct kref *kref) 152 { 153 struct drm_connector *connector = 154 container_of(kref, struct drm_connector, base.refcount); 155 struct drm_device *dev = connector->dev; 156 157 drm_mode_object_unregister(dev, &connector->base); 158 connector->funcs->destroy(connector); 159 } 160 161 void drm_connector_free_work_fn(struct work_struct *work) 162 { 163 struct drm_connector *connector, *n; 164 struct drm_device *dev = 165 container_of(work, struct drm_device, mode_config.connector_free_work); 166 struct drm_mode_config *config = &dev->mode_config; 167 unsigned long flags; 168 struct llist_node *freed; 169 170 spin_lock_irqsave(&config->connector_list_lock, flags); 171 freed = llist_del_all(&config->connector_free_list); 172 spin_unlock_irqrestore(&config->connector_list_lock, flags); 173 174 llist_for_each_entry_safe(connector, n, freed, free_node) { 175 drm_mode_object_unregister(dev, &connector->base); 176 connector->funcs->destroy(connector); 177 } 178 } 179 180 /** 181 * drm_connector_init - Init a preallocated connector 182 * @dev: DRM device 183 * @connector: the connector to init 184 * @funcs: callbacks for this connector 185 * @connector_type: user visible type of the connector 186 * 187 * Initialises a preallocated connector. Connectors should be 188 * subclassed as part of driver connector objects. 189 * 190 * Returns: 191 * Zero on success, error code on failure. 192 */ 193 int drm_connector_init(struct drm_device *dev, 194 struct drm_connector *connector, 195 const struct drm_connector_funcs *funcs, 196 int connector_type) 197 { 198 struct drm_mode_config *config = &dev->mode_config; 199 int ret; 200 struct ida *connector_ida = 201 &drm_connector_enum_list[connector_type].ida; 202 203 WARN_ON(drm_drv_uses_atomic_modeset(dev) && 204 (!funcs->atomic_destroy_state || 205 !funcs->atomic_duplicate_state)); 206 207 ret = __drm_mode_object_add(dev, &connector->base, 208 DRM_MODE_OBJECT_CONNECTOR, 209 false, drm_connector_free); 210 if (ret) 211 return ret; 212 213 connector->base.properties = &connector->properties; 214 connector->dev = dev; 215 connector->funcs = funcs; 216 217 /* connector index is used with 32bit bitmasks */ 218 ret = ida_simple_get(&config->connector_ida, 0, 32, GFP_KERNEL); 219 if (ret < 0) { 220 DRM_DEBUG_KMS("Failed to allocate %s connector index: %d\n", 221 drm_connector_enum_list[connector_type].name, 222 ret); 223 goto out_put; 224 } 225 connector->index = ret; 226 ret = 0; 227 228 connector->connector_type = connector_type; 229 connector->connector_type_id = 230 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL); 231 if (connector->connector_type_id < 0) { 232 ret = connector->connector_type_id; 233 goto out_put_id; 234 } 235 connector->name = 236 kasprintf(GFP_KERNEL, "%s-%d", 237 drm_connector_enum_list[connector_type].name, 238 connector->connector_type_id); 239 if (!connector->name) { 240 ret = -ENOMEM; 241 goto out_put_type_id; 242 } 243 244 INIT_LIST_HEAD(&connector->probed_modes); 245 INIT_LIST_HEAD(&connector->modes); 246 mutex_init(&connector->mutex); 247 connector->edid_blob_ptr = NULL; 248 connector->status = connector_status_unknown; 249 connector->display_info.panel_orientation = 250 DRM_MODE_PANEL_ORIENTATION_UNKNOWN; 251 252 drm_connector_get_cmdline_mode(connector); 253 254 /* We should add connectors at the end to avoid upsetting the connector 255 * index too much. */ 256 spin_lock_irq(&config->connector_list_lock); 257 list_add_tail(&connector->head, &config->connector_list); 258 config->num_connector++; 259 spin_unlock_irq(&config->connector_list_lock); 260 261 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL && 262 connector_type != DRM_MODE_CONNECTOR_WRITEBACK) 263 drm_object_attach_property(&connector->base, 264 config->edid_property, 265 0); 266 267 drm_object_attach_property(&connector->base, 268 config->dpms_property, 0); 269 270 drm_object_attach_property(&connector->base, 271 config->link_status_property, 272 0); 273 274 drm_object_attach_property(&connector->base, 275 config->non_desktop_property, 276 0); 277 278 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) { 279 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0); 280 } 281 282 connector->debugfs_entry = NULL; 283 out_put_type_id: 284 if (ret) 285 ida_simple_remove(connector_ida, connector->connector_type_id); 286 out_put_id: 287 if (ret) 288 ida_simple_remove(&config->connector_ida, connector->index); 289 out_put: 290 if (ret) 291 drm_mode_object_unregister(dev, &connector->base); 292 293 return ret; 294 } 295 EXPORT_SYMBOL(drm_connector_init); 296 297 /** 298 * drm_connector_attach_encoder - attach a connector to an encoder 299 * @connector: connector to attach 300 * @encoder: encoder to attach @connector to 301 * 302 * This function links up a connector to an encoder. Note that the routing 303 * restrictions between encoders and crtcs are exposed to userspace through the 304 * possible_clones and possible_crtcs bitmasks. 305 * 306 * Returns: 307 * Zero on success, negative errno on failure. 308 */ 309 int drm_connector_attach_encoder(struct drm_connector *connector, 310 struct drm_encoder *encoder) 311 { 312 int i; 313 314 /* 315 * In the past, drivers have attempted to model the static association 316 * of connector to encoder in simple connector/encoder devices using a 317 * direct assignment of connector->encoder = encoder. This connection 318 * is a logical one and the responsibility of the core, so drivers are 319 * expected not to mess with this. 320 * 321 * Note that the error return should've been enough here, but a large 322 * majority of drivers ignores the return value, so add in a big WARN 323 * to get people's attention. 324 */ 325 if (WARN_ON(connector->encoder)) 326 return -EINVAL; 327 328 for (i = 0; i < ARRAY_SIZE(connector->encoder_ids); i++) { 329 if (connector->encoder_ids[i] == 0) { 330 connector->encoder_ids[i] = encoder->base.id; 331 return 0; 332 } 333 } 334 return -ENOMEM; 335 } 336 EXPORT_SYMBOL(drm_connector_attach_encoder); 337 338 /** 339 * drm_connector_has_possible_encoder - check if the connector and encoder are assosicated with each other 340 * @connector: the connector 341 * @encoder: the encoder 342 * 343 * Returns: 344 * True if @encoder is one of the possible encoders for @connector. 345 */ 346 bool drm_connector_has_possible_encoder(struct drm_connector *connector, 347 struct drm_encoder *encoder) 348 { 349 struct drm_encoder *enc; 350 int i; 351 352 drm_connector_for_each_possible_encoder(connector, enc, i) { 353 if (enc == encoder) 354 return true; 355 } 356 357 return false; 358 } 359 EXPORT_SYMBOL(drm_connector_has_possible_encoder); 360 361 static void drm_mode_remove(struct drm_connector *connector, 362 struct drm_display_mode *mode) 363 { 364 list_del(&mode->head); 365 drm_mode_destroy(connector->dev, mode); 366 } 367 368 /** 369 * drm_connector_cleanup - cleans up an initialised connector 370 * @connector: connector to cleanup 371 * 372 * Cleans up the connector but doesn't free the object. 373 */ 374 void drm_connector_cleanup(struct drm_connector *connector) 375 { 376 struct drm_device *dev = connector->dev; 377 struct drm_display_mode *mode, *t; 378 379 /* The connector should have been removed from userspace long before 380 * it is finally destroyed. 381 */ 382 if (WARN_ON(connector->registration_state == 383 DRM_CONNECTOR_REGISTERED)) 384 drm_connector_unregister(connector); 385 386 if (connector->tile_group) { 387 drm_mode_put_tile_group(dev, connector->tile_group); 388 connector->tile_group = NULL; 389 } 390 391 list_for_each_entry_safe(mode, t, &connector->probed_modes, head) 392 drm_mode_remove(connector, mode); 393 394 list_for_each_entry_safe(mode, t, &connector->modes, head) 395 drm_mode_remove(connector, mode); 396 397 ida_simple_remove(&drm_connector_enum_list[connector->connector_type].ida, 398 connector->connector_type_id); 399 400 ida_simple_remove(&dev->mode_config.connector_ida, 401 connector->index); 402 403 kfree(connector->display_info.bus_formats); 404 drm_mode_object_unregister(dev, &connector->base); 405 kfree(connector->name); 406 connector->name = NULL; 407 spin_lock_irq(&dev->mode_config.connector_list_lock); 408 list_del(&connector->head); 409 dev->mode_config.num_connector--; 410 spin_unlock_irq(&dev->mode_config.connector_list_lock); 411 412 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state); 413 if (connector->state && connector->funcs->atomic_destroy_state) 414 connector->funcs->atomic_destroy_state(connector, 415 connector->state); 416 417 mutex_destroy(&connector->mutex); 418 419 memset(connector, 0, sizeof(*connector)); 420 } 421 EXPORT_SYMBOL(drm_connector_cleanup); 422 423 /** 424 * drm_connector_register - register a connector 425 * @connector: the connector to register 426 * 427 * Register userspace interfaces for a connector 428 * 429 * Returns: 430 * Zero on success, error code on failure. 431 */ 432 int drm_connector_register(struct drm_connector *connector) 433 { 434 int ret = 0; 435 436 if (!connector->dev->registered) 437 return 0; 438 439 mutex_lock(&connector->mutex); 440 if (connector->registration_state != DRM_CONNECTOR_INITIALIZING) 441 goto unlock; 442 443 ret = drm_sysfs_connector_add(connector); 444 if (ret) 445 goto unlock; 446 447 ret = drm_debugfs_connector_add(connector); 448 if (ret) { 449 goto err_sysfs; 450 } 451 452 if (connector->funcs->late_register) { 453 ret = connector->funcs->late_register(connector); 454 if (ret) 455 goto err_debugfs; 456 } 457 458 drm_mode_object_register(connector->dev, &connector->base); 459 460 connector->registration_state = DRM_CONNECTOR_REGISTERED; 461 goto unlock; 462 463 err_debugfs: 464 drm_debugfs_connector_remove(connector); 465 err_sysfs: 466 drm_sysfs_connector_remove(connector); 467 unlock: 468 mutex_unlock(&connector->mutex); 469 return ret; 470 } 471 EXPORT_SYMBOL(drm_connector_register); 472 473 /** 474 * drm_connector_unregister - unregister a connector 475 * @connector: the connector to unregister 476 * 477 * Unregister userspace interfaces for a connector 478 */ 479 void drm_connector_unregister(struct drm_connector *connector) 480 { 481 mutex_lock(&connector->mutex); 482 if (connector->registration_state != DRM_CONNECTOR_REGISTERED) { 483 mutex_unlock(&connector->mutex); 484 return; 485 } 486 487 if (connector->funcs->early_unregister) 488 connector->funcs->early_unregister(connector); 489 490 drm_sysfs_connector_remove(connector); 491 drm_debugfs_connector_remove(connector); 492 493 connector->registration_state = DRM_CONNECTOR_UNREGISTERED; 494 mutex_unlock(&connector->mutex); 495 } 496 EXPORT_SYMBOL(drm_connector_unregister); 497 498 void drm_connector_unregister_all(struct drm_device *dev) 499 { 500 struct drm_connector *connector; 501 struct drm_connector_list_iter conn_iter; 502 503 drm_connector_list_iter_begin(dev, &conn_iter); 504 drm_for_each_connector_iter(connector, &conn_iter) 505 drm_connector_unregister(connector); 506 drm_connector_list_iter_end(&conn_iter); 507 } 508 509 int drm_connector_register_all(struct drm_device *dev) 510 { 511 struct drm_connector *connector; 512 struct drm_connector_list_iter conn_iter; 513 int ret = 0; 514 515 drm_connector_list_iter_begin(dev, &conn_iter); 516 drm_for_each_connector_iter(connector, &conn_iter) { 517 ret = drm_connector_register(connector); 518 if (ret) 519 break; 520 } 521 drm_connector_list_iter_end(&conn_iter); 522 523 if (ret) 524 drm_connector_unregister_all(dev); 525 return ret; 526 } 527 528 /** 529 * drm_get_connector_status_name - return a string for connector status 530 * @status: connector status to compute name of 531 * 532 * In contrast to the other drm_get_*_name functions this one here returns a 533 * const pointer and hence is threadsafe. 534 */ 535 const char *drm_get_connector_status_name(enum drm_connector_status status) 536 { 537 if (status == connector_status_connected) 538 return "connected"; 539 else if (status == connector_status_disconnected) 540 return "disconnected"; 541 else 542 return "unknown"; 543 } 544 EXPORT_SYMBOL(drm_get_connector_status_name); 545 546 /** 547 * drm_get_connector_force_name - return a string for connector force 548 * @force: connector force to get name of 549 * 550 * Returns: const pointer to name. 551 */ 552 const char *drm_get_connector_force_name(enum drm_connector_force force) 553 { 554 switch (force) { 555 case DRM_FORCE_UNSPECIFIED: 556 return "unspecified"; 557 case DRM_FORCE_OFF: 558 return "off"; 559 case DRM_FORCE_ON: 560 return "on"; 561 case DRM_FORCE_ON_DIGITAL: 562 return "digital"; 563 default: 564 return "unknown"; 565 } 566 } 567 568 #ifdef CONFIG_LOCKDEP 569 static struct lockdep_map connector_list_iter_dep_map = { 570 .name = "drm_connector_list_iter" 571 }; 572 #endif 573 574 /** 575 * drm_connector_list_iter_begin - initialize a connector_list iterator 576 * @dev: DRM device 577 * @iter: connector_list iterator 578 * 579 * Sets @iter up to walk the &drm_mode_config.connector_list of @dev. @iter 580 * must always be cleaned up again by calling drm_connector_list_iter_end(). 581 * Iteration itself happens using drm_connector_list_iter_next() or 582 * drm_for_each_connector_iter(). 583 */ 584 void drm_connector_list_iter_begin(struct drm_device *dev, 585 struct drm_connector_list_iter *iter) 586 { 587 iter->dev = dev; 588 iter->conn = NULL; 589 lock_acquire_shared_recursive(&connector_list_iter_dep_map, 0, 1, NULL, _RET_IP_); 590 } 591 EXPORT_SYMBOL(drm_connector_list_iter_begin); 592 593 /* 594 * Extra-safe connector put function that works in any context. Should only be 595 * used from the connector_iter functions, where we never really expect to 596 * actually release the connector when dropping our final reference. 597 */ 598 static void 599 __drm_connector_put_safe(struct drm_connector *conn) 600 { 601 struct drm_mode_config *config = &conn->dev->mode_config; 602 603 lockdep_assert_held(&config->connector_list_lock); 604 605 if (!refcount_dec_and_test(&conn->base.refcount.refcount)) 606 return; 607 608 llist_add(&conn->free_node, &config->connector_free_list); 609 schedule_work(&config->connector_free_work); 610 } 611 612 /** 613 * drm_connector_list_iter_next - return next connector 614 * @iter: connector_list iterator 615 * 616 * Returns the next connector for @iter, or NULL when the list walk has 617 * completed. 618 */ 619 struct drm_connector * 620 drm_connector_list_iter_next(struct drm_connector_list_iter *iter) 621 { 622 struct drm_connector *old_conn = iter->conn; 623 struct drm_mode_config *config = &iter->dev->mode_config; 624 struct list_head *lhead; 625 unsigned long flags; 626 627 spin_lock_irqsave(&config->connector_list_lock, flags); 628 lhead = old_conn ? &old_conn->head : &config->connector_list; 629 630 do { 631 if (lhead->next == &config->connector_list) { 632 iter->conn = NULL; 633 break; 634 } 635 636 lhead = lhead->next; 637 iter->conn = list_entry(lhead, struct drm_connector, head); 638 639 /* loop until it's not a zombie connector */ 640 } while (!kref_get_unless_zero(&iter->conn->base.refcount)); 641 642 if (old_conn) 643 __drm_connector_put_safe(old_conn); 644 spin_unlock_irqrestore(&config->connector_list_lock, flags); 645 646 return iter->conn; 647 } 648 EXPORT_SYMBOL(drm_connector_list_iter_next); 649 650 /** 651 * drm_connector_list_iter_end - tear down a connector_list iterator 652 * @iter: connector_list iterator 653 * 654 * Tears down @iter and releases any resources (like &drm_connector references) 655 * acquired while walking the list. This must always be called, both when the 656 * iteration completes fully or when it was aborted without walking the entire 657 * list. 658 */ 659 void drm_connector_list_iter_end(struct drm_connector_list_iter *iter) 660 { 661 struct drm_mode_config *config = &iter->dev->mode_config; 662 unsigned long flags; 663 664 iter->dev = NULL; 665 if (iter->conn) { 666 spin_lock_irqsave(&config->connector_list_lock, flags); 667 __drm_connector_put_safe(iter->conn); 668 spin_unlock_irqrestore(&config->connector_list_lock, flags); 669 } 670 lock_release(&connector_list_iter_dep_map, 0, _RET_IP_); 671 } 672 EXPORT_SYMBOL(drm_connector_list_iter_end); 673 674 static const struct drm_prop_enum_list drm_subpixel_enum_list[] = { 675 { SubPixelUnknown, "Unknown" }, 676 { SubPixelHorizontalRGB, "Horizontal RGB" }, 677 { SubPixelHorizontalBGR, "Horizontal BGR" }, 678 { SubPixelVerticalRGB, "Vertical RGB" }, 679 { SubPixelVerticalBGR, "Vertical BGR" }, 680 { SubPixelNone, "None" }, 681 }; 682 683 /** 684 * drm_get_subpixel_order_name - return a string for a given subpixel enum 685 * @order: enum of subpixel_order 686 * 687 * Note you could abuse this and return something out of bounds, but that 688 * would be a caller error. No unscrubbed user data should make it here. 689 */ 690 const char *drm_get_subpixel_order_name(enum subpixel_order order) 691 { 692 return drm_subpixel_enum_list[order].name; 693 } 694 EXPORT_SYMBOL(drm_get_subpixel_order_name); 695 696 static const struct drm_prop_enum_list drm_dpms_enum_list[] = { 697 { DRM_MODE_DPMS_ON, "On" }, 698 { DRM_MODE_DPMS_STANDBY, "Standby" }, 699 { DRM_MODE_DPMS_SUSPEND, "Suspend" }, 700 { DRM_MODE_DPMS_OFF, "Off" } 701 }; 702 DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list) 703 704 static const struct drm_prop_enum_list drm_link_status_enum_list[] = { 705 { DRM_MODE_LINK_STATUS_GOOD, "Good" }, 706 { DRM_MODE_LINK_STATUS_BAD, "Bad" }, 707 }; 708 709 /** 710 * drm_display_info_set_bus_formats - set the supported bus formats 711 * @info: display info to store bus formats in 712 * @formats: array containing the supported bus formats 713 * @num_formats: the number of entries in the fmts array 714 * 715 * Store the supported bus formats in display info structure. 716 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for 717 * a full list of available formats. 718 */ 719 int drm_display_info_set_bus_formats(struct drm_display_info *info, 720 const u32 *formats, 721 unsigned int num_formats) 722 { 723 u32 *fmts = NULL; 724 725 if (!formats && num_formats) 726 return -EINVAL; 727 728 if (formats && num_formats) { 729 fmts = kmemdup(formats, sizeof(*formats) * num_formats, 730 GFP_KERNEL); 731 if (!fmts) 732 return -ENOMEM; 733 } 734 735 kfree(info->bus_formats); 736 info->bus_formats = fmts; 737 info->num_bus_formats = num_formats; 738 739 return 0; 740 } 741 EXPORT_SYMBOL(drm_display_info_set_bus_formats); 742 743 /* Optional connector properties. */ 744 static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = { 745 { DRM_MODE_SCALE_NONE, "None" }, 746 { DRM_MODE_SCALE_FULLSCREEN, "Full" }, 747 { DRM_MODE_SCALE_CENTER, "Center" }, 748 { DRM_MODE_SCALE_ASPECT, "Full aspect" }, 749 }; 750 751 static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = { 752 { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" }, 753 { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" }, 754 { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" }, 755 }; 756 757 static const struct drm_prop_enum_list drm_content_type_enum_list[] = { 758 { DRM_MODE_CONTENT_TYPE_NO_DATA, "No Data" }, 759 { DRM_MODE_CONTENT_TYPE_GRAPHICS, "Graphics" }, 760 { DRM_MODE_CONTENT_TYPE_PHOTO, "Photo" }, 761 { DRM_MODE_CONTENT_TYPE_CINEMA, "Cinema" }, 762 { DRM_MODE_CONTENT_TYPE_GAME, "Game" }, 763 }; 764 765 static const struct drm_prop_enum_list drm_panel_orientation_enum_list[] = { 766 { DRM_MODE_PANEL_ORIENTATION_NORMAL, "Normal" }, 767 { DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP, "Upside Down" }, 768 { DRM_MODE_PANEL_ORIENTATION_LEFT_UP, "Left Side Up" }, 769 { DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, "Right Side Up" }, 770 }; 771 772 static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = { 773 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */ 774 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */ 775 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */ 776 }; 777 DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list) 778 779 static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = { 780 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */ 781 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */ 782 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */ 783 }; 784 DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name, 785 drm_dvi_i_subconnector_enum_list) 786 787 static const struct drm_prop_enum_list drm_tv_select_enum_list[] = { 788 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */ 789 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */ 790 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */ 791 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */ 792 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */ 793 }; 794 DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list) 795 796 static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = { 797 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */ 798 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */ 799 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */ 800 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */ 801 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */ 802 }; 803 DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name, 804 drm_tv_subconnector_enum_list) 805 806 static struct drm_prop_enum_list drm_cp_enum_list[] = { 807 { DRM_MODE_CONTENT_PROTECTION_UNDESIRED, "Undesired" }, 808 { DRM_MODE_CONTENT_PROTECTION_DESIRED, "Desired" }, 809 { DRM_MODE_CONTENT_PROTECTION_ENABLED, "Enabled" }, 810 }; 811 DRM_ENUM_NAME_FN(drm_get_content_protection_name, drm_cp_enum_list) 812 813 /** 814 * DOC: standard connector properties 815 * 816 * DRM connectors have a few standardized properties: 817 * 818 * EDID: 819 * Blob property which contains the current EDID read from the sink. This 820 * is useful to parse sink identification information like vendor, model 821 * and serial. Drivers should update this property by calling 822 * drm_connector_update_edid_property(), usually after having parsed 823 * the EDID using drm_add_edid_modes(). Userspace cannot change this 824 * property. 825 * DPMS: 826 * Legacy property for setting the power state of the connector. For atomic 827 * drivers this is only provided for backwards compatibility with existing 828 * drivers, it remaps to controlling the "ACTIVE" property on the CRTC the 829 * connector is linked to. Drivers should never set this property directly, 830 * it is handled by the DRM core by calling the &drm_connector_funcs.dpms 831 * callback. For atomic drivers the remapping to the "ACTIVE" property is 832 * implemented in the DRM core. This is the only standard connector 833 * property that userspace can change. 834 * 835 * Note that this property cannot be set through the MODE_ATOMIC ioctl, 836 * userspace must use "ACTIVE" on the CRTC instead. 837 * 838 * WARNING: 839 * 840 * For userspace also running on legacy drivers the "DPMS" semantics are a 841 * lot more complicated. First, userspace cannot rely on the "DPMS" value 842 * returned by the GETCONNECTOR actually reflecting reality, because many 843 * drivers fail to update it. For atomic drivers this is taken care of in 844 * drm_atomic_helper_update_legacy_modeset_state(). 845 * 846 * The second issue is that the DPMS state is only well-defined when the 847 * connector is connected to a CRTC. In atomic the DRM core enforces that 848 * "ACTIVE" is off in such a case, no such checks exists for "DPMS". 849 * 850 * Finally, when enabling an output using the legacy SETCONFIG ioctl then 851 * "DPMS" is forced to ON. But see above, that might not be reflected in 852 * the software value on legacy drivers. 853 * 854 * Summarizing: Only set "DPMS" when the connector is known to be enabled, 855 * assume that a successful SETCONFIG call also sets "DPMS" to on, and 856 * never read back the value of "DPMS" because it can be incorrect. 857 * PATH: 858 * Connector path property to identify how this sink is physically 859 * connected. Used by DP MST. This should be set by calling 860 * drm_connector_set_path_property(), in the case of DP MST with the 861 * path property the MST manager created. Userspace cannot change this 862 * property. 863 * TILE: 864 * Connector tile group property to indicate how a set of DRM connector 865 * compose together into one logical screen. This is used by both high-res 866 * external screens (often only using a single cable, but exposing multiple 867 * DP MST sinks), or high-res integrated panels (like dual-link DSI) which 868 * are not gen-locked. Note that for tiled panels which are genlocked, like 869 * dual-link LVDS or dual-link DSI, the driver should try to not expose the 870 * tiling and virtualize both &drm_crtc and &drm_plane if needed. Drivers 871 * should update this value using drm_connector_set_tile_property(). 872 * Userspace cannot change this property. 873 * link-status: 874 * Connector link-status property to indicate the status of link. The 875 * default value of link-status is "GOOD". If something fails during or 876 * after modeset, the kernel driver may set this to "BAD" and issue a 877 * hotplug uevent. Drivers should update this value using 878 * drm_connector_set_link_status_property(). 879 * non_desktop: 880 * Indicates the output should be ignored for purposes of displaying a 881 * standard desktop environment or console. This is most likely because 882 * the output device is not rectilinear. 883 * Content Protection: 884 * This property is used by userspace to request the kernel protect future 885 * content communicated over the link. When requested, kernel will apply 886 * the appropriate means of protection (most often HDCP), and use the 887 * property to tell userspace the protection is active. 888 * 889 * Drivers can set this up by calling 890 * drm_connector_attach_content_protection_property() on initialization. 891 * 892 * The value of this property can be one of the following: 893 * 894 * DRM_MODE_CONTENT_PROTECTION_UNDESIRED = 0 895 * The link is not protected, content is transmitted in the clear. 896 * DRM_MODE_CONTENT_PROTECTION_DESIRED = 1 897 * Userspace has requested content protection, but the link is not 898 * currently protected. When in this state, kernel should enable 899 * Content Protection as soon as possible. 900 * DRM_MODE_CONTENT_PROTECTION_ENABLED = 2 901 * Userspace has requested content protection, and the link is 902 * protected. Only the driver can set the property to this value. 903 * If userspace attempts to set to ENABLED, kernel will return 904 * -EINVAL. 905 * 906 * A few guidelines: 907 * 908 * - DESIRED state should be preserved until userspace de-asserts it by 909 * setting the property to UNDESIRED. This means ENABLED should only 910 * transition to UNDESIRED when the user explicitly requests it. 911 * - If the state is DESIRED, kernel should attempt to re-authenticate the 912 * link whenever possible. This includes across disable/enable, dpms, 913 * hotplug, downstream device changes, link status failures, etc.. 914 * - Userspace is responsible for polling the property to determine when 915 * the value transitions from ENABLED to DESIRED. This signifies the link 916 * is no longer protected and userspace should take appropriate action 917 * (whatever that might be). 918 * 919 * Connectors also have one standardized atomic property: 920 * 921 * CRTC_ID: 922 * Mode object ID of the &drm_crtc this connector should be connected to. 923 * 924 * Connectors for LCD panels may also have one standardized property: 925 * 926 * panel orientation: 927 * On some devices the LCD panel is mounted in the casing in such a way 928 * that the up/top side of the panel does not match with the top side of 929 * the device. Userspace can use this property to check for this. 930 * Note that input coordinates from touchscreens (input devices with 931 * INPUT_PROP_DIRECT) will still map 1:1 to the actual LCD panel 932 * coordinates, so if userspace rotates the picture to adjust for 933 * the orientation it must also apply the same transformation to the 934 * touchscreen input coordinates. This property is initialized by calling 935 * drm_connector_init_panel_orientation_property(). 936 * 937 * scaling mode: 938 * This property defines how a non-native mode is upscaled to the native 939 * mode of an LCD panel: 940 * 941 * None: 942 * No upscaling happens, scaling is left to the panel. Not all 943 * drivers expose this mode. 944 * Full: 945 * The output is upscaled to the full resolution of the panel, 946 * ignoring the aspect ratio. 947 * Center: 948 * No upscaling happens, the output is centered within the native 949 * resolution the panel. 950 * Full aspect: 951 * The output is upscaled to maximize either the width or height 952 * while retaining the aspect ratio. 953 * 954 * This property should be set up by calling 955 * drm_connector_attach_scaling_mode_property(). Note that drivers 956 * can also expose this property to external outputs, in which case they 957 * must support "None", which should be the default (since external screens 958 * have a built-in scaler). 959 */ 960 961 int drm_connector_create_standard_properties(struct drm_device *dev) 962 { 963 struct drm_property *prop; 964 965 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB | 966 DRM_MODE_PROP_IMMUTABLE, 967 "EDID", 0); 968 if (!prop) 969 return -ENOMEM; 970 dev->mode_config.edid_property = prop; 971 972 prop = drm_property_create_enum(dev, 0, 973 "DPMS", drm_dpms_enum_list, 974 ARRAY_SIZE(drm_dpms_enum_list)); 975 if (!prop) 976 return -ENOMEM; 977 dev->mode_config.dpms_property = prop; 978 979 prop = drm_property_create(dev, 980 DRM_MODE_PROP_BLOB | 981 DRM_MODE_PROP_IMMUTABLE, 982 "PATH", 0); 983 if (!prop) 984 return -ENOMEM; 985 dev->mode_config.path_property = prop; 986 987 prop = drm_property_create(dev, 988 DRM_MODE_PROP_BLOB | 989 DRM_MODE_PROP_IMMUTABLE, 990 "TILE", 0); 991 if (!prop) 992 return -ENOMEM; 993 dev->mode_config.tile_property = prop; 994 995 prop = drm_property_create_enum(dev, 0, "link-status", 996 drm_link_status_enum_list, 997 ARRAY_SIZE(drm_link_status_enum_list)); 998 if (!prop) 999 return -ENOMEM; 1000 dev->mode_config.link_status_property = prop; 1001 1002 prop = drm_property_create_bool(dev, DRM_MODE_PROP_IMMUTABLE, "non-desktop"); 1003 if (!prop) 1004 return -ENOMEM; 1005 dev->mode_config.non_desktop_property = prop; 1006 1007 return 0; 1008 } 1009 1010 /** 1011 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties 1012 * @dev: DRM device 1013 * 1014 * Called by a driver the first time a DVI-I connector is made. 1015 */ 1016 int drm_mode_create_dvi_i_properties(struct drm_device *dev) 1017 { 1018 struct drm_property *dvi_i_selector; 1019 struct drm_property *dvi_i_subconnector; 1020 1021 if (dev->mode_config.dvi_i_select_subconnector_property) 1022 return 0; 1023 1024 dvi_i_selector = 1025 drm_property_create_enum(dev, 0, 1026 "select subconnector", 1027 drm_dvi_i_select_enum_list, 1028 ARRAY_SIZE(drm_dvi_i_select_enum_list)); 1029 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector; 1030 1031 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE, 1032 "subconnector", 1033 drm_dvi_i_subconnector_enum_list, 1034 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list)); 1035 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector; 1036 1037 return 0; 1038 } 1039 EXPORT_SYMBOL(drm_mode_create_dvi_i_properties); 1040 1041 /** 1042 * DOC: HDMI connector properties 1043 * 1044 * content type (HDMI specific): 1045 * Indicates content type setting to be used in HDMI infoframes to indicate 1046 * content type for the external device, so that it adjusts it's display 1047 * settings accordingly. 1048 * 1049 * The value of this property can be one of the following: 1050 * 1051 * No Data: 1052 * Content type is unknown 1053 * Graphics: 1054 * Content type is graphics 1055 * Photo: 1056 * Content type is photo 1057 * Cinema: 1058 * Content type is cinema 1059 * Game: 1060 * Content type is game 1061 * 1062 * Drivers can set up this property by calling 1063 * drm_connector_attach_content_type_property(). Decoding to 1064 * infoframe values is done through drm_hdmi_avi_infoframe_content_type(). 1065 */ 1066 1067 /** 1068 * drm_connector_attach_content_type_property - attach content-type property 1069 * @connector: connector to attach content type property on. 1070 * 1071 * Called by a driver the first time a HDMI connector is made. 1072 */ 1073 int drm_connector_attach_content_type_property(struct drm_connector *connector) 1074 { 1075 if (!drm_mode_create_content_type_property(connector->dev)) 1076 drm_object_attach_property(&connector->base, 1077 connector->dev->mode_config.content_type_property, 1078 DRM_MODE_CONTENT_TYPE_NO_DATA); 1079 return 0; 1080 } 1081 EXPORT_SYMBOL(drm_connector_attach_content_type_property); 1082 1083 1084 /** 1085 * drm_hdmi_avi_infoframe_content_type() - fill the HDMI AVI infoframe 1086 * content type information, based 1087 * on correspondent DRM property. 1088 * @frame: HDMI AVI infoframe 1089 * @conn_state: DRM display connector state 1090 * 1091 */ 1092 void drm_hdmi_avi_infoframe_content_type(struct hdmi_avi_infoframe *frame, 1093 const struct drm_connector_state *conn_state) 1094 { 1095 switch (conn_state->content_type) { 1096 case DRM_MODE_CONTENT_TYPE_GRAPHICS: 1097 frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS; 1098 break; 1099 case DRM_MODE_CONTENT_TYPE_CINEMA: 1100 frame->content_type = HDMI_CONTENT_TYPE_CINEMA; 1101 break; 1102 case DRM_MODE_CONTENT_TYPE_GAME: 1103 frame->content_type = HDMI_CONTENT_TYPE_GAME; 1104 break; 1105 case DRM_MODE_CONTENT_TYPE_PHOTO: 1106 frame->content_type = HDMI_CONTENT_TYPE_PHOTO; 1107 break; 1108 default: 1109 /* Graphics is the default(0) */ 1110 frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS; 1111 } 1112 1113 frame->itc = conn_state->content_type != DRM_MODE_CONTENT_TYPE_NO_DATA; 1114 } 1115 EXPORT_SYMBOL(drm_hdmi_avi_infoframe_content_type); 1116 1117 /** 1118 * drm_create_tv_properties - create TV specific connector properties 1119 * @dev: DRM device 1120 * @num_modes: number of different TV formats (modes) supported 1121 * @modes: array of pointers to strings containing name of each format 1122 * 1123 * Called by a driver's TV initialization routine, this function creates 1124 * the TV specific connector properties for a given device. Caller is 1125 * responsible for allocating a list of format names and passing them to 1126 * this routine. 1127 */ 1128 int drm_mode_create_tv_properties(struct drm_device *dev, 1129 unsigned int num_modes, 1130 const char * const modes[]) 1131 { 1132 struct drm_property *tv_selector; 1133 struct drm_property *tv_subconnector; 1134 unsigned int i; 1135 1136 if (dev->mode_config.tv_select_subconnector_property) 1137 return 0; 1138 1139 /* 1140 * Basic connector properties 1141 */ 1142 tv_selector = drm_property_create_enum(dev, 0, 1143 "select subconnector", 1144 drm_tv_select_enum_list, 1145 ARRAY_SIZE(drm_tv_select_enum_list)); 1146 if (!tv_selector) 1147 goto nomem; 1148 1149 dev->mode_config.tv_select_subconnector_property = tv_selector; 1150 1151 tv_subconnector = 1152 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE, 1153 "subconnector", 1154 drm_tv_subconnector_enum_list, 1155 ARRAY_SIZE(drm_tv_subconnector_enum_list)); 1156 if (!tv_subconnector) 1157 goto nomem; 1158 dev->mode_config.tv_subconnector_property = tv_subconnector; 1159 1160 /* 1161 * Other, TV specific properties: margins & TV modes. 1162 */ 1163 dev->mode_config.tv_left_margin_property = 1164 drm_property_create_range(dev, 0, "left margin", 0, 100); 1165 if (!dev->mode_config.tv_left_margin_property) 1166 goto nomem; 1167 1168 dev->mode_config.tv_right_margin_property = 1169 drm_property_create_range(dev, 0, "right margin", 0, 100); 1170 if (!dev->mode_config.tv_right_margin_property) 1171 goto nomem; 1172 1173 dev->mode_config.tv_top_margin_property = 1174 drm_property_create_range(dev, 0, "top margin", 0, 100); 1175 if (!dev->mode_config.tv_top_margin_property) 1176 goto nomem; 1177 1178 dev->mode_config.tv_bottom_margin_property = 1179 drm_property_create_range(dev, 0, "bottom margin", 0, 100); 1180 if (!dev->mode_config.tv_bottom_margin_property) 1181 goto nomem; 1182 1183 dev->mode_config.tv_mode_property = 1184 drm_property_create(dev, DRM_MODE_PROP_ENUM, 1185 "mode", num_modes); 1186 if (!dev->mode_config.tv_mode_property) 1187 goto nomem; 1188 1189 for (i = 0; i < num_modes; i++) 1190 drm_property_add_enum(dev->mode_config.tv_mode_property, 1191 i, modes[i]); 1192 1193 dev->mode_config.tv_brightness_property = 1194 drm_property_create_range(dev, 0, "brightness", 0, 100); 1195 if (!dev->mode_config.tv_brightness_property) 1196 goto nomem; 1197 1198 dev->mode_config.tv_contrast_property = 1199 drm_property_create_range(dev, 0, "contrast", 0, 100); 1200 if (!dev->mode_config.tv_contrast_property) 1201 goto nomem; 1202 1203 dev->mode_config.tv_flicker_reduction_property = 1204 drm_property_create_range(dev, 0, "flicker reduction", 0, 100); 1205 if (!dev->mode_config.tv_flicker_reduction_property) 1206 goto nomem; 1207 1208 dev->mode_config.tv_overscan_property = 1209 drm_property_create_range(dev, 0, "overscan", 0, 100); 1210 if (!dev->mode_config.tv_overscan_property) 1211 goto nomem; 1212 1213 dev->mode_config.tv_saturation_property = 1214 drm_property_create_range(dev, 0, "saturation", 0, 100); 1215 if (!dev->mode_config.tv_saturation_property) 1216 goto nomem; 1217 1218 dev->mode_config.tv_hue_property = 1219 drm_property_create_range(dev, 0, "hue", 0, 100); 1220 if (!dev->mode_config.tv_hue_property) 1221 goto nomem; 1222 1223 return 0; 1224 nomem: 1225 return -ENOMEM; 1226 } 1227 EXPORT_SYMBOL(drm_mode_create_tv_properties); 1228 1229 /** 1230 * drm_mode_create_scaling_mode_property - create scaling mode property 1231 * @dev: DRM device 1232 * 1233 * Called by a driver the first time it's needed, must be attached to desired 1234 * connectors. 1235 * 1236 * Atomic drivers should use drm_connector_attach_scaling_mode_property() 1237 * instead to correctly assign &drm_connector_state.picture_aspect_ratio 1238 * in the atomic state. 1239 */ 1240 int drm_mode_create_scaling_mode_property(struct drm_device *dev) 1241 { 1242 struct drm_property *scaling_mode; 1243 1244 if (dev->mode_config.scaling_mode_property) 1245 return 0; 1246 1247 scaling_mode = 1248 drm_property_create_enum(dev, 0, "scaling mode", 1249 drm_scaling_mode_enum_list, 1250 ARRAY_SIZE(drm_scaling_mode_enum_list)); 1251 1252 dev->mode_config.scaling_mode_property = scaling_mode; 1253 1254 return 0; 1255 } 1256 EXPORT_SYMBOL(drm_mode_create_scaling_mode_property); 1257 1258 /** 1259 * drm_connector_attach_scaling_mode_property - attach atomic scaling mode property 1260 * @connector: connector to attach scaling mode property on. 1261 * @scaling_mode_mask: or'ed mask of BIT(%DRM_MODE_SCALE_\*). 1262 * 1263 * This is used to add support for scaling mode to atomic drivers. 1264 * The scaling mode will be set to &drm_connector_state.picture_aspect_ratio 1265 * and can be used from &drm_connector_helper_funcs->atomic_check for validation. 1266 * 1267 * This is the atomic version of drm_mode_create_scaling_mode_property(). 1268 * 1269 * Returns: 1270 * Zero on success, negative errno on failure. 1271 */ 1272 int drm_connector_attach_scaling_mode_property(struct drm_connector *connector, 1273 u32 scaling_mode_mask) 1274 { 1275 struct drm_device *dev = connector->dev; 1276 struct drm_property *scaling_mode_property; 1277 int i; 1278 const unsigned valid_scaling_mode_mask = 1279 (1U << ARRAY_SIZE(drm_scaling_mode_enum_list)) - 1; 1280 1281 if (WARN_ON(hweight32(scaling_mode_mask) < 2 || 1282 scaling_mode_mask & ~valid_scaling_mode_mask)) 1283 return -EINVAL; 1284 1285 scaling_mode_property = 1286 drm_property_create(dev, DRM_MODE_PROP_ENUM, "scaling mode", 1287 hweight32(scaling_mode_mask)); 1288 1289 if (!scaling_mode_property) 1290 return -ENOMEM; 1291 1292 for (i = 0; i < ARRAY_SIZE(drm_scaling_mode_enum_list); i++) { 1293 int ret; 1294 1295 if (!(BIT(i) & scaling_mode_mask)) 1296 continue; 1297 1298 ret = drm_property_add_enum(scaling_mode_property, 1299 drm_scaling_mode_enum_list[i].type, 1300 drm_scaling_mode_enum_list[i].name); 1301 1302 if (ret) { 1303 drm_property_destroy(dev, scaling_mode_property); 1304 1305 return ret; 1306 } 1307 } 1308 1309 drm_object_attach_property(&connector->base, 1310 scaling_mode_property, 0); 1311 1312 connector->scaling_mode_property = scaling_mode_property; 1313 1314 return 0; 1315 } 1316 EXPORT_SYMBOL(drm_connector_attach_scaling_mode_property); 1317 1318 /** 1319 * drm_connector_attach_content_protection_property - attach content protection 1320 * property 1321 * 1322 * @connector: connector to attach CP property on. 1323 * 1324 * This is used to add support for content protection on select connectors. 1325 * Content Protection is intentionally vague to allow for different underlying 1326 * technologies, however it is most implemented by HDCP. 1327 * 1328 * The content protection will be set to &drm_connector_state.content_protection 1329 * 1330 * Returns: 1331 * Zero on success, negative errno on failure. 1332 */ 1333 int drm_connector_attach_content_protection_property( 1334 struct drm_connector *connector) 1335 { 1336 struct drm_device *dev = connector->dev; 1337 struct drm_property *prop; 1338 1339 prop = drm_property_create_enum(dev, 0, "Content Protection", 1340 drm_cp_enum_list, 1341 ARRAY_SIZE(drm_cp_enum_list)); 1342 if (!prop) 1343 return -ENOMEM; 1344 1345 drm_object_attach_property(&connector->base, prop, 1346 DRM_MODE_CONTENT_PROTECTION_UNDESIRED); 1347 1348 connector->content_protection_property = prop; 1349 1350 return 0; 1351 } 1352 EXPORT_SYMBOL(drm_connector_attach_content_protection_property); 1353 1354 /** 1355 * drm_mode_create_aspect_ratio_property - create aspect ratio property 1356 * @dev: DRM device 1357 * 1358 * Called by a driver the first time it's needed, must be attached to desired 1359 * connectors. 1360 * 1361 * Returns: 1362 * Zero on success, negative errno on failure. 1363 */ 1364 int drm_mode_create_aspect_ratio_property(struct drm_device *dev) 1365 { 1366 if (dev->mode_config.aspect_ratio_property) 1367 return 0; 1368 1369 dev->mode_config.aspect_ratio_property = 1370 drm_property_create_enum(dev, 0, "aspect ratio", 1371 drm_aspect_ratio_enum_list, 1372 ARRAY_SIZE(drm_aspect_ratio_enum_list)); 1373 1374 if (dev->mode_config.aspect_ratio_property == NULL) 1375 return -ENOMEM; 1376 1377 return 0; 1378 } 1379 EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property); 1380 1381 /** 1382 * drm_mode_create_content_type_property - create content type property 1383 * @dev: DRM device 1384 * 1385 * Called by a driver the first time it's needed, must be attached to desired 1386 * connectors. 1387 * 1388 * Returns: 1389 * Zero on success, negative errno on failure. 1390 */ 1391 int drm_mode_create_content_type_property(struct drm_device *dev) 1392 { 1393 if (dev->mode_config.content_type_property) 1394 return 0; 1395 1396 dev->mode_config.content_type_property = 1397 drm_property_create_enum(dev, 0, "content type", 1398 drm_content_type_enum_list, 1399 ARRAY_SIZE(drm_content_type_enum_list)); 1400 1401 if (dev->mode_config.content_type_property == NULL) 1402 return -ENOMEM; 1403 1404 return 0; 1405 } 1406 EXPORT_SYMBOL(drm_mode_create_content_type_property); 1407 1408 /** 1409 * drm_mode_create_suggested_offset_properties - create suggests offset properties 1410 * @dev: DRM device 1411 * 1412 * Create the the suggested x/y offset property for connectors. 1413 */ 1414 int drm_mode_create_suggested_offset_properties(struct drm_device *dev) 1415 { 1416 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property) 1417 return 0; 1418 1419 dev->mode_config.suggested_x_property = 1420 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff); 1421 1422 dev->mode_config.suggested_y_property = 1423 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff); 1424 1425 if (dev->mode_config.suggested_x_property == NULL || 1426 dev->mode_config.suggested_y_property == NULL) 1427 return -ENOMEM; 1428 return 0; 1429 } 1430 EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties); 1431 1432 /** 1433 * drm_connector_set_path_property - set tile property on connector 1434 * @connector: connector to set property on. 1435 * @path: path to use for property; must not be NULL. 1436 * 1437 * This creates a property to expose to userspace to specify a 1438 * connector path. This is mainly used for DisplayPort MST where 1439 * connectors have a topology and we want to allow userspace to give 1440 * them more meaningful names. 1441 * 1442 * Returns: 1443 * Zero on success, negative errno on failure. 1444 */ 1445 int drm_connector_set_path_property(struct drm_connector *connector, 1446 const char *path) 1447 { 1448 struct drm_device *dev = connector->dev; 1449 int ret; 1450 1451 ret = drm_property_replace_global_blob(dev, 1452 &connector->path_blob_ptr, 1453 strlen(path) + 1, 1454 path, 1455 &connector->base, 1456 dev->mode_config.path_property); 1457 return ret; 1458 } 1459 EXPORT_SYMBOL(drm_connector_set_path_property); 1460 1461 /** 1462 * drm_connector_set_tile_property - set tile property on connector 1463 * @connector: connector to set property on. 1464 * 1465 * This looks up the tile information for a connector, and creates a 1466 * property for userspace to parse if it exists. The property is of 1467 * the form of 8 integers using ':' as a separator. 1468 * 1469 * Returns: 1470 * Zero on success, errno on failure. 1471 */ 1472 int drm_connector_set_tile_property(struct drm_connector *connector) 1473 { 1474 struct drm_device *dev = connector->dev; 1475 char tile[256]; 1476 int ret; 1477 1478 if (!connector->has_tile) { 1479 ret = drm_property_replace_global_blob(dev, 1480 &connector->tile_blob_ptr, 1481 0, 1482 NULL, 1483 &connector->base, 1484 dev->mode_config.tile_property); 1485 return ret; 1486 } 1487 1488 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d", 1489 connector->tile_group->id, connector->tile_is_single_monitor, 1490 connector->num_h_tile, connector->num_v_tile, 1491 connector->tile_h_loc, connector->tile_v_loc, 1492 connector->tile_h_size, connector->tile_v_size); 1493 1494 ret = drm_property_replace_global_blob(dev, 1495 &connector->tile_blob_ptr, 1496 strlen(tile) + 1, 1497 tile, 1498 &connector->base, 1499 dev->mode_config.tile_property); 1500 return ret; 1501 } 1502 EXPORT_SYMBOL(drm_connector_set_tile_property); 1503 1504 /** 1505 * drm_connector_update_edid_property - update the edid property of a connector 1506 * @connector: drm connector 1507 * @edid: new value of the edid property 1508 * 1509 * This function creates a new blob modeset object and assigns its id to the 1510 * connector's edid property. 1511 * 1512 * Returns: 1513 * Zero on success, negative errno on failure. 1514 */ 1515 int drm_connector_update_edid_property(struct drm_connector *connector, 1516 const struct edid *edid) 1517 { 1518 struct drm_device *dev = connector->dev; 1519 size_t size = 0; 1520 int ret; 1521 1522 /* ignore requests to set edid when overridden */ 1523 if (connector->override_edid) 1524 return 0; 1525 1526 if (edid) 1527 size = EDID_LENGTH * (1 + edid->extensions); 1528 1529 /* Set the display info, using edid if available, otherwise 1530 * reseting the values to defaults. This duplicates the work 1531 * done in drm_add_edid_modes, but that function is not 1532 * consistently called before this one in all drivers and the 1533 * computation is cheap enough that it seems better to 1534 * duplicate it rather than attempt to ensure some arbitrary 1535 * ordering of calls. 1536 */ 1537 if (edid) 1538 drm_add_display_info(connector, edid); 1539 else 1540 drm_reset_display_info(connector); 1541 1542 drm_object_property_set_value(&connector->base, 1543 dev->mode_config.non_desktop_property, 1544 connector->display_info.non_desktop); 1545 1546 ret = drm_property_replace_global_blob(dev, 1547 &connector->edid_blob_ptr, 1548 size, 1549 edid, 1550 &connector->base, 1551 dev->mode_config.edid_property); 1552 return ret; 1553 } 1554 EXPORT_SYMBOL(drm_connector_update_edid_property); 1555 1556 /** 1557 * drm_connector_set_link_status_property - Set link status property of a connector 1558 * @connector: drm connector 1559 * @link_status: new value of link status property (0: Good, 1: Bad) 1560 * 1561 * In usual working scenario, this link status property will always be set to 1562 * "GOOD". If something fails during or after a mode set, the kernel driver 1563 * may set this link status property to "BAD". The caller then needs to send a 1564 * hotplug uevent for userspace to re-check the valid modes through 1565 * GET_CONNECTOR_IOCTL and retry modeset. 1566 * 1567 * Note: Drivers cannot rely on userspace to support this property and 1568 * issue a modeset. As such, they may choose to handle issues (like 1569 * re-training a link) without userspace's intervention. 1570 * 1571 * The reason for adding this property is to handle link training failures, but 1572 * it is not limited to DP or link training. For example, if we implement 1573 * asynchronous setcrtc, this property can be used to report any failures in that. 1574 */ 1575 void drm_connector_set_link_status_property(struct drm_connector *connector, 1576 uint64_t link_status) 1577 { 1578 struct drm_device *dev = connector->dev; 1579 1580 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); 1581 connector->state->link_status = link_status; 1582 drm_modeset_unlock(&dev->mode_config.connection_mutex); 1583 } 1584 EXPORT_SYMBOL(drm_connector_set_link_status_property); 1585 1586 /** 1587 * drm_connector_init_panel_orientation_property - 1588 * initialize the connecters panel_orientation property 1589 * @connector: connector for which to init the panel-orientation property. 1590 * @width: width in pixels of the panel, used for panel quirk detection 1591 * @height: height in pixels of the panel, used for panel quirk detection 1592 * 1593 * This function should only be called for built-in panels, after setting 1594 * connector->display_info.panel_orientation first (if known). 1595 * 1596 * This function will check for platform specific (e.g. DMI based) quirks 1597 * overriding display_info.panel_orientation first, then if panel_orientation 1598 * is not DRM_MODE_PANEL_ORIENTATION_UNKNOWN it will attach the 1599 * "panel orientation" property to the connector. 1600 * 1601 * Returns: 1602 * Zero on success, negative errno on failure. 1603 */ 1604 int drm_connector_init_panel_orientation_property( 1605 struct drm_connector *connector, int width, int height) 1606 { 1607 struct drm_device *dev = connector->dev; 1608 struct drm_display_info *info = &connector->display_info; 1609 struct drm_property *prop; 1610 int orientation_quirk; 1611 1612 orientation_quirk = drm_get_panel_orientation_quirk(width, height); 1613 if (orientation_quirk != DRM_MODE_PANEL_ORIENTATION_UNKNOWN) 1614 info->panel_orientation = orientation_quirk; 1615 1616 if (info->panel_orientation == DRM_MODE_PANEL_ORIENTATION_UNKNOWN) 1617 return 0; 1618 1619 prop = dev->mode_config.panel_orientation_property; 1620 if (!prop) { 1621 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE, 1622 "panel orientation", 1623 drm_panel_orientation_enum_list, 1624 ARRAY_SIZE(drm_panel_orientation_enum_list)); 1625 if (!prop) 1626 return -ENOMEM; 1627 1628 dev->mode_config.panel_orientation_property = prop; 1629 } 1630 1631 drm_object_attach_property(&connector->base, prop, 1632 info->panel_orientation); 1633 return 0; 1634 } 1635 EXPORT_SYMBOL(drm_connector_init_panel_orientation_property); 1636 1637 int drm_connector_set_obj_prop(struct drm_mode_object *obj, 1638 struct drm_property *property, 1639 uint64_t value) 1640 { 1641 int ret = -EINVAL; 1642 struct drm_connector *connector = obj_to_connector(obj); 1643 1644 /* Do DPMS ourselves */ 1645 if (property == connector->dev->mode_config.dpms_property) { 1646 ret = (*connector->funcs->dpms)(connector, (int)value); 1647 } else if (connector->funcs->set_property) 1648 ret = connector->funcs->set_property(connector, property, value); 1649 1650 if (!ret) 1651 drm_object_property_set_value(&connector->base, property, value); 1652 return ret; 1653 } 1654 1655 int drm_connector_property_set_ioctl(struct drm_device *dev, 1656 void *data, struct drm_file *file_priv) 1657 { 1658 struct drm_mode_connector_set_property *conn_set_prop = data; 1659 struct drm_mode_obj_set_property obj_set_prop = { 1660 .value = conn_set_prop->value, 1661 .prop_id = conn_set_prop->prop_id, 1662 .obj_id = conn_set_prop->connector_id, 1663 .obj_type = DRM_MODE_OBJECT_CONNECTOR 1664 }; 1665 1666 /* It does all the locking and checking we need */ 1667 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv); 1668 } 1669 1670 static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector) 1671 { 1672 /* For atomic drivers only state objects are synchronously updated and 1673 * protected by modeset locks, so check those first. */ 1674 if (connector->state) 1675 return connector->state->best_encoder; 1676 return connector->encoder; 1677 } 1678 1679 static bool 1680 drm_mode_expose_to_userspace(const struct drm_display_mode *mode, 1681 const struct list_head *export_list, 1682 const struct drm_file *file_priv) 1683 { 1684 /* 1685 * If user-space hasn't configured the driver to expose the stereo 3D 1686 * modes, don't expose them. 1687 */ 1688 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode)) 1689 return false; 1690 /* 1691 * If user-space hasn't configured the driver to expose the modes 1692 * with aspect-ratio, don't expose them. However if such a mode 1693 * is unique, let it be exposed, but reset the aspect-ratio flags 1694 * while preparing the list of user-modes. 1695 */ 1696 if (!file_priv->aspect_ratio_allowed) { 1697 struct drm_display_mode *mode_itr; 1698 1699 list_for_each_entry(mode_itr, export_list, export_head) 1700 if (drm_mode_match(mode_itr, mode, 1701 DRM_MODE_MATCH_TIMINGS | 1702 DRM_MODE_MATCH_CLOCK | 1703 DRM_MODE_MATCH_FLAGS | 1704 DRM_MODE_MATCH_3D_FLAGS)) 1705 return false; 1706 } 1707 1708 return true; 1709 } 1710 1711 int drm_mode_getconnector(struct drm_device *dev, void *data, 1712 struct drm_file *file_priv) 1713 { 1714 struct drm_mode_get_connector *out_resp = data; 1715 struct drm_connector *connector; 1716 struct drm_encoder *encoder; 1717 struct drm_display_mode *mode; 1718 int mode_count = 0; 1719 int encoders_count = 0; 1720 int ret = 0; 1721 int copied = 0; 1722 int i; 1723 struct drm_mode_modeinfo u_mode; 1724 struct drm_mode_modeinfo __user *mode_ptr; 1725 uint32_t __user *encoder_ptr; 1726 LIST_HEAD(export_list); 1727 1728 if (!drm_core_check_feature(dev, DRIVER_MODESET)) 1729 return -EOPNOTSUPP; 1730 1731 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo)); 1732 1733 connector = drm_connector_lookup(dev, file_priv, out_resp->connector_id); 1734 if (!connector) 1735 return -ENOENT; 1736 1737 drm_connector_for_each_possible_encoder(connector, encoder, i) 1738 encoders_count++; 1739 1740 if ((out_resp->count_encoders >= encoders_count) && encoders_count) { 1741 copied = 0; 1742 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr); 1743 1744 drm_connector_for_each_possible_encoder(connector, encoder, i) { 1745 if (put_user(encoder->base.id, encoder_ptr + copied)) { 1746 ret = -EFAULT; 1747 goto out; 1748 } 1749 copied++; 1750 } 1751 } 1752 out_resp->count_encoders = encoders_count; 1753 1754 out_resp->connector_id = connector->base.id; 1755 out_resp->connector_type = connector->connector_type; 1756 out_resp->connector_type_id = connector->connector_type_id; 1757 1758 mutex_lock(&dev->mode_config.mutex); 1759 if (out_resp->count_modes == 0) { 1760 connector->funcs->fill_modes(connector, 1761 dev->mode_config.max_width, 1762 dev->mode_config.max_height); 1763 } 1764 1765 out_resp->mm_width = connector->display_info.width_mm; 1766 out_resp->mm_height = connector->display_info.height_mm; 1767 out_resp->subpixel = connector->display_info.subpixel_order; 1768 out_resp->connection = connector->status; 1769 1770 /* delayed so we get modes regardless of pre-fill_modes state */ 1771 list_for_each_entry(mode, &connector->modes, head) 1772 if (drm_mode_expose_to_userspace(mode, &export_list, 1773 file_priv)) { 1774 list_add_tail(&mode->export_head, &export_list); 1775 mode_count++; 1776 } 1777 1778 /* 1779 * This ioctl is called twice, once to determine how much space is 1780 * needed, and the 2nd time to fill it. 1781 * The modes that need to be exposed to the user are maintained in the 1782 * 'export_list'. When the ioctl is called first time to determine the, 1783 * space, the export_list gets filled, to find the no.of modes. In the 1784 * 2nd time, the user modes are filled, one by one from the export_list. 1785 */ 1786 if ((out_resp->count_modes >= mode_count) && mode_count) { 1787 copied = 0; 1788 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr; 1789 list_for_each_entry(mode, &export_list, export_head) { 1790 drm_mode_convert_to_umode(&u_mode, mode); 1791 /* 1792 * Reset aspect ratio flags of user-mode, if modes with 1793 * aspect-ratio are not supported. 1794 */ 1795 if (!file_priv->aspect_ratio_allowed) 1796 u_mode.flags &= ~DRM_MODE_FLAG_PIC_AR_MASK; 1797 if (copy_to_user(mode_ptr + copied, 1798 &u_mode, sizeof(u_mode))) { 1799 ret = -EFAULT; 1800 mutex_unlock(&dev->mode_config.mutex); 1801 1802 goto out; 1803 } 1804 copied++; 1805 } 1806 } 1807 out_resp->count_modes = mode_count; 1808 mutex_unlock(&dev->mode_config.mutex); 1809 1810 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); 1811 encoder = drm_connector_get_encoder(connector); 1812 if (encoder) 1813 out_resp->encoder_id = encoder->base.id; 1814 else 1815 out_resp->encoder_id = 0; 1816 1817 /* Only grab properties after probing, to make sure EDID and other 1818 * properties reflect the latest status. */ 1819 ret = drm_mode_object_get_properties(&connector->base, file_priv->atomic, 1820 (uint32_t __user *)(unsigned long)(out_resp->props_ptr), 1821 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr), 1822 &out_resp->count_props); 1823 drm_modeset_unlock(&dev->mode_config.connection_mutex); 1824 1825 out: 1826 drm_connector_put(connector); 1827 1828 return ret; 1829 } 1830 1831 1832 /** 1833 * DOC: Tile group 1834 * 1835 * Tile groups are used to represent tiled monitors with a unique integer 1836 * identifier. Tiled monitors using DisplayID v1.3 have a unique 8-byte handle, 1837 * we store this in a tile group, so we have a common identifier for all tiles 1838 * in a monitor group. The property is called "TILE". Drivers can manage tile 1839 * groups using drm_mode_create_tile_group(), drm_mode_put_tile_group() and 1840 * drm_mode_get_tile_group(). But this is only needed for internal panels where 1841 * the tile group information is exposed through a non-standard way. 1842 */ 1843 1844 static void drm_tile_group_free(struct kref *kref) 1845 { 1846 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount); 1847 struct drm_device *dev = tg->dev; 1848 mutex_lock(&dev->mode_config.idr_mutex); 1849 idr_remove(&dev->mode_config.tile_idr, tg->id); 1850 mutex_unlock(&dev->mode_config.idr_mutex); 1851 kfree(tg); 1852 } 1853 1854 /** 1855 * drm_mode_put_tile_group - drop a reference to a tile group. 1856 * @dev: DRM device 1857 * @tg: tile group to drop reference to. 1858 * 1859 * drop reference to tile group and free if 0. 1860 */ 1861 void drm_mode_put_tile_group(struct drm_device *dev, 1862 struct drm_tile_group *tg) 1863 { 1864 kref_put(&tg->refcount, drm_tile_group_free); 1865 } 1866 EXPORT_SYMBOL(drm_mode_put_tile_group); 1867 1868 /** 1869 * drm_mode_get_tile_group - get a reference to an existing tile group 1870 * @dev: DRM device 1871 * @topology: 8-bytes unique per monitor. 1872 * 1873 * Use the unique bytes to get a reference to an existing tile group. 1874 * 1875 * RETURNS: 1876 * tile group or NULL if not found. 1877 */ 1878 struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev, 1879 char topology[8]) 1880 { 1881 struct drm_tile_group *tg; 1882 int id; 1883 mutex_lock(&dev->mode_config.idr_mutex); 1884 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) { 1885 if (!memcmp(tg->group_data, topology, 8)) { 1886 if (!kref_get_unless_zero(&tg->refcount)) 1887 tg = NULL; 1888 mutex_unlock(&dev->mode_config.idr_mutex); 1889 return tg; 1890 } 1891 } 1892 mutex_unlock(&dev->mode_config.idr_mutex); 1893 return NULL; 1894 } 1895 EXPORT_SYMBOL(drm_mode_get_tile_group); 1896 1897 /** 1898 * drm_mode_create_tile_group - create a tile group from a displayid description 1899 * @dev: DRM device 1900 * @topology: 8-bytes unique per monitor. 1901 * 1902 * Create a tile group for the unique monitor, and get a unique 1903 * identifier for the tile group. 1904 * 1905 * RETURNS: 1906 * new tile group or error. 1907 */ 1908 struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev, 1909 char topology[8]) 1910 { 1911 struct drm_tile_group *tg; 1912 int ret; 1913 1914 tg = kzalloc(sizeof(*tg), GFP_KERNEL); 1915 if (!tg) 1916 return ERR_PTR(-ENOMEM); 1917 1918 kref_init(&tg->refcount); 1919 memcpy(tg->group_data, topology, 8); 1920 tg->dev = dev; 1921 1922 mutex_lock(&dev->mode_config.idr_mutex); 1923 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL); 1924 if (ret >= 0) { 1925 tg->id = ret; 1926 } else { 1927 kfree(tg); 1928 tg = ERR_PTR(ret); 1929 } 1930 1931 mutex_unlock(&dev->mode_config.idr_mutex); 1932 return tg; 1933 } 1934 EXPORT_SYMBOL(drm_mode_create_tile_group); 1935