b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 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 | #include <drm/drm_sysfs.h> |
| 31 | |
| 32 | #include <linux/uaccess.h> |
| 33 | |
| 34 | #include "drm_crtc_internal.h" |
| 35 | #include "drm_internal.h" |
| 36 | |
| 37 | /** |
| 38 | * DOC: overview |
| 39 | * |
| 40 | * In DRM connectors are the general abstraction for display sinks, and include |
| 41 | * als fixed panels or anything else that can display pixels in some form. As |
| 42 | * opposed to all other KMS objects representing hardware (like CRTC, encoder or |
| 43 | * plane abstractions) connectors can be hotplugged and unplugged at runtime. |
| 44 | * Hence they are reference-counted using drm_connector_get() and |
| 45 | * drm_connector_put(). |
| 46 | * |
| 47 | * KMS driver must create, initialize, register and attach at a &struct |
| 48 | * drm_connector for each such sink. The instance is created as other KMS |
| 49 | * objects and initialized by setting the following fields. The connector is |
| 50 | * initialized with a call to drm_connector_init() with a pointer to the |
| 51 | * &struct drm_connector_funcs and a connector type, and then exposed to |
| 52 | * userspace with a call to drm_connector_register(). |
| 53 | * |
| 54 | * Connectors must be attached to an encoder to be used. For devices that map |
| 55 | * connectors to encoders 1:1, the connector should be attached at |
| 56 | * initialization time with a call to drm_connector_attach_encoder(). The |
| 57 | * driver must also set the &drm_connector.encoder field to point to the |
| 58 | * attached encoder. |
| 59 | * |
| 60 | * For connectors which are not fixed (like built-in panels) the driver needs to |
| 61 | * support hotplug notifications. The simplest way to do that is by using the |
| 62 | * probe helpers, see drm_kms_helper_poll_init() for connectors which don't have |
| 63 | * hardware support for hotplug interrupts. Connectors with hardware hotplug |
| 64 | * support can instead use e.g. drm_helper_hpd_irq_event(). |
| 65 | */ |
| 66 | |
| 67 | struct drm_conn_prop_enum_list { |
| 68 | int type; |
| 69 | const char *name; |
| 70 | struct ida ida; |
| 71 | }; |
| 72 | |
| 73 | /* |
| 74 | * Connector and encoder types. |
| 75 | */ |
| 76 | static struct drm_conn_prop_enum_list drm_connector_enum_list[] = { |
| 77 | { DRM_MODE_CONNECTOR_Unknown, "Unknown" }, |
| 78 | { DRM_MODE_CONNECTOR_VGA, "VGA" }, |
| 79 | { DRM_MODE_CONNECTOR_DVII, "DVI-I" }, |
| 80 | { DRM_MODE_CONNECTOR_DVID, "DVI-D" }, |
| 81 | { DRM_MODE_CONNECTOR_DVIA, "DVI-A" }, |
| 82 | { DRM_MODE_CONNECTOR_Composite, "Composite" }, |
| 83 | { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" }, |
| 84 | { DRM_MODE_CONNECTOR_LVDS, "LVDS" }, |
| 85 | { DRM_MODE_CONNECTOR_Component, "Component" }, |
| 86 | { DRM_MODE_CONNECTOR_9PinDIN, "DIN" }, |
| 87 | { DRM_MODE_CONNECTOR_DisplayPort, "DP" }, |
| 88 | { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" }, |
| 89 | { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" }, |
| 90 | { DRM_MODE_CONNECTOR_TV, "TV" }, |
| 91 | { DRM_MODE_CONNECTOR_eDP, "eDP" }, |
| 92 | { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" }, |
| 93 | { DRM_MODE_CONNECTOR_DSI, "DSI" }, |
| 94 | { DRM_MODE_CONNECTOR_DPI, "DPI" }, |
| 95 | { DRM_MODE_CONNECTOR_WRITEBACK, "Writeback" }, |
| 96 | { DRM_MODE_CONNECTOR_SPI, "SPI" }, |
| 97 | }; |
| 98 | |
| 99 | void drm_connector_ida_init(void) |
| 100 | { |
| 101 | int i; |
| 102 | |
| 103 | for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++) |
| 104 | ida_init(&drm_connector_enum_list[i].ida); |
| 105 | } |
| 106 | |
| 107 | void drm_connector_ida_destroy(void) |
| 108 | { |
| 109 | int i; |
| 110 | |
| 111 | for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++) |
| 112 | ida_destroy(&drm_connector_enum_list[i].ida); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * drm_connector_get_cmdline_mode - reads the user's cmdline mode |
| 117 | * @connector: connector to quwery |
| 118 | * |
| 119 | * The kernel supports per-connector configuration of its consoles through |
| 120 | * use of the video= parameter. This function parses that option and |
| 121 | * extracts the user's specified mode (or enable/disable status) for a |
| 122 | * particular connector. This is typically only used during the early fbdev |
| 123 | * setup. |
| 124 | */ |
| 125 | static void drm_connector_get_cmdline_mode(struct drm_connector *connector) |
| 126 | { |
| 127 | struct drm_cmdline_mode *mode = &connector->cmdline_mode; |
| 128 | char *option = NULL; |
| 129 | |
| 130 | if (fb_get_options(connector->name, &option)) |
| 131 | return; |
| 132 | |
| 133 | if (!drm_mode_parse_command_line_for_connector(option, |
| 134 | connector, |
| 135 | mode)) |
| 136 | return; |
| 137 | |
| 138 | if (mode->force) { |
| 139 | DRM_INFO("forcing %s connector %s\n", connector->name, |
| 140 | drm_get_connector_force_name(mode->force)); |
| 141 | connector->force = mode->force; |
| 142 | } |
| 143 | |
| 144 | DRM_DEBUG_KMS("cmdline mode for connector %s %s %dx%d@%dHz%s%s%s\n", |
| 145 | connector->name, mode->name, |
| 146 | mode->xres, mode->yres, |
| 147 | mode->refresh_specified ? mode->refresh : 60, |
| 148 | mode->rb ? " reduced blanking" : "", |
| 149 | mode->margins ? " with margins" : "", |
| 150 | mode->interlace ? " interlaced" : ""); |
| 151 | } |
| 152 | |
| 153 | static void drm_connector_free(struct kref *kref) |
| 154 | { |
| 155 | struct drm_connector *connector = |
| 156 | container_of(kref, struct drm_connector, base.refcount); |
| 157 | struct drm_device *dev = connector->dev; |
| 158 | |
| 159 | drm_mode_object_unregister(dev, &connector->base); |
| 160 | connector->funcs->destroy(connector); |
| 161 | } |
| 162 | |
| 163 | void drm_connector_free_work_fn(struct work_struct *work) |
| 164 | { |
| 165 | struct drm_connector *connector, *n; |
| 166 | struct drm_device *dev = |
| 167 | container_of(work, struct drm_device, mode_config.connector_free_work); |
| 168 | struct drm_mode_config *config = &dev->mode_config; |
| 169 | unsigned long flags; |
| 170 | struct llist_node *freed; |
| 171 | |
| 172 | spin_lock_irqsave(&config->connector_list_lock, flags); |
| 173 | freed = llist_del_all(&config->connector_free_list); |
| 174 | spin_unlock_irqrestore(&config->connector_list_lock, flags); |
| 175 | |
| 176 | llist_for_each_entry_safe(connector, n, freed, free_node) { |
| 177 | drm_mode_object_unregister(dev, &connector->base); |
| 178 | connector->funcs->destroy(connector); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | /** |
| 183 | * drm_connector_init - Init a preallocated connector |
| 184 | * @dev: DRM device |
| 185 | * @connector: the connector to init |
| 186 | * @funcs: callbacks for this connector |
| 187 | * @connector_type: user visible type of the connector |
| 188 | * |
| 189 | * Initialises a preallocated connector. Connectors should be |
| 190 | * subclassed as part of driver connector objects. |
| 191 | * |
| 192 | * Returns: |
| 193 | * Zero on success, error code on failure. |
| 194 | */ |
| 195 | int drm_connector_init(struct drm_device *dev, |
| 196 | struct drm_connector *connector, |
| 197 | const struct drm_connector_funcs *funcs, |
| 198 | int connector_type) |
| 199 | { |
| 200 | struct drm_mode_config *config = &dev->mode_config; |
| 201 | int ret; |
| 202 | struct ida *connector_ida = |
| 203 | &drm_connector_enum_list[connector_type].ida; |
| 204 | |
| 205 | WARN_ON(drm_drv_uses_atomic_modeset(dev) && |
| 206 | (!funcs->atomic_destroy_state || |
| 207 | !funcs->atomic_duplicate_state)); |
| 208 | |
| 209 | ret = __drm_mode_object_add(dev, &connector->base, |
| 210 | DRM_MODE_OBJECT_CONNECTOR, |
| 211 | false, drm_connector_free); |
| 212 | if (ret) |
| 213 | return ret; |
| 214 | |
| 215 | connector->base.properties = &connector->properties; |
| 216 | connector->dev = dev; |
| 217 | connector->funcs = funcs; |
| 218 | |
| 219 | /* connector index is used with 32bit bitmasks */ |
| 220 | ret = ida_simple_get(&config->connector_ida, 0, 32, GFP_KERNEL); |
| 221 | if (ret < 0) { |
| 222 | DRM_DEBUG_KMS("Failed to allocate %s connector index: %d\n", |
| 223 | drm_connector_enum_list[connector_type].name, |
| 224 | ret); |
| 225 | goto out_put; |
| 226 | } |
| 227 | connector->index = ret; |
| 228 | ret = 0; |
| 229 | |
| 230 | connector->connector_type = connector_type; |
| 231 | connector->connector_type_id = |
| 232 | ida_simple_get(connector_ida, 1, 0, GFP_KERNEL); |
| 233 | if (connector->connector_type_id < 0) { |
| 234 | ret = connector->connector_type_id; |
| 235 | goto out_put_id; |
| 236 | } |
| 237 | connector->name = |
| 238 | kasprintf(GFP_KERNEL, "%s-%d", |
| 239 | drm_connector_enum_list[connector_type].name, |
| 240 | connector->connector_type_id); |
| 241 | if (!connector->name) { |
| 242 | ret = -ENOMEM; |
| 243 | goto out_put_type_id; |
| 244 | } |
| 245 | |
| 246 | INIT_LIST_HEAD(&connector->probed_modes); |
| 247 | INIT_LIST_HEAD(&connector->modes); |
| 248 | mutex_init(&connector->mutex); |
| 249 | connector->edid_blob_ptr = NULL; |
| 250 | connector->tile_blob_ptr = NULL; |
| 251 | connector->status = connector_status_unknown; |
| 252 | connector->display_info.panel_orientation = |
| 253 | DRM_MODE_PANEL_ORIENTATION_UNKNOWN; |
| 254 | |
| 255 | drm_connector_get_cmdline_mode(connector); |
| 256 | |
| 257 | /* We should add connectors at the end to avoid upsetting the connector |
| 258 | * index too much. */ |
| 259 | spin_lock_irq(&config->connector_list_lock); |
| 260 | list_add_tail(&connector->head, &config->connector_list); |
| 261 | config->num_connector++; |
| 262 | spin_unlock_irq(&config->connector_list_lock); |
| 263 | |
| 264 | if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL && |
| 265 | connector_type != DRM_MODE_CONNECTOR_WRITEBACK) |
| 266 | drm_connector_attach_edid_property(connector); |
| 267 | |
| 268 | drm_object_attach_property(&connector->base, |
| 269 | config->dpms_property, 0); |
| 270 | |
| 271 | drm_object_attach_property(&connector->base, |
| 272 | config->link_status_property, |
| 273 | 0); |
| 274 | |
| 275 | drm_object_attach_property(&connector->base, |
| 276 | config->non_desktop_property, |
| 277 | 0); |
| 278 | drm_object_attach_property(&connector->base, |
| 279 | config->tile_property, |
| 280 | 0); |
| 281 | |
| 282 | if (drm_core_check_feature(dev, DRIVER_ATOMIC)) { |
| 283 | drm_object_attach_property(&connector->base, config->prop_crtc_id, 0); |
| 284 | } |
| 285 | |
| 286 | connector->debugfs_entry = NULL; |
| 287 | out_put_type_id: |
| 288 | if (ret) |
| 289 | ida_simple_remove(connector_ida, connector->connector_type_id); |
| 290 | out_put_id: |
| 291 | if (ret) |
| 292 | ida_simple_remove(&config->connector_ida, connector->index); |
| 293 | out_put: |
| 294 | if (ret) |
| 295 | drm_mode_object_unregister(dev, &connector->base); |
| 296 | |
| 297 | return ret; |
| 298 | } |
| 299 | EXPORT_SYMBOL(drm_connector_init); |
| 300 | |
| 301 | /** |
| 302 | * drm_connector_init_with_ddc - Init a preallocated connector |
| 303 | * @dev: DRM device |
| 304 | * @connector: the connector to init |
| 305 | * @funcs: callbacks for this connector |
| 306 | * @connector_type: user visible type of the connector |
| 307 | * @ddc: pointer to the associated ddc adapter |
| 308 | * |
| 309 | * Initialises a preallocated connector. Connectors should be |
| 310 | * subclassed as part of driver connector objects. |
| 311 | * |
| 312 | * Ensures that the ddc field of the connector is correctly set. |
| 313 | * |
| 314 | * Returns: |
| 315 | * Zero on success, error code on failure. |
| 316 | */ |
| 317 | int drm_connector_init_with_ddc(struct drm_device *dev, |
| 318 | struct drm_connector *connector, |
| 319 | const struct drm_connector_funcs *funcs, |
| 320 | int connector_type, |
| 321 | struct i2c_adapter *ddc) |
| 322 | { |
| 323 | int ret; |
| 324 | |
| 325 | ret = drm_connector_init(dev, connector, funcs, connector_type); |
| 326 | if (ret) |
| 327 | return ret; |
| 328 | |
| 329 | /* provide ddc symlink in sysfs */ |
| 330 | connector->ddc = ddc; |
| 331 | |
| 332 | return ret; |
| 333 | } |
| 334 | EXPORT_SYMBOL(drm_connector_init_with_ddc); |
| 335 | |
| 336 | /** |
| 337 | * drm_connector_attach_edid_property - attach edid property. |
| 338 | * @connector: the connector |
| 339 | * |
| 340 | * Some connector types like DRM_MODE_CONNECTOR_VIRTUAL do not get a |
| 341 | * edid property attached by default. This function can be used to |
| 342 | * explicitly enable the edid property in these cases. |
| 343 | */ |
| 344 | void drm_connector_attach_edid_property(struct drm_connector *connector) |
| 345 | { |
| 346 | struct drm_mode_config *config = &connector->dev->mode_config; |
| 347 | |
| 348 | drm_object_attach_property(&connector->base, |
| 349 | config->edid_property, |
| 350 | 0); |
| 351 | } |
| 352 | EXPORT_SYMBOL(drm_connector_attach_edid_property); |
| 353 | |
| 354 | /** |
| 355 | * drm_connector_attach_encoder - attach a connector to an encoder |
| 356 | * @connector: connector to attach |
| 357 | * @encoder: encoder to attach @connector to |
| 358 | * |
| 359 | * This function links up a connector to an encoder. Note that the routing |
| 360 | * restrictions between encoders and crtcs are exposed to userspace through the |
| 361 | * possible_clones and possible_crtcs bitmasks. |
| 362 | * |
| 363 | * Returns: |
| 364 | * Zero on success, negative errno on failure. |
| 365 | */ |
| 366 | int drm_connector_attach_encoder(struct drm_connector *connector, |
| 367 | struct drm_encoder *encoder) |
| 368 | { |
| 369 | int i; |
| 370 | |
| 371 | /* |
| 372 | * In the past, drivers have attempted to model the static association |
| 373 | * of connector to encoder in simple connector/encoder devices using a |
| 374 | * direct assignment of connector->encoder = encoder. This connection |
| 375 | * is a logical one and the responsibility of the core, so drivers are |
| 376 | * expected not to mess with this. |
| 377 | * |
| 378 | * Note that the error return should've been enough here, but a large |
| 379 | * majority of drivers ignores the return value, so add in a big WARN |
| 380 | * to get people's attention. |
| 381 | */ |
| 382 | if (WARN_ON(connector->encoder)) |
| 383 | return -EINVAL; |
| 384 | |
| 385 | for (i = 0; i < ARRAY_SIZE(connector->encoder_ids); i++) { |
| 386 | if (connector->encoder_ids[i] == 0) { |
| 387 | connector->encoder_ids[i] = encoder->base.id; |
| 388 | return 0; |
| 389 | } |
| 390 | } |
| 391 | return -ENOMEM; |
| 392 | } |
| 393 | EXPORT_SYMBOL(drm_connector_attach_encoder); |
| 394 | |
| 395 | /** |
| 396 | * drm_connector_has_possible_encoder - check if the connector and encoder are assosicated with each other |
| 397 | * @connector: the connector |
| 398 | * @encoder: the encoder |
| 399 | * |
| 400 | * Returns: |
| 401 | * True if @encoder is one of the possible encoders for @connector. |
| 402 | */ |
| 403 | bool drm_connector_has_possible_encoder(struct drm_connector *connector, |
| 404 | struct drm_encoder *encoder) |
| 405 | { |
| 406 | struct drm_encoder *enc; |
| 407 | int i; |
| 408 | |
| 409 | drm_connector_for_each_possible_encoder(connector, enc, i) { |
| 410 | if (enc == encoder) |
| 411 | return true; |
| 412 | } |
| 413 | |
| 414 | return false; |
| 415 | } |
| 416 | EXPORT_SYMBOL(drm_connector_has_possible_encoder); |
| 417 | |
| 418 | static void drm_mode_remove(struct drm_connector *connector, |
| 419 | struct drm_display_mode *mode) |
| 420 | { |
| 421 | list_del(&mode->head); |
| 422 | drm_mode_destroy(connector->dev, mode); |
| 423 | } |
| 424 | |
| 425 | /** |
| 426 | * drm_connector_cleanup - cleans up an initialised connector |
| 427 | * @connector: connector to cleanup |
| 428 | * |
| 429 | * Cleans up the connector but doesn't free the object. |
| 430 | */ |
| 431 | void drm_connector_cleanup(struct drm_connector *connector) |
| 432 | { |
| 433 | struct drm_device *dev = connector->dev; |
| 434 | struct drm_display_mode *mode, *t; |
| 435 | |
| 436 | /* The connector should have been removed from userspace long before |
| 437 | * it is finally destroyed. |
| 438 | */ |
| 439 | if (WARN_ON(connector->registration_state == |
| 440 | DRM_CONNECTOR_REGISTERED)) |
| 441 | drm_connector_unregister(connector); |
| 442 | |
| 443 | if (connector->tile_group) { |
| 444 | drm_mode_put_tile_group(dev, connector->tile_group); |
| 445 | connector->tile_group = NULL; |
| 446 | } |
| 447 | |
| 448 | list_for_each_entry_safe(mode, t, &connector->probed_modes, head) |
| 449 | drm_mode_remove(connector, mode); |
| 450 | |
| 451 | list_for_each_entry_safe(mode, t, &connector->modes, head) |
| 452 | drm_mode_remove(connector, mode); |
| 453 | |
| 454 | ida_simple_remove(&drm_connector_enum_list[connector->connector_type].ida, |
| 455 | connector->connector_type_id); |
| 456 | |
| 457 | ida_simple_remove(&dev->mode_config.connector_ida, |
| 458 | connector->index); |
| 459 | |
| 460 | kfree(connector->display_info.bus_formats); |
| 461 | drm_mode_object_unregister(dev, &connector->base); |
| 462 | kfree(connector->name); |
| 463 | connector->name = NULL; |
| 464 | spin_lock_irq(&dev->mode_config.connector_list_lock); |
| 465 | list_del(&connector->head); |
| 466 | dev->mode_config.num_connector--; |
| 467 | spin_unlock_irq(&dev->mode_config.connector_list_lock); |
| 468 | |
| 469 | WARN_ON(connector->state && !connector->funcs->atomic_destroy_state); |
| 470 | if (connector->state && connector->funcs->atomic_destroy_state) |
| 471 | connector->funcs->atomic_destroy_state(connector, |
| 472 | connector->state); |
| 473 | |
| 474 | mutex_destroy(&connector->mutex); |
| 475 | |
| 476 | memset(connector, 0, sizeof(*connector)); |
| 477 | |
| 478 | if (dev->registered) |
| 479 | drm_sysfs_hotplug_event(dev); |
| 480 | } |
| 481 | EXPORT_SYMBOL(drm_connector_cleanup); |
| 482 | |
| 483 | /** |
| 484 | * drm_connector_register - register a connector |
| 485 | * @connector: the connector to register |
| 486 | * |
| 487 | * Register userspace interfaces for a connector |
| 488 | * |
| 489 | * Returns: |
| 490 | * Zero on success, error code on failure. |
| 491 | */ |
| 492 | int drm_connector_register(struct drm_connector *connector) |
| 493 | { |
| 494 | int ret = 0; |
| 495 | |
| 496 | if (!connector->dev->registered) |
| 497 | return 0; |
| 498 | |
| 499 | mutex_lock(&connector->mutex); |
| 500 | if (connector->registration_state != DRM_CONNECTOR_INITIALIZING) |
| 501 | goto unlock; |
| 502 | |
| 503 | ret = drm_sysfs_connector_add(connector); |
| 504 | if (ret) |
| 505 | goto unlock; |
| 506 | |
| 507 | drm_debugfs_connector_add(connector); |
| 508 | |
| 509 | if (connector->funcs->late_register) { |
| 510 | ret = connector->funcs->late_register(connector); |
| 511 | if (ret) |
| 512 | goto err_debugfs; |
| 513 | } |
| 514 | |
| 515 | drm_mode_object_register(connector->dev, &connector->base); |
| 516 | |
| 517 | connector->registration_state = DRM_CONNECTOR_REGISTERED; |
| 518 | |
| 519 | /* Let userspace know we have a new connector */ |
| 520 | drm_sysfs_hotplug_event(connector->dev); |
| 521 | |
| 522 | goto unlock; |
| 523 | |
| 524 | err_debugfs: |
| 525 | drm_debugfs_connector_remove(connector); |
| 526 | drm_sysfs_connector_remove(connector); |
| 527 | unlock: |
| 528 | mutex_unlock(&connector->mutex); |
| 529 | return ret; |
| 530 | } |
| 531 | EXPORT_SYMBOL(drm_connector_register); |
| 532 | |
| 533 | /** |
| 534 | * drm_connector_unregister - unregister a connector |
| 535 | * @connector: the connector to unregister |
| 536 | * |
| 537 | * Unregister userspace interfaces for a connector |
| 538 | */ |
| 539 | void drm_connector_unregister(struct drm_connector *connector) |
| 540 | { |
| 541 | mutex_lock(&connector->mutex); |
| 542 | if (connector->registration_state != DRM_CONNECTOR_REGISTERED) { |
| 543 | mutex_unlock(&connector->mutex); |
| 544 | return; |
| 545 | } |
| 546 | |
| 547 | if (connector->funcs->early_unregister) |
| 548 | connector->funcs->early_unregister(connector); |
| 549 | |
| 550 | drm_sysfs_connector_remove(connector); |
| 551 | drm_debugfs_connector_remove(connector); |
| 552 | |
| 553 | connector->registration_state = DRM_CONNECTOR_UNREGISTERED; |
| 554 | mutex_unlock(&connector->mutex); |
| 555 | } |
| 556 | EXPORT_SYMBOL(drm_connector_unregister); |
| 557 | |
| 558 | void drm_connector_unregister_all(struct drm_device *dev) |
| 559 | { |
| 560 | struct drm_connector *connector; |
| 561 | struct drm_connector_list_iter conn_iter; |
| 562 | |
| 563 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 564 | drm_for_each_connector_iter(connector, &conn_iter) |
| 565 | drm_connector_unregister(connector); |
| 566 | drm_connector_list_iter_end(&conn_iter); |
| 567 | } |
| 568 | |
| 569 | int drm_connector_register_all(struct drm_device *dev) |
| 570 | { |
| 571 | struct drm_connector *connector; |
| 572 | struct drm_connector_list_iter conn_iter; |
| 573 | int ret = 0; |
| 574 | |
| 575 | drm_connector_list_iter_begin(dev, &conn_iter); |
| 576 | drm_for_each_connector_iter(connector, &conn_iter) { |
| 577 | ret = drm_connector_register(connector); |
| 578 | if (ret) |
| 579 | break; |
| 580 | } |
| 581 | drm_connector_list_iter_end(&conn_iter); |
| 582 | |
| 583 | if (ret) |
| 584 | drm_connector_unregister_all(dev); |
| 585 | return ret; |
| 586 | } |
| 587 | |
| 588 | /** |
| 589 | * drm_get_connector_status_name - return a string for connector status |
| 590 | * @status: connector status to compute name of |
| 591 | * |
| 592 | * In contrast to the other drm_get_*_name functions this one here returns a |
| 593 | * const pointer and hence is threadsafe. |
| 594 | */ |
| 595 | const char *drm_get_connector_status_name(enum drm_connector_status status) |
| 596 | { |
| 597 | if (status == connector_status_connected) |
| 598 | return "connected"; |
| 599 | else if (status == connector_status_disconnected) |
| 600 | return "disconnected"; |
| 601 | else |
| 602 | return "unknown"; |
| 603 | } |
| 604 | EXPORT_SYMBOL(drm_get_connector_status_name); |
| 605 | |
| 606 | /** |
| 607 | * drm_get_connector_force_name - return a string for connector force |
| 608 | * @force: connector force to get name of |
| 609 | * |
| 610 | * Returns: const pointer to name. |
| 611 | */ |
| 612 | const char *drm_get_connector_force_name(enum drm_connector_force force) |
| 613 | { |
| 614 | switch (force) { |
| 615 | case DRM_FORCE_UNSPECIFIED: |
| 616 | return "unspecified"; |
| 617 | case DRM_FORCE_OFF: |
| 618 | return "off"; |
| 619 | case DRM_FORCE_ON: |
| 620 | return "on"; |
| 621 | case DRM_FORCE_ON_DIGITAL: |
| 622 | return "digital"; |
| 623 | default: |
| 624 | return "unknown"; |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | #ifdef CONFIG_LOCKDEP |
| 629 | static struct lockdep_map connector_list_iter_dep_map = { |
| 630 | .name = "drm_connector_list_iter" |
| 631 | }; |
| 632 | #endif |
| 633 | |
| 634 | /** |
| 635 | * drm_connector_list_iter_begin - initialize a connector_list iterator |
| 636 | * @dev: DRM device |
| 637 | * @iter: connector_list iterator |
| 638 | * |
| 639 | * Sets @iter up to walk the &drm_mode_config.connector_list of @dev. @iter |
| 640 | * must always be cleaned up again by calling drm_connector_list_iter_end(). |
| 641 | * Iteration itself happens using drm_connector_list_iter_next() or |
| 642 | * drm_for_each_connector_iter(). |
| 643 | */ |
| 644 | void drm_connector_list_iter_begin(struct drm_device *dev, |
| 645 | struct drm_connector_list_iter *iter) |
| 646 | { |
| 647 | iter->dev = dev; |
| 648 | iter->conn = NULL; |
| 649 | lock_acquire_shared_recursive(&connector_list_iter_dep_map, 0, 1, NULL, _RET_IP_); |
| 650 | } |
| 651 | EXPORT_SYMBOL(drm_connector_list_iter_begin); |
| 652 | |
| 653 | /* |
| 654 | * Extra-safe connector put function that works in any context. Should only be |
| 655 | * used from the connector_iter functions, where we never really expect to |
| 656 | * actually release the connector when dropping our final reference. |
| 657 | */ |
| 658 | static void |
| 659 | __drm_connector_put_safe(struct drm_connector *conn) |
| 660 | { |
| 661 | struct drm_mode_config *config = &conn->dev->mode_config; |
| 662 | |
| 663 | lockdep_assert_held(&config->connector_list_lock); |
| 664 | |
| 665 | if (!refcount_dec_and_test(&conn->base.refcount.refcount)) |
| 666 | return; |
| 667 | |
| 668 | llist_add(&conn->free_node, &config->connector_free_list); |
| 669 | schedule_work(&config->connector_free_work); |
| 670 | } |
| 671 | |
| 672 | /** |
| 673 | * drm_connector_list_iter_next - return next connector |
| 674 | * @iter: connector_list iterator |
| 675 | * |
| 676 | * Returns the next connector for @iter, or NULL when the list walk has |
| 677 | * completed. |
| 678 | */ |
| 679 | struct drm_connector * |
| 680 | drm_connector_list_iter_next(struct drm_connector_list_iter *iter) |
| 681 | { |
| 682 | struct drm_connector *old_conn = iter->conn; |
| 683 | struct drm_mode_config *config = &iter->dev->mode_config; |
| 684 | struct list_head *lhead; |
| 685 | unsigned long flags; |
| 686 | |
| 687 | spin_lock_irqsave(&config->connector_list_lock, flags); |
| 688 | lhead = old_conn ? &old_conn->head : &config->connector_list; |
| 689 | |
| 690 | do { |
| 691 | if (lhead->next == &config->connector_list) { |
| 692 | iter->conn = NULL; |
| 693 | break; |
| 694 | } |
| 695 | |
| 696 | lhead = lhead->next; |
| 697 | iter->conn = list_entry(lhead, struct drm_connector, head); |
| 698 | |
| 699 | /* loop until it's not a zombie connector */ |
| 700 | } while (!kref_get_unless_zero(&iter->conn->base.refcount)); |
| 701 | |
| 702 | if (old_conn) |
| 703 | __drm_connector_put_safe(old_conn); |
| 704 | spin_unlock_irqrestore(&config->connector_list_lock, flags); |
| 705 | |
| 706 | return iter->conn; |
| 707 | } |
| 708 | EXPORT_SYMBOL(drm_connector_list_iter_next); |
| 709 | |
| 710 | /** |
| 711 | * drm_connector_list_iter_end - tear down a connector_list iterator |
| 712 | * @iter: connector_list iterator |
| 713 | * |
| 714 | * Tears down @iter and releases any resources (like &drm_connector references) |
| 715 | * acquired while walking the list. This must always be called, both when the |
| 716 | * iteration completes fully or when it was aborted without walking the entire |
| 717 | * list. |
| 718 | */ |
| 719 | void drm_connector_list_iter_end(struct drm_connector_list_iter *iter) |
| 720 | { |
| 721 | struct drm_mode_config *config = &iter->dev->mode_config; |
| 722 | unsigned long flags; |
| 723 | |
| 724 | iter->dev = NULL; |
| 725 | if (iter->conn) { |
| 726 | spin_lock_irqsave(&config->connector_list_lock, flags); |
| 727 | __drm_connector_put_safe(iter->conn); |
| 728 | spin_unlock_irqrestore(&config->connector_list_lock, flags); |
| 729 | } |
| 730 | lock_release(&connector_list_iter_dep_map, 0, _RET_IP_); |
| 731 | } |
| 732 | EXPORT_SYMBOL(drm_connector_list_iter_end); |
| 733 | |
| 734 | static const struct drm_prop_enum_list drm_subpixel_enum_list[] = { |
| 735 | { SubPixelUnknown, "Unknown" }, |
| 736 | { SubPixelHorizontalRGB, "Horizontal RGB" }, |
| 737 | { SubPixelHorizontalBGR, "Horizontal BGR" }, |
| 738 | { SubPixelVerticalRGB, "Vertical RGB" }, |
| 739 | { SubPixelVerticalBGR, "Vertical BGR" }, |
| 740 | { SubPixelNone, "None" }, |
| 741 | }; |
| 742 | |
| 743 | /** |
| 744 | * drm_get_subpixel_order_name - return a string for a given subpixel enum |
| 745 | * @order: enum of subpixel_order |
| 746 | * |
| 747 | * Note you could abuse this and return something out of bounds, but that |
| 748 | * would be a caller error. No unscrubbed user data should make it here. |
| 749 | */ |
| 750 | const char *drm_get_subpixel_order_name(enum subpixel_order order) |
| 751 | { |
| 752 | return drm_subpixel_enum_list[order].name; |
| 753 | } |
| 754 | EXPORT_SYMBOL(drm_get_subpixel_order_name); |
| 755 | |
| 756 | static const struct drm_prop_enum_list drm_dpms_enum_list[] = { |
| 757 | { DRM_MODE_DPMS_ON, "On" }, |
| 758 | { DRM_MODE_DPMS_STANDBY, "Standby" }, |
| 759 | { DRM_MODE_DPMS_SUSPEND, "Suspend" }, |
| 760 | { DRM_MODE_DPMS_OFF, "Off" } |
| 761 | }; |
| 762 | DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list) |
| 763 | |
| 764 | static const struct drm_prop_enum_list drm_link_status_enum_list[] = { |
| 765 | { DRM_MODE_LINK_STATUS_GOOD, "Good" }, |
| 766 | { DRM_MODE_LINK_STATUS_BAD, "Bad" }, |
| 767 | }; |
| 768 | |
| 769 | /** |
| 770 | * drm_display_info_set_bus_formats - set the supported bus formats |
| 771 | * @info: display info to store bus formats in |
| 772 | * @formats: array containing the supported bus formats |
| 773 | * @num_formats: the number of entries in the fmts array |
| 774 | * |
| 775 | * Store the supported bus formats in display info structure. |
| 776 | * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for |
| 777 | * a full list of available formats. |
| 778 | */ |
| 779 | int drm_display_info_set_bus_formats(struct drm_display_info *info, |
| 780 | const u32 *formats, |
| 781 | unsigned int num_formats) |
| 782 | { |
| 783 | u32 *fmts = NULL; |
| 784 | |
| 785 | if (!formats && num_formats) |
| 786 | return -EINVAL; |
| 787 | |
| 788 | if (formats && num_formats) { |
| 789 | fmts = kmemdup(formats, sizeof(*formats) * num_formats, |
| 790 | GFP_KERNEL); |
| 791 | if (!fmts) |
| 792 | return -ENOMEM; |
| 793 | } |
| 794 | |
| 795 | kfree(info->bus_formats); |
| 796 | info->bus_formats = fmts; |
| 797 | info->num_bus_formats = num_formats; |
| 798 | |
| 799 | return 0; |
| 800 | } |
| 801 | EXPORT_SYMBOL(drm_display_info_set_bus_formats); |
| 802 | |
| 803 | /* Optional connector properties. */ |
| 804 | static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = { |
| 805 | { DRM_MODE_SCALE_NONE, "None" }, |
| 806 | { DRM_MODE_SCALE_FULLSCREEN, "Full" }, |
| 807 | { DRM_MODE_SCALE_CENTER, "Center" }, |
| 808 | { DRM_MODE_SCALE_ASPECT, "Full aspect" }, |
| 809 | }; |
| 810 | |
| 811 | static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = { |
| 812 | { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" }, |
| 813 | { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" }, |
| 814 | { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" }, |
| 815 | }; |
| 816 | |
| 817 | static const struct drm_prop_enum_list drm_content_type_enum_list[] = { |
| 818 | { DRM_MODE_CONTENT_TYPE_NO_DATA, "No Data" }, |
| 819 | { DRM_MODE_CONTENT_TYPE_GRAPHICS, "Graphics" }, |
| 820 | { DRM_MODE_CONTENT_TYPE_PHOTO, "Photo" }, |
| 821 | { DRM_MODE_CONTENT_TYPE_CINEMA, "Cinema" }, |
| 822 | { DRM_MODE_CONTENT_TYPE_GAME, "Game" }, |
| 823 | }; |
| 824 | |
| 825 | static const struct drm_prop_enum_list drm_panel_orientation_enum_list[] = { |
| 826 | { DRM_MODE_PANEL_ORIENTATION_NORMAL, "Normal" }, |
| 827 | { DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP, "Upside Down" }, |
| 828 | { DRM_MODE_PANEL_ORIENTATION_LEFT_UP, "Left Side Up" }, |
| 829 | { DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, "Right Side Up" }, |
| 830 | }; |
| 831 | |
| 832 | static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = { |
| 833 | { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */ |
| 834 | { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */ |
| 835 | { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */ |
| 836 | }; |
| 837 | DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list) |
| 838 | |
| 839 | static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = { |
| 840 | { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */ |
| 841 | { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */ |
| 842 | { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */ |
| 843 | }; |
| 844 | DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name, |
| 845 | drm_dvi_i_subconnector_enum_list) |
| 846 | |
| 847 | static const struct drm_prop_enum_list drm_tv_select_enum_list[] = { |
| 848 | { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */ |
| 849 | { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */ |
| 850 | { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */ |
| 851 | { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */ |
| 852 | { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */ |
| 853 | }; |
| 854 | DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list) |
| 855 | |
| 856 | static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = { |
| 857 | { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */ |
| 858 | { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */ |
| 859 | { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */ |
| 860 | { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */ |
| 861 | { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */ |
| 862 | }; |
| 863 | DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name, |
| 864 | drm_tv_subconnector_enum_list) |
| 865 | |
| 866 | static const struct drm_prop_enum_list hdmi_colorspaces[] = { |
| 867 | /* For Default case, driver will set the colorspace */ |
| 868 | { DRM_MODE_COLORIMETRY_DEFAULT, "Default" }, |
| 869 | /* Standard Definition Colorimetry based on CEA 861 */ |
| 870 | { DRM_MODE_COLORIMETRY_SMPTE_170M_YCC, "SMPTE_170M_YCC" }, |
| 871 | { DRM_MODE_COLORIMETRY_BT709_YCC, "BT709_YCC" }, |
| 872 | /* Standard Definition Colorimetry based on IEC 61966-2-4 */ |
| 873 | { DRM_MODE_COLORIMETRY_XVYCC_601, "XVYCC_601" }, |
| 874 | /* High Definition Colorimetry based on IEC 61966-2-4 */ |
| 875 | { DRM_MODE_COLORIMETRY_XVYCC_709, "XVYCC_709" }, |
| 876 | /* Colorimetry based on IEC 61966-2-1/Amendment 1 */ |
| 877 | { DRM_MODE_COLORIMETRY_SYCC_601, "SYCC_601" }, |
| 878 | /* Colorimetry based on IEC 61966-2-5 [33] */ |
| 879 | { DRM_MODE_COLORIMETRY_OPYCC_601, "opYCC_601" }, |
| 880 | /* Colorimetry based on IEC 61966-2-5 */ |
| 881 | { DRM_MODE_COLORIMETRY_OPRGB, "opRGB" }, |
| 882 | /* Colorimetry based on ITU-R BT.2020 */ |
| 883 | { DRM_MODE_COLORIMETRY_BT2020_CYCC, "BT2020_CYCC" }, |
| 884 | /* Colorimetry based on ITU-R BT.2020 */ |
| 885 | { DRM_MODE_COLORIMETRY_BT2020_RGB, "BT2020_RGB" }, |
| 886 | /* Colorimetry based on ITU-R BT.2020 */ |
| 887 | { DRM_MODE_COLORIMETRY_BT2020_YCC, "BT2020_YCC" }, |
| 888 | /* Added as part of Additional Colorimetry Extension in 861.G */ |
| 889 | { DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65, "DCI-P3_RGB_D65" }, |
| 890 | { DRM_MODE_COLORIMETRY_DCI_P3_RGB_THEATER, "DCI-P3_RGB_Theater" }, |
| 891 | }; |
| 892 | |
| 893 | /* |
| 894 | * As per DP 1.4a spec, 2.2.5.7.5 VSC SDP Payload for Pixel Encoding/Colorimetry |
| 895 | * Format Table 2-120 |
| 896 | */ |
| 897 | static const struct drm_prop_enum_list dp_colorspaces[] = { |
| 898 | /* For Default case, driver will set the colorspace */ |
| 899 | { DRM_MODE_COLORIMETRY_DEFAULT, "Default" }, |
| 900 | { DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED, "RGB_Wide_Gamut_Fixed_Point" }, |
| 901 | /* Colorimetry based on scRGB (IEC 61966-2-2) */ |
| 902 | { DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT, "RGB_Wide_Gamut_Floating_Point" }, |
| 903 | /* Colorimetry based on IEC 61966-2-5 */ |
| 904 | { DRM_MODE_COLORIMETRY_OPRGB, "opRGB" }, |
| 905 | /* Colorimetry based on SMPTE RP 431-2 */ |
| 906 | { DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65, "DCI-P3_RGB_D65" }, |
| 907 | /* Colorimetry based on ITU-R BT.2020 */ |
| 908 | { DRM_MODE_COLORIMETRY_BT2020_RGB, "BT2020_RGB" }, |
| 909 | { DRM_MODE_COLORIMETRY_BT601_YCC, "BT601_YCC" }, |
| 910 | { DRM_MODE_COLORIMETRY_BT709_YCC, "BT709_YCC" }, |
| 911 | /* Standard Definition Colorimetry based on IEC 61966-2-4 */ |
| 912 | { DRM_MODE_COLORIMETRY_XVYCC_601, "XVYCC_601" }, |
| 913 | /* High Definition Colorimetry based on IEC 61966-2-4 */ |
| 914 | { DRM_MODE_COLORIMETRY_XVYCC_709, "XVYCC_709" }, |
| 915 | /* Colorimetry based on IEC 61966-2-1/Amendment 1 */ |
| 916 | { DRM_MODE_COLORIMETRY_SYCC_601, "SYCC_601" }, |
| 917 | /* Colorimetry based on IEC 61966-2-5 [33] */ |
| 918 | { DRM_MODE_COLORIMETRY_OPYCC_601, "opYCC_601" }, |
| 919 | /* Colorimetry based on ITU-R BT.2020 */ |
| 920 | { DRM_MODE_COLORIMETRY_BT2020_CYCC, "BT2020_CYCC" }, |
| 921 | /* Colorimetry based on ITU-R BT.2020 */ |
| 922 | { DRM_MODE_COLORIMETRY_BT2020_YCC, "BT2020_YCC" }, |
| 923 | }; |
| 924 | |
| 925 | /** |
| 926 | * DOC: standard connector properties |
| 927 | * |
| 928 | * DRM connectors have a few standardized properties: |
| 929 | * |
| 930 | * EDID: |
| 931 | * Blob property which contains the current EDID read from the sink. This |
| 932 | * is useful to parse sink identification information like vendor, model |
| 933 | * and serial. Drivers should update this property by calling |
| 934 | * drm_connector_update_edid_property(), usually after having parsed |
| 935 | * the EDID using drm_add_edid_modes(). Userspace cannot change this |
| 936 | * property. |
| 937 | * DPMS: |
| 938 | * Legacy property for setting the power state of the connector. For atomic |
| 939 | * drivers this is only provided for backwards compatibility with existing |
| 940 | * drivers, it remaps to controlling the "ACTIVE" property on the CRTC the |
| 941 | * connector is linked to. Drivers should never set this property directly, |
| 942 | * it is handled by the DRM core by calling the &drm_connector_funcs.dpms |
| 943 | * callback. For atomic drivers the remapping to the "ACTIVE" property is |
| 944 | * implemented in the DRM core. This is the only standard connector |
| 945 | * property that userspace can change. |
| 946 | * |
| 947 | * Note that this property cannot be set through the MODE_ATOMIC ioctl, |
| 948 | * userspace must use "ACTIVE" on the CRTC instead. |
| 949 | * |
| 950 | * WARNING: |
| 951 | * |
| 952 | * For userspace also running on legacy drivers the "DPMS" semantics are a |
| 953 | * lot more complicated. First, userspace cannot rely on the "DPMS" value |
| 954 | * returned by the GETCONNECTOR actually reflecting reality, because many |
| 955 | * drivers fail to update it. For atomic drivers this is taken care of in |
| 956 | * drm_atomic_helper_update_legacy_modeset_state(). |
| 957 | * |
| 958 | * The second issue is that the DPMS state is only well-defined when the |
| 959 | * connector is connected to a CRTC. In atomic the DRM core enforces that |
| 960 | * "ACTIVE" is off in such a case, no such checks exists for "DPMS". |
| 961 | * |
| 962 | * Finally, when enabling an output using the legacy SETCONFIG ioctl then |
| 963 | * "DPMS" is forced to ON. But see above, that might not be reflected in |
| 964 | * the software value on legacy drivers. |
| 965 | * |
| 966 | * Summarizing: Only set "DPMS" when the connector is known to be enabled, |
| 967 | * assume that a successful SETCONFIG call also sets "DPMS" to on, and |
| 968 | * never read back the value of "DPMS" because it can be incorrect. |
| 969 | * PATH: |
| 970 | * Connector path property to identify how this sink is physically |
| 971 | * connected. Used by DP MST. This should be set by calling |
| 972 | * drm_connector_set_path_property(), in the case of DP MST with the |
| 973 | * path property the MST manager created. Userspace cannot change this |
| 974 | * property. |
| 975 | * TILE: |
| 976 | * Connector tile group property to indicate how a set of DRM connector |
| 977 | * compose together into one logical screen. This is used by both high-res |
| 978 | * external screens (often only using a single cable, but exposing multiple |
| 979 | * DP MST sinks), or high-res integrated panels (like dual-link DSI) which |
| 980 | * are not gen-locked. Note that for tiled panels which are genlocked, like |
| 981 | * dual-link LVDS or dual-link DSI, the driver should try to not expose the |
| 982 | * tiling and virtualize both &drm_crtc and &drm_plane if needed. Drivers |
| 983 | * should update this value using drm_connector_set_tile_property(). |
| 984 | * Userspace cannot change this property. |
| 985 | * link-status: |
| 986 | * Connector link-status property to indicate the status of link. The |
| 987 | * default value of link-status is "GOOD". If something fails during or |
| 988 | * after modeset, the kernel driver may set this to "BAD" and issue a |
| 989 | * hotplug uevent. Drivers should update this value using |
| 990 | * drm_connector_set_link_status_property(). |
| 991 | * non_desktop: |
| 992 | * Indicates the output should be ignored for purposes of displaying a |
| 993 | * standard desktop environment or console. This is most likely because |
| 994 | * the output device is not rectilinear. |
| 995 | * Content Protection: |
| 996 | * This property is used by userspace to request the kernel protect future |
| 997 | * content communicated over the link. When requested, kernel will apply |
| 998 | * the appropriate means of protection (most often HDCP), and use the |
| 999 | * property to tell userspace the protection is active. |
| 1000 | * |
| 1001 | * Drivers can set this up by calling |
| 1002 | * drm_connector_attach_content_protection_property() on initialization. |
| 1003 | * |
| 1004 | * The value of this property can be one of the following: |
| 1005 | * |
| 1006 | * DRM_MODE_CONTENT_PROTECTION_UNDESIRED = 0 |
| 1007 | * The link is not protected, content is transmitted in the clear. |
| 1008 | * DRM_MODE_CONTENT_PROTECTION_DESIRED = 1 |
| 1009 | * Userspace has requested content protection, but the link is not |
| 1010 | * currently protected. When in this state, kernel should enable |
| 1011 | * Content Protection as soon as possible. |
| 1012 | * DRM_MODE_CONTENT_PROTECTION_ENABLED = 2 |
| 1013 | * Userspace has requested content protection, and the link is |
| 1014 | * protected. Only the driver can set the property to this value. |
| 1015 | * If userspace attempts to set to ENABLED, kernel will return |
| 1016 | * -EINVAL. |
| 1017 | * |
| 1018 | * A few guidelines: |
| 1019 | * |
| 1020 | * - DESIRED state should be preserved until userspace de-asserts it by |
| 1021 | * setting the property to UNDESIRED. This means ENABLED should only |
| 1022 | * transition to UNDESIRED when the user explicitly requests it. |
| 1023 | * - If the state is DESIRED, kernel should attempt to re-authenticate the |
| 1024 | * link whenever possible. This includes across disable/enable, dpms, |
| 1025 | * hotplug, downstream device changes, link status failures, etc.. |
| 1026 | * - Kernel sends uevent with the connector id and property id through |
| 1027 | * @drm_hdcp_update_content_protection, upon below kernel triggered |
| 1028 | * scenarios: |
| 1029 | * |
| 1030 | * - DESIRED -> ENABLED (authentication success) |
| 1031 | * - ENABLED -> DESIRED (termination of authentication) |
| 1032 | * - Please note no uevents for userspace triggered property state changes, |
| 1033 | * which can't fail such as |
| 1034 | * |
| 1035 | * - DESIRED/ENABLED -> UNDESIRED |
| 1036 | * - UNDESIRED -> DESIRED |
| 1037 | * - Userspace is responsible for polling the property or listen to uevents |
| 1038 | * to determine when the value transitions from ENABLED to DESIRED. |
| 1039 | * This signifies the link is no longer protected and userspace should |
| 1040 | * take appropriate action (whatever that might be). |
| 1041 | * |
| 1042 | * HDCP Content Type: |
| 1043 | * This Enum property is used by the userspace to declare the content type |
| 1044 | * of the display stream, to kernel. Here display stream stands for any |
| 1045 | * display content that userspace intended to display through HDCP |
| 1046 | * encryption. |
| 1047 | * |
| 1048 | * Content Type of a stream is decided by the owner of the stream, as |
| 1049 | * "HDCP Type0" or "HDCP Type1". |
| 1050 | * |
| 1051 | * The value of the property can be one of the below: |
| 1052 | * - "HDCP Type0": DRM_MODE_HDCP_CONTENT_TYPE0 = 0 |
| 1053 | * - "HDCP Type1": DRM_MODE_HDCP_CONTENT_TYPE1 = 1 |
| 1054 | * |
| 1055 | * When kernel starts the HDCP authentication (see "Content Protection" |
| 1056 | * for details), it uses the content type in "HDCP Content Type" |
| 1057 | * for performing the HDCP authentication with the display sink. |
| 1058 | * |
| 1059 | * Please note in HDCP spec versions, a link can be authenticated with |
| 1060 | * HDCP 2.2 for Content Type 0/Content Type 1. Where as a link can be |
| 1061 | * authenticated with HDCP1.4 only for Content Type 0(though it is implicit |
| 1062 | * in nature. As there is no reference for Content Type in HDCP1.4). |
| 1063 | * |
| 1064 | * HDCP2.2 authentication protocol itself takes the "Content Type" as a |
| 1065 | * parameter, which is a input for the DP HDCP2.2 encryption algo. |
| 1066 | * |
| 1067 | * In case of Type 0 content protection request, kernel driver can choose |
| 1068 | * either of HDCP spec versions 1.4 and 2.2. When HDCP2.2 is used for |
| 1069 | * "HDCP Type 0", a HDCP 2.2 capable repeater in the downstream can send |
| 1070 | * that content to a HDCP 1.4 authenticated HDCP sink (Type0 link). |
| 1071 | * But if the content is classified as "HDCP Type 1", above mentioned |
| 1072 | * HDCP 2.2 repeater wont send the content to the HDCP sink as it can't |
| 1073 | * authenticate the HDCP1.4 capable sink for "HDCP Type 1". |
| 1074 | * |
| 1075 | * Please note userspace can be ignorant of the HDCP versions used by the |
| 1076 | * kernel driver to achieve the "HDCP Content Type". |
| 1077 | * |
| 1078 | * At current scenario, classifying a content as Type 1 ensures that the |
| 1079 | * content will be displayed only through the HDCP2.2 encrypted link. |
| 1080 | * |
| 1081 | * Note that the HDCP Content Type property is introduced at HDCP 2.2, and |
| 1082 | * defaults to type 0. It is only exposed by drivers supporting HDCP 2.2 |
| 1083 | * (hence supporting Type 0 and Type 1). Based on how next versions of |
| 1084 | * HDCP specs are defined content Type could be used for higher versions |
| 1085 | * too. |
| 1086 | * |
| 1087 | * If content type is changed when "Content Protection" is not UNDESIRED, |
| 1088 | * then kernel will disable the HDCP and re-enable with new type in the |
| 1089 | * same atomic commit. And when "Content Protection" is ENABLED, it means |
| 1090 | * that link is HDCP authenticated and encrypted, for the transmission of |
| 1091 | * the Type of stream mentioned at "HDCP Content Type". |
| 1092 | * |
| 1093 | * HDR_OUTPUT_METADATA: |
| 1094 | * Connector property to enable userspace to send HDR Metadata to |
| 1095 | * driver. This metadata is based on the composition and blending |
| 1096 | * policies decided by user, taking into account the hardware and |
| 1097 | * sink capabilities. The driver gets this metadata and creates a |
| 1098 | * Dynamic Range and Mastering Infoframe (DRM) in case of HDMI, |
| 1099 | * SDP packet (Non-audio INFOFRAME SDP v1.3) for DP. This is then |
| 1100 | * sent to sink. This notifies the sink of the upcoming frame's Color |
| 1101 | * Encoding and Luminance parameters. |
| 1102 | * |
| 1103 | * Userspace first need to detect the HDR capabilities of sink by |
| 1104 | * reading and parsing the EDID. Details of HDR metadata for HDMI |
| 1105 | * are added in CTA 861.G spec. For DP , its defined in VESA DP |
| 1106 | * Standard v1.4. It needs to then get the metadata information |
| 1107 | * of the video/game/app content which are encoded in HDR (basically |
| 1108 | * using HDR transfer functions). With this information it needs to |
| 1109 | * decide on a blending policy and compose the relevant |
| 1110 | * layers/overlays into a common format. Once this blending is done, |
| 1111 | * userspace will be aware of the metadata of the composed frame to |
| 1112 | * be send to sink. It then uses this property to communicate this |
| 1113 | * metadata to driver which then make a Infoframe packet and sends |
| 1114 | * to sink based on the type of encoder connected. |
| 1115 | * |
| 1116 | * Userspace will be responsible to do Tone mapping operation in case: |
| 1117 | * - Some layers are HDR and others are SDR |
| 1118 | * - HDR layers luminance is not same as sink |
| 1119 | * |
| 1120 | * It will even need to do colorspace conversion and get all layers |
| 1121 | * to one common colorspace for blending. It can use either GL, Media |
| 1122 | * or display engine to get this done based on the capabilties of the |
| 1123 | * associated hardware. |
| 1124 | * |
| 1125 | * Driver expects metadata to be put in &struct hdr_output_metadata |
| 1126 | * structure from userspace. This is received as blob and stored in |
| 1127 | * &drm_connector_state.hdr_output_metadata. It parses EDID and saves the |
| 1128 | * sink metadata in &struct hdr_sink_metadata, as |
| 1129 | * &drm_connector.hdr_sink_metadata. Driver uses |
| 1130 | * drm_hdmi_infoframe_set_hdr_metadata() helper to set the HDR metadata, |
| 1131 | * hdmi_drm_infoframe_pack() to pack the infoframe as per spec, in case of |
| 1132 | * HDMI encoder. |
| 1133 | * |
| 1134 | * max bpc: |
| 1135 | * This range property is used by userspace to limit the bit depth. When |
| 1136 | * used the driver would limit the bpc in accordance with the valid range |
| 1137 | * supported by the hardware and sink. Drivers to use the function |
| 1138 | * drm_connector_attach_max_bpc_property() to create and attach the |
| 1139 | * property to the connector during initialization. |
| 1140 | * |
| 1141 | * Connectors also have one standardized atomic property: |
| 1142 | * |
| 1143 | * CRTC_ID: |
| 1144 | * Mode object ID of the &drm_crtc this connector should be connected to. |
| 1145 | * |
| 1146 | * Connectors for LCD panels may also have one standardized property: |
| 1147 | * |
| 1148 | * panel orientation: |
| 1149 | * On some devices the LCD panel is mounted in the casing in such a way |
| 1150 | * that the up/top side of the panel does not match with the top side of |
| 1151 | * the device. Userspace can use this property to check for this. |
| 1152 | * Note that input coordinates from touchscreens (input devices with |
| 1153 | * INPUT_PROP_DIRECT) will still map 1:1 to the actual LCD panel |
| 1154 | * coordinates, so if userspace rotates the picture to adjust for |
| 1155 | * the orientation it must also apply the same transformation to the |
| 1156 | * touchscreen input coordinates. This property is initialized by calling |
| 1157 | * drm_connector_init_panel_orientation_property(). |
| 1158 | * |
| 1159 | * scaling mode: |
| 1160 | * This property defines how a non-native mode is upscaled to the native |
| 1161 | * mode of an LCD panel: |
| 1162 | * |
| 1163 | * None: |
| 1164 | * No upscaling happens, scaling is left to the panel. Not all |
| 1165 | * drivers expose this mode. |
| 1166 | * Full: |
| 1167 | * The output is upscaled to the full resolution of the panel, |
| 1168 | * ignoring the aspect ratio. |
| 1169 | * Center: |
| 1170 | * No upscaling happens, the output is centered within the native |
| 1171 | * resolution the panel. |
| 1172 | * Full aspect: |
| 1173 | * The output is upscaled to maximize either the width or height |
| 1174 | * while retaining the aspect ratio. |
| 1175 | * |
| 1176 | * This property should be set up by calling |
| 1177 | * drm_connector_attach_scaling_mode_property(). Note that drivers |
| 1178 | * can also expose this property to external outputs, in which case they |
| 1179 | * must support "None", which should be the default (since external screens |
| 1180 | * have a built-in scaler). |
| 1181 | */ |
| 1182 | |
| 1183 | int drm_connector_create_standard_properties(struct drm_device *dev) |
| 1184 | { |
| 1185 | struct drm_property *prop; |
| 1186 | |
| 1187 | prop = drm_property_create(dev, DRM_MODE_PROP_BLOB | |
| 1188 | DRM_MODE_PROP_IMMUTABLE, |
| 1189 | "EDID", 0); |
| 1190 | if (!prop) |
| 1191 | return -ENOMEM; |
| 1192 | dev->mode_config.edid_property = prop; |
| 1193 | |
| 1194 | prop = drm_property_create_enum(dev, 0, |
| 1195 | "DPMS", drm_dpms_enum_list, |
| 1196 | ARRAY_SIZE(drm_dpms_enum_list)); |
| 1197 | if (!prop) |
| 1198 | return -ENOMEM; |
| 1199 | dev->mode_config.dpms_property = prop; |
| 1200 | |
| 1201 | prop = drm_property_create(dev, |
| 1202 | DRM_MODE_PROP_BLOB | |
| 1203 | DRM_MODE_PROP_IMMUTABLE, |
| 1204 | "PATH", 0); |
| 1205 | if (!prop) |
| 1206 | return -ENOMEM; |
| 1207 | dev->mode_config.path_property = prop; |
| 1208 | |
| 1209 | prop = drm_property_create(dev, |
| 1210 | DRM_MODE_PROP_BLOB | |
| 1211 | DRM_MODE_PROP_IMMUTABLE, |
| 1212 | "TILE", 0); |
| 1213 | if (!prop) |
| 1214 | return -ENOMEM; |
| 1215 | dev->mode_config.tile_property = prop; |
| 1216 | |
| 1217 | prop = drm_property_create_enum(dev, 0, "link-status", |
| 1218 | drm_link_status_enum_list, |
| 1219 | ARRAY_SIZE(drm_link_status_enum_list)); |
| 1220 | if (!prop) |
| 1221 | return -ENOMEM; |
| 1222 | dev->mode_config.link_status_property = prop; |
| 1223 | |
| 1224 | prop = drm_property_create_bool(dev, DRM_MODE_PROP_IMMUTABLE, "non-desktop"); |
| 1225 | if (!prop) |
| 1226 | return -ENOMEM; |
| 1227 | dev->mode_config.non_desktop_property = prop; |
| 1228 | |
| 1229 | prop = drm_property_create(dev, DRM_MODE_PROP_BLOB, |
| 1230 | "HDR_OUTPUT_METADATA", 0); |
| 1231 | if (!prop) |
| 1232 | return -ENOMEM; |
| 1233 | dev->mode_config.hdr_output_metadata_property = prop; |
| 1234 | |
| 1235 | return 0; |
| 1236 | } |
| 1237 | |
| 1238 | /** |
| 1239 | * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties |
| 1240 | * @dev: DRM device |
| 1241 | * |
| 1242 | * Called by a driver the first time a DVI-I connector is made. |
| 1243 | */ |
| 1244 | int drm_mode_create_dvi_i_properties(struct drm_device *dev) |
| 1245 | { |
| 1246 | struct drm_property *dvi_i_selector; |
| 1247 | struct drm_property *dvi_i_subconnector; |
| 1248 | |
| 1249 | if (dev->mode_config.dvi_i_select_subconnector_property) |
| 1250 | return 0; |
| 1251 | |
| 1252 | dvi_i_selector = |
| 1253 | drm_property_create_enum(dev, 0, |
| 1254 | "select subconnector", |
| 1255 | drm_dvi_i_select_enum_list, |
| 1256 | ARRAY_SIZE(drm_dvi_i_select_enum_list)); |
| 1257 | dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector; |
| 1258 | |
| 1259 | dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE, |
| 1260 | "subconnector", |
| 1261 | drm_dvi_i_subconnector_enum_list, |
| 1262 | ARRAY_SIZE(drm_dvi_i_subconnector_enum_list)); |
| 1263 | dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector; |
| 1264 | |
| 1265 | return 0; |
| 1266 | } |
| 1267 | EXPORT_SYMBOL(drm_mode_create_dvi_i_properties); |
| 1268 | |
| 1269 | /** |
| 1270 | * DOC: HDMI connector properties |
| 1271 | * |
| 1272 | * content type (HDMI specific): |
| 1273 | * Indicates content type setting to be used in HDMI infoframes to indicate |
| 1274 | * content type for the external device, so that it adjusts its display |
| 1275 | * settings accordingly. |
| 1276 | * |
| 1277 | * The value of this property can be one of the following: |
| 1278 | * |
| 1279 | * No Data: |
| 1280 | * Content type is unknown |
| 1281 | * Graphics: |
| 1282 | * Content type is graphics |
| 1283 | * Photo: |
| 1284 | * Content type is photo |
| 1285 | * Cinema: |
| 1286 | * Content type is cinema |
| 1287 | * Game: |
| 1288 | * Content type is game |
| 1289 | * |
| 1290 | * Drivers can set up this property by calling |
| 1291 | * drm_connector_attach_content_type_property(). Decoding to |
| 1292 | * infoframe values is done through drm_hdmi_avi_infoframe_content_type(). |
| 1293 | */ |
| 1294 | |
| 1295 | /** |
| 1296 | * drm_connector_attach_content_type_property - attach content-type property |
| 1297 | * @connector: connector to attach content type property on. |
| 1298 | * |
| 1299 | * Called by a driver the first time a HDMI connector is made. |
| 1300 | */ |
| 1301 | int drm_connector_attach_content_type_property(struct drm_connector *connector) |
| 1302 | { |
| 1303 | if (!drm_mode_create_content_type_property(connector->dev)) |
| 1304 | drm_object_attach_property(&connector->base, |
| 1305 | connector->dev->mode_config.content_type_property, |
| 1306 | DRM_MODE_CONTENT_TYPE_NO_DATA); |
| 1307 | return 0; |
| 1308 | } |
| 1309 | EXPORT_SYMBOL(drm_connector_attach_content_type_property); |
| 1310 | |
| 1311 | |
| 1312 | /** |
| 1313 | * drm_hdmi_avi_infoframe_content_type() - fill the HDMI AVI infoframe |
| 1314 | * content type information, based |
| 1315 | * on correspondent DRM property. |
| 1316 | * @frame: HDMI AVI infoframe |
| 1317 | * @conn_state: DRM display connector state |
| 1318 | * |
| 1319 | */ |
| 1320 | void drm_hdmi_avi_infoframe_content_type(struct hdmi_avi_infoframe *frame, |
| 1321 | const struct drm_connector_state *conn_state) |
| 1322 | { |
| 1323 | switch (conn_state->content_type) { |
| 1324 | case DRM_MODE_CONTENT_TYPE_GRAPHICS: |
| 1325 | frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS; |
| 1326 | break; |
| 1327 | case DRM_MODE_CONTENT_TYPE_CINEMA: |
| 1328 | frame->content_type = HDMI_CONTENT_TYPE_CINEMA; |
| 1329 | break; |
| 1330 | case DRM_MODE_CONTENT_TYPE_GAME: |
| 1331 | frame->content_type = HDMI_CONTENT_TYPE_GAME; |
| 1332 | break; |
| 1333 | case DRM_MODE_CONTENT_TYPE_PHOTO: |
| 1334 | frame->content_type = HDMI_CONTENT_TYPE_PHOTO; |
| 1335 | break; |
| 1336 | default: |
| 1337 | /* Graphics is the default(0) */ |
| 1338 | frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS; |
| 1339 | } |
| 1340 | |
| 1341 | frame->itc = conn_state->content_type != DRM_MODE_CONTENT_TYPE_NO_DATA; |
| 1342 | } |
| 1343 | EXPORT_SYMBOL(drm_hdmi_avi_infoframe_content_type); |
| 1344 | |
| 1345 | /** |
| 1346 | * drm_mode_attach_tv_margin_properties - attach TV connector margin properties |
| 1347 | * @connector: DRM connector |
| 1348 | * |
| 1349 | * Called by a driver when it needs to attach TV margin props to a connector. |
| 1350 | * Typically used on SDTV and HDMI connectors. |
| 1351 | */ |
| 1352 | void drm_connector_attach_tv_margin_properties(struct drm_connector *connector) |
| 1353 | { |
| 1354 | struct drm_device *dev = connector->dev; |
| 1355 | |
| 1356 | drm_object_attach_property(&connector->base, |
| 1357 | dev->mode_config.tv_left_margin_property, |
| 1358 | 0); |
| 1359 | drm_object_attach_property(&connector->base, |
| 1360 | dev->mode_config.tv_right_margin_property, |
| 1361 | 0); |
| 1362 | drm_object_attach_property(&connector->base, |
| 1363 | dev->mode_config.tv_top_margin_property, |
| 1364 | 0); |
| 1365 | drm_object_attach_property(&connector->base, |
| 1366 | dev->mode_config.tv_bottom_margin_property, |
| 1367 | 0); |
| 1368 | } |
| 1369 | EXPORT_SYMBOL(drm_connector_attach_tv_margin_properties); |
| 1370 | |
| 1371 | /** |
| 1372 | * drm_mode_create_tv_margin_properties - create TV connector margin properties |
| 1373 | * @dev: DRM device |
| 1374 | * |
| 1375 | * Called by a driver's HDMI connector initialization routine, this function |
| 1376 | * creates the TV margin properties for a given device. No need to call this |
| 1377 | * function for an SDTV connector, it's already called from |
| 1378 | * drm_mode_create_tv_properties(). |
| 1379 | */ |
| 1380 | int drm_mode_create_tv_margin_properties(struct drm_device *dev) |
| 1381 | { |
| 1382 | if (dev->mode_config.tv_left_margin_property) |
| 1383 | return 0; |
| 1384 | |
| 1385 | dev->mode_config.tv_left_margin_property = |
| 1386 | drm_property_create_range(dev, 0, "left margin", 0, 100); |
| 1387 | if (!dev->mode_config.tv_left_margin_property) |
| 1388 | return -ENOMEM; |
| 1389 | |
| 1390 | dev->mode_config.tv_right_margin_property = |
| 1391 | drm_property_create_range(dev, 0, "right margin", 0, 100); |
| 1392 | if (!dev->mode_config.tv_right_margin_property) |
| 1393 | return -ENOMEM; |
| 1394 | |
| 1395 | dev->mode_config.tv_top_margin_property = |
| 1396 | drm_property_create_range(dev, 0, "top margin", 0, 100); |
| 1397 | if (!dev->mode_config.tv_top_margin_property) |
| 1398 | return -ENOMEM; |
| 1399 | |
| 1400 | dev->mode_config.tv_bottom_margin_property = |
| 1401 | drm_property_create_range(dev, 0, "bottom margin", 0, 100); |
| 1402 | if (!dev->mode_config.tv_bottom_margin_property) |
| 1403 | return -ENOMEM; |
| 1404 | |
| 1405 | return 0; |
| 1406 | } |
| 1407 | EXPORT_SYMBOL(drm_mode_create_tv_margin_properties); |
| 1408 | |
| 1409 | /** |
| 1410 | * drm_mode_create_tv_properties - create TV specific connector properties |
| 1411 | * @dev: DRM device |
| 1412 | * @num_modes: number of different TV formats (modes) supported |
| 1413 | * @modes: array of pointers to strings containing name of each format |
| 1414 | * |
| 1415 | * Called by a driver's TV initialization routine, this function creates |
| 1416 | * the TV specific connector properties for a given device. Caller is |
| 1417 | * responsible for allocating a list of format names and passing them to |
| 1418 | * this routine. |
| 1419 | */ |
| 1420 | int drm_mode_create_tv_properties(struct drm_device *dev, |
| 1421 | unsigned int num_modes, |
| 1422 | const char * const modes[]) |
| 1423 | { |
| 1424 | struct drm_property *tv_selector; |
| 1425 | struct drm_property *tv_subconnector; |
| 1426 | unsigned int i; |
| 1427 | |
| 1428 | if (dev->mode_config.tv_select_subconnector_property) |
| 1429 | return 0; |
| 1430 | |
| 1431 | /* |
| 1432 | * Basic connector properties |
| 1433 | */ |
| 1434 | tv_selector = drm_property_create_enum(dev, 0, |
| 1435 | "select subconnector", |
| 1436 | drm_tv_select_enum_list, |
| 1437 | ARRAY_SIZE(drm_tv_select_enum_list)); |
| 1438 | if (!tv_selector) |
| 1439 | goto nomem; |
| 1440 | |
| 1441 | dev->mode_config.tv_select_subconnector_property = tv_selector; |
| 1442 | |
| 1443 | tv_subconnector = |
| 1444 | drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE, |
| 1445 | "subconnector", |
| 1446 | drm_tv_subconnector_enum_list, |
| 1447 | ARRAY_SIZE(drm_tv_subconnector_enum_list)); |
| 1448 | if (!tv_subconnector) |
| 1449 | goto nomem; |
| 1450 | dev->mode_config.tv_subconnector_property = tv_subconnector; |
| 1451 | |
| 1452 | /* |
| 1453 | * Other, TV specific properties: margins & TV modes. |
| 1454 | */ |
| 1455 | if (drm_mode_create_tv_margin_properties(dev)) |
| 1456 | goto nomem; |
| 1457 | |
| 1458 | dev->mode_config.tv_mode_property = |
| 1459 | drm_property_create(dev, DRM_MODE_PROP_ENUM, |
| 1460 | "mode", num_modes); |
| 1461 | if (!dev->mode_config.tv_mode_property) |
| 1462 | goto nomem; |
| 1463 | |
| 1464 | for (i = 0; i < num_modes; i++) |
| 1465 | drm_property_add_enum(dev->mode_config.tv_mode_property, |
| 1466 | i, modes[i]); |
| 1467 | |
| 1468 | dev->mode_config.tv_brightness_property = |
| 1469 | drm_property_create_range(dev, 0, "brightness", 0, 100); |
| 1470 | if (!dev->mode_config.tv_brightness_property) |
| 1471 | goto nomem; |
| 1472 | |
| 1473 | dev->mode_config.tv_contrast_property = |
| 1474 | drm_property_create_range(dev, 0, "contrast", 0, 100); |
| 1475 | if (!dev->mode_config.tv_contrast_property) |
| 1476 | goto nomem; |
| 1477 | |
| 1478 | dev->mode_config.tv_flicker_reduction_property = |
| 1479 | drm_property_create_range(dev, 0, "flicker reduction", 0, 100); |
| 1480 | if (!dev->mode_config.tv_flicker_reduction_property) |
| 1481 | goto nomem; |
| 1482 | |
| 1483 | dev->mode_config.tv_overscan_property = |
| 1484 | drm_property_create_range(dev, 0, "overscan", 0, 100); |
| 1485 | if (!dev->mode_config.tv_overscan_property) |
| 1486 | goto nomem; |
| 1487 | |
| 1488 | dev->mode_config.tv_saturation_property = |
| 1489 | drm_property_create_range(dev, 0, "saturation", 0, 100); |
| 1490 | if (!dev->mode_config.tv_saturation_property) |
| 1491 | goto nomem; |
| 1492 | |
| 1493 | dev->mode_config.tv_hue_property = |
| 1494 | drm_property_create_range(dev, 0, "hue", 0, 100); |
| 1495 | if (!dev->mode_config.tv_hue_property) |
| 1496 | goto nomem; |
| 1497 | |
| 1498 | return 0; |
| 1499 | nomem: |
| 1500 | return -ENOMEM; |
| 1501 | } |
| 1502 | EXPORT_SYMBOL(drm_mode_create_tv_properties); |
| 1503 | |
| 1504 | /** |
| 1505 | * drm_mode_create_scaling_mode_property - create scaling mode property |
| 1506 | * @dev: DRM device |
| 1507 | * |
| 1508 | * Called by a driver the first time it's needed, must be attached to desired |
| 1509 | * connectors. |
| 1510 | * |
| 1511 | * Atomic drivers should use drm_connector_attach_scaling_mode_property() |
| 1512 | * instead to correctly assign &drm_connector_state.picture_aspect_ratio |
| 1513 | * in the atomic state. |
| 1514 | */ |
| 1515 | int drm_mode_create_scaling_mode_property(struct drm_device *dev) |
| 1516 | { |
| 1517 | struct drm_property *scaling_mode; |
| 1518 | |
| 1519 | if (dev->mode_config.scaling_mode_property) |
| 1520 | return 0; |
| 1521 | |
| 1522 | scaling_mode = |
| 1523 | drm_property_create_enum(dev, 0, "scaling mode", |
| 1524 | drm_scaling_mode_enum_list, |
| 1525 | ARRAY_SIZE(drm_scaling_mode_enum_list)); |
| 1526 | |
| 1527 | dev->mode_config.scaling_mode_property = scaling_mode; |
| 1528 | |
| 1529 | return 0; |
| 1530 | } |
| 1531 | EXPORT_SYMBOL(drm_mode_create_scaling_mode_property); |
| 1532 | |
| 1533 | /** |
| 1534 | * DOC: Variable refresh properties |
| 1535 | * |
| 1536 | * Variable refresh rate capable displays can dynamically adjust their |
| 1537 | * refresh rate by extending the duration of their vertical front porch |
| 1538 | * until page flip or timeout occurs. This can reduce or remove stuttering |
| 1539 | * and latency in scenarios where the page flip does not align with the |
| 1540 | * vblank interval. |
| 1541 | * |
| 1542 | * An example scenario would be an application flipping at a constant rate |
| 1543 | * of 48Hz on a 60Hz display. The page flip will frequently miss the vblank |
| 1544 | * interval and the same contents will be displayed twice. This can be |
| 1545 | * observed as stuttering for content with motion. |
| 1546 | * |
| 1547 | * If variable refresh rate was active on a display that supported a |
| 1548 | * variable refresh range from 35Hz to 60Hz no stuttering would be observable |
| 1549 | * for the example scenario. The minimum supported variable refresh rate of |
| 1550 | * 35Hz is below the page flip frequency and the vertical front porch can |
| 1551 | * be extended until the page flip occurs. The vblank interval will be |
| 1552 | * directly aligned to the page flip rate. |
| 1553 | * |
| 1554 | * Not all userspace content is suitable for use with variable refresh rate. |
| 1555 | * Large and frequent changes in vertical front porch duration may worsen |
| 1556 | * perceived stuttering for input sensitive applications. |
| 1557 | * |
| 1558 | * Panel brightness will also vary with vertical front porch duration. Some |
| 1559 | * panels may have noticeable differences in brightness between the minimum |
| 1560 | * vertical front porch duration and the maximum vertical front porch duration. |
| 1561 | * Large and frequent changes in vertical front porch duration may produce |
| 1562 | * observable flickering for such panels. |
| 1563 | * |
| 1564 | * Userspace control for variable refresh rate is supported via properties |
| 1565 | * on the &drm_connector and &drm_crtc objects. |
| 1566 | * |
| 1567 | * "vrr_capable": |
| 1568 | * Optional &drm_connector boolean property that drivers should attach |
| 1569 | * with drm_connector_attach_vrr_capable_property() on connectors that |
| 1570 | * could support variable refresh rates. Drivers should update the |
| 1571 | * property value by calling drm_connector_set_vrr_capable_property(). |
| 1572 | * |
| 1573 | * Absence of the property should indicate absence of support. |
| 1574 | * |
| 1575 | * "VRR_ENABLED": |
| 1576 | * Default &drm_crtc boolean property that notifies the driver that the |
| 1577 | * content on the CRTC is suitable for variable refresh rate presentation. |
| 1578 | * The driver will take this property as a hint to enable variable |
| 1579 | * refresh rate support if the receiver supports it, ie. if the |
| 1580 | * "vrr_capable" property is true on the &drm_connector object. The |
| 1581 | * vertical front porch duration will be extended until page-flip or |
| 1582 | * timeout when enabled. |
| 1583 | * |
| 1584 | * The minimum vertical front porch duration is defined as the vertical |
| 1585 | * front porch duration for the current mode. |
| 1586 | * |
| 1587 | * The maximum vertical front porch duration is greater than or equal to |
| 1588 | * the minimum vertical front porch duration. The duration is derived |
| 1589 | * from the minimum supported variable refresh rate for the connector. |
| 1590 | * |
| 1591 | * The driver may place further restrictions within these minimum |
| 1592 | * and maximum bounds. |
| 1593 | */ |
| 1594 | |
| 1595 | /** |
| 1596 | * drm_connector_attach_vrr_capable_property - creates the |
| 1597 | * vrr_capable property |
| 1598 | * @connector: connector to create the vrr_capable property on. |
| 1599 | * |
| 1600 | * This is used by atomic drivers to add support for querying |
| 1601 | * variable refresh rate capability for a connector. |
| 1602 | * |
| 1603 | * Returns: |
| 1604 | * Zero on success, negative errono on failure. |
| 1605 | */ |
| 1606 | int drm_connector_attach_vrr_capable_property( |
| 1607 | struct drm_connector *connector) |
| 1608 | { |
| 1609 | struct drm_device *dev = connector->dev; |
| 1610 | struct drm_property *prop; |
| 1611 | |
| 1612 | if (!connector->vrr_capable_property) { |
| 1613 | prop = drm_property_create_bool(dev, DRM_MODE_PROP_IMMUTABLE, |
| 1614 | "vrr_capable"); |
| 1615 | if (!prop) |
| 1616 | return -ENOMEM; |
| 1617 | |
| 1618 | connector->vrr_capable_property = prop; |
| 1619 | drm_object_attach_property(&connector->base, prop, 0); |
| 1620 | } |
| 1621 | |
| 1622 | return 0; |
| 1623 | } |
| 1624 | EXPORT_SYMBOL(drm_connector_attach_vrr_capable_property); |
| 1625 | |
| 1626 | /** |
| 1627 | * drm_connector_attach_scaling_mode_property - attach atomic scaling mode property |
| 1628 | * @connector: connector to attach scaling mode property on. |
| 1629 | * @scaling_mode_mask: or'ed mask of BIT(%DRM_MODE_SCALE_\*). |
| 1630 | * |
| 1631 | * This is used to add support for scaling mode to atomic drivers. |
| 1632 | * The scaling mode will be set to &drm_connector_state.picture_aspect_ratio |
| 1633 | * and can be used from &drm_connector_helper_funcs->atomic_check for validation. |
| 1634 | * |
| 1635 | * This is the atomic version of drm_mode_create_scaling_mode_property(). |
| 1636 | * |
| 1637 | * Returns: |
| 1638 | * Zero on success, negative errno on failure. |
| 1639 | */ |
| 1640 | int drm_connector_attach_scaling_mode_property(struct drm_connector *connector, |
| 1641 | u32 scaling_mode_mask) |
| 1642 | { |
| 1643 | struct drm_device *dev = connector->dev; |
| 1644 | struct drm_property *scaling_mode_property; |
| 1645 | int i; |
| 1646 | const unsigned valid_scaling_mode_mask = |
| 1647 | (1U << ARRAY_SIZE(drm_scaling_mode_enum_list)) - 1; |
| 1648 | |
| 1649 | if (WARN_ON(hweight32(scaling_mode_mask) < 2 || |
| 1650 | scaling_mode_mask & ~valid_scaling_mode_mask)) |
| 1651 | return -EINVAL; |
| 1652 | |
| 1653 | scaling_mode_property = |
| 1654 | drm_property_create(dev, DRM_MODE_PROP_ENUM, "scaling mode", |
| 1655 | hweight32(scaling_mode_mask)); |
| 1656 | |
| 1657 | if (!scaling_mode_property) |
| 1658 | return -ENOMEM; |
| 1659 | |
| 1660 | for (i = 0; i < ARRAY_SIZE(drm_scaling_mode_enum_list); i++) { |
| 1661 | int ret; |
| 1662 | |
| 1663 | if (!(BIT(i) & scaling_mode_mask)) |
| 1664 | continue; |
| 1665 | |
| 1666 | ret = drm_property_add_enum(scaling_mode_property, |
| 1667 | drm_scaling_mode_enum_list[i].type, |
| 1668 | drm_scaling_mode_enum_list[i].name); |
| 1669 | |
| 1670 | if (ret) { |
| 1671 | drm_property_destroy(dev, scaling_mode_property); |
| 1672 | |
| 1673 | return ret; |
| 1674 | } |
| 1675 | } |
| 1676 | |
| 1677 | drm_object_attach_property(&connector->base, |
| 1678 | scaling_mode_property, 0); |
| 1679 | |
| 1680 | connector->scaling_mode_property = scaling_mode_property; |
| 1681 | |
| 1682 | return 0; |
| 1683 | } |
| 1684 | EXPORT_SYMBOL(drm_connector_attach_scaling_mode_property); |
| 1685 | |
| 1686 | /** |
| 1687 | * drm_mode_create_aspect_ratio_property - create aspect ratio property |
| 1688 | * @dev: DRM device |
| 1689 | * |
| 1690 | * Called by a driver the first time it's needed, must be attached to desired |
| 1691 | * connectors. |
| 1692 | * |
| 1693 | * Returns: |
| 1694 | * Zero on success, negative errno on failure. |
| 1695 | */ |
| 1696 | int drm_mode_create_aspect_ratio_property(struct drm_device *dev) |
| 1697 | { |
| 1698 | if (dev->mode_config.aspect_ratio_property) |
| 1699 | return 0; |
| 1700 | |
| 1701 | dev->mode_config.aspect_ratio_property = |
| 1702 | drm_property_create_enum(dev, 0, "aspect ratio", |
| 1703 | drm_aspect_ratio_enum_list, |
| 1704 | ARRAY_SIZE(drm_aspect_ratio_enum_list)); |
| 1705 | |
| 1706 | if (dev->mode_config.aspect_ratio_property == NULL) |
| 1707 | return -ENOMEM; |
| 1708 | |
| 1709 | return 0; |
| 1710 | } |
| 1711 | EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property); |
| 1712 | |
| 1713 | /** |
| 1714 | * DOC: standard connector properties |
| 1715 | * |
| 1716 | * Colorspace: |
| 1717 | * This property helps select a suitable colorspace based on the sink |
| 1718 | * capability. Modern sink devices support wider gamut like BT2020. |
| 1719 | * This helps switch to BT2020 mode if the BT2020 encoded video stream |
| 1720 | * is being played by the user, same for any other colorspace. Thereby |
| 1721 | * giving a good visual experience to users. |
| 1722 | * |
| 1723 | * The expectation from userspace is that it should parse the EDID |
| 1724 | * and get supported colorspaces. Use this property and switch to the |
| 1725 | * one supported. Sink supported colorspaces should be retrieved by |
| 1726 | * userspace from EDID and driver will not explicitly expose them. |
| 1727 | * |
| 1728 | * Basically the expectation from userspace is: |
| 1729 | * - Set up CRTC DEGAMMA/CTM/GAMMA to convert to some sink |
| 1730 | * colorspace |
| 1731 | * - Set this new property to let the sink know what it |
| 1732 | * converted the CRTC output to. |
| 1733 | * - This property is just to inform sink what colorspace |
| 1734 | * source is trying to drive. |
| 1735 | * |
| 1736 | * Because between HDMI and DP have different colorspaces, |
| 1737 | * drm_mode_create_hdmi_colorspace_property() is used for HDMI connector and |
| 1738 | * drm_mode_create_dp_colorspace_property() is used for DP connector. |
| 1739 | */ |
| 1740 | |
| 1741 | /** |
| 1742 | * drm_mode_create_hdmi_colorspace_property - create hdmi colorspace property |
| 1743 | * @connector: connector to create the Colorspace property on. |
| 1744 | * |
| 1745 | * Called by a driver the first time it's needed, must be attached to desired |
| 1746 | * HDMI connectors. |
| 1747 | * |
| 1748 | * Returns: |
| 1749 | * Zero on success, negative errono on failure. |
| 1750 | */ |
| 1751 | int drm_mode_create_hdmi_colorspace_property(struct drm_connector *connector) |
| 1752 | { |
| 1753 | struct drm_device *dev = connector->dev; |
| 1754 | |
| 1755 | if (connector->colorspace_property) |
| 1756 | return 0; |
| 1757 | |
| 1758 | connector->colorspace_property = |
| 1759 | drm_property_create_enum(dev, DRM_MODE_PROP_ENUM, "Colorspace", |
| 1760 | hdmi_colorspaces, |
| 1761 | ARRAY_SIZE(hdmi_colorspaces)); |
| 1762 | |
| 1763 | if (!connector->colorspace_property) |
| 1764 | return -ENOMEM; |
| 1765 | |
| 1766 | return 0; |
| 1767 | } |
| 1768 | EXPORT_SYMBOL(drm_mode_create_hdmi_colorspace_property); |
| 1769 | |
| 1770 | /** |
| 1771 | * drm_mode_create_dp_colorspace_property - create dp colorspace property |
| 1772 | * @connector: connector to create the Colorspace property on. |
| 1773 | * |
| 1774 | * Called by a driver the first time it's needed, must be attached to desired |
| 1775 | * DP connectors. |
| 1776 | * |
| 1777 | * Returns: |
| 1778 | * Zero on success, negative errono on failure. |
| 1779 | */ |
| 1780 | int drm_mode_create_dp_colorspace_property(struct drm_connector *connector) |
| 1781 | { |
| 1782 | struct drm_device *dev = connector->dev; |
| 1783 | |
| 1784 | if (connector->colorspace_property) |
| 1785 | return 0; |
| 1786 | |
| 1787 | connector->colorspace_property = |
| 1788 | drm_property_create_enum(dev, DRM_MODE_PROP_ENUM, "Colorspace", |
| 1789 | dp_colorspaces, |
| 1790 | ARRAY_SIZE(dp_colorspaces)); |
| 1791 | |
| 1792 | if (!connector->colorspace_property) |
| 1793 | return -ENOMEM; |
| 1794 | |
| 1795 | return 0; |
| 1796 | } |
| 1797 | EXPORT_SYMBOL(drm_mode_create_dp_colorspace_property); |
| 1798 | |
| 1799 | /** |
| 1800 | * drm_mode_create_content_type_property - create content type property |
| 1801 | * @dev: DRM device |
| 1802 | * |
| 1803 | * Called by a driver the first time it's needed, must be attached to desired |
| 1804 | * connectors. |
| 1805 | * |
| 1806 | * Returns: |
| 1807 | * Zero on success, negative errno on failure. |
| 1808 | */ |
| 1809 | int drm_mode_create_content_type_property(struct drm_device *dev) |
| 1810 | { |
| 1811 | if (dev->mode_config.content_type_property) |
| 1812 | return 0; |
| 1813 | |
| 1814 | dev->mode_config.content_type_property = |
| 1815 | drm_property_create_enum(dev, 0, "content type", |
| 1816 | drm_content_type_enum_list, |
| 1817 | ARRAY_SIZE(drm_content_type_enum_list)); |
| 1818 | |
| 1819 | if (dev->mode_config.content_type_property == NULL) |
| 1820 | return -ENOMEM; |
| 1821 | |
| 1822 | return 0; |
| 1823 | } |
| 1824 | EXPORT_SYMBOL(drm_mode_create_content_type_property); |
| 1825 | |
| 1826 | /** |
| 1827 | * drm_mode_create_suggested_offset_properties - create suggests offset properties |
| 1828 | * @dev: DRM device |
| 1829 | * |
| 1830 | * Create the the suggested x/y offset property for connectors. |
| 1831 | */ |
| 1832 | int drm_mode_create_suggested_offset_properties(struct drm_device *dev) |
| 1833 | { |
| 1834 | if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property) |
| 1835 | return 0; |
| 1836 | |
| 1837 | dev->mode_config.suggested_x_property = |
| 1838 | drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff); |
| 1839 | |
| 1840 | dev->mode_config.suggested_y_property = |
| 1841 | drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff); |
| 1842 | |
| 1843 | if (dev->mode_config.suggested_x_property == NULL || |
| 1844 | dev->mode_config.suggested_y_property == NULL) |
| 1845 | return -ENOMEM; |
| 1846 | return 0; |
| 1847 | } |
| 1848 | EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties); |
| 1849 | |
| 1850 | /** |
| 1851 | * drm_connector_set_path_property - set tile property on connector |
| 1852 | * @connector: connector to set property on. |
| 1853 | * @path: path to use for property; must not be NULL. |
| 1854 | * |
| 1855 | * This creates a property to expose to userspace to specify a |
| 1856 | * connector path. This is mainly used for DisplayPort MST where |
| 1857 | * connectors have a topology and we want to allow userspace to give |
| 1858 | * them more meaningful names. |
| 1859 | * |
| 1860 | * Returns: |
| 1861 | * Zero on success, negative errno on failure. |
| 1862 | */ |
| 1863 | int drm_connector_set_path_property(struct drm_connector *connector, |
| 1864 | const char *path) |
| 1865 | { |
| 1866 | struct drm_device *dev = connector->dev; |
| 1867 | int ret; |
| 1868 | |
| 1869 | ret = drm_property_replace_global_blob(dev, |
| 1870 | &connector->path_blob_ptr, |
| 1871 | strlen(path) + 1, |
| 1872 | path, |
| 1873 | &connector->base, |
| 1874 | dev->mode_config.path_property); |
| 1875 | return ret; |
| 1876 | } |
| 1877 | EXPORT_SYMBOL(drm_connector_set_path_property); |
| 1878 | |
| 1879 | /** |
| 1880 | * drm_connector_set_tile_property - set tile property on connector |
| 1881 | * @connector: connector to set property on. |
| 1882 | * |
| 1883 | * This looks up the tile information for a connector, and creates a |
| 1884 | * property for userspace to parse if it exists. The property is of |
| 1885 | * the form of 8 integers using ':' as a separator. |
| 1886 | * This is used for dual port tiled displays with DisplayPort SST |
| 1887 | * or DisplayPort MST connectors. |
| 1888 | * |
| 1889 | * Returns: |
| 1890 | * Zero on success, errno on failure. |
| 1891 | */ |
| 1892 | int drm_connector_set_tile_property(struct drm_connector *connector) |
| 1893 | { |
| 1894 | struct drm_device *dev = connector->dev; |
| 1895 | char tile[256]; |
| 1896 | int ret; |
| 1897 | |
| 1898 | if (!connector->has_tile) { |
| 1899 | ret = drm_property_replace_global_blob(dev, |
| 1900 | &connector->tile_blob_ptr, |
| 1901 | 0, |
| 1902 | NULL, |
| 1903 | &connector->base, |
| 1904 | dev->mode_config.tile_property); |
| 1905 | return ret; |
| 1906 | } |
| 1907 | |
| 1908 | snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d", |
| 1909 | connector->tile_group->id, connector->tile_is_single_monitor, |
| 1910 | connector->num_h_tile, connector->num_v_tile, |
| 1911 | connector->tile_h_loc, connector->tile_v_loc, |
| 1912 | connector->tile_h_size, connector->tile_v_size); |
| 1913 | |
| 1914 | ret = drm_property_replace_global_blob(dev, |
| 1915 | &connector->tile_blob_ptr, |
| 1916 | strlen(tile) + 1, |
| 1917 | tile, |
| 1918 | &connector->base, |
| 1919 | dev->mode_config.tile_property); |
| 1920 | return ret; |
| 1921 | } |
| 1922 | EXPORT_SYMBOL(drm_connector_set_tile_property); |
| 1923 | |
| 1924 | /** |
| 1925 | * drm_connector_update_edid_property - update the edid property of a connector |
| 1926 | * @connector: drm connector |
| 1927 | * @edid: new value of the edid property |
| 1928 | * |
| 1929 | * This function creates a new blob modeset object and assigns its id to the |
| 1930 | * connector's edid property. |
| 1931 | * Since we also parse tile information from EDID's displayID block, we also |
| 1932 | * set the connector's tile property here. See drm_connector_set_tile_property() |
| 1933 | * for more details. |
| 1934 | * |
| 1935 | * Returns: |
| 1936 | * Zero on success, negative errno on failure. |
| 1937 | */ |
| 1938 | int drm_connector_update_edid_property(struct drm_connector *connector, |
| 1939 | const struct edid *edid) |
| 1940 | { |
| 1941 | struct drm_device *dev = connector->dev; |
| 1942 | size_t size = 0; |
| 1943 | int ret; |
| 1944 | |
| 1945 | /* ignore requests to set edid when overridden */ |
| 1946 | if (connector->override_edid) |
| 1947 | return 0; |
| 1948 | |
| 1949 | if (edid) |
| 1950 | size = EDID_LENGTH * (1 + edid->extensions); |
| 1951 | |
| 1952 | /* Set the display info, using edid if available, otherwise |
| 1953 | * reseting the values to defaults. This duplicates the work |
| 1954 | * done in drm_add_edid_modes, but that function is not |
| 1955 | * consistently called before this one in all drivers and the |
| 1956 | * computation is cheap enough that it seems better to |
| 1957 | * duplicate it rather than attempt to ensure some arbitrary |
| 1958 | * ordering of calls. |
| 1959 | */ |
| 1960 | if (edid) |
| 1961 | drm_add_display_info(connector, edid); |
| 1962 | else |
| 1963 | drm_reset_display_info(connector); |
| 1964 | |
| 1965 | drm_object_property_set_value(&connector->base, |
| 1966 | dev->mode_config.non_desktop_property, |
| 1967 | connector->display_info.non_desktop); |
| 1968 | |
| 1969 | ret = drm_property_replace_global_blob(dev, |
| 1970 | &connector->edid_blob_ptr, |
| 1971 | size, |
| 1972 | edid, |
| 1973 | &connector->base, |
| 1974 | dev->mode_config.edid_property); |
| 1975 | if (ret) |
| 1976 | return ret; |
| 1977 | return drm_connector_set_tile_property(connector); |
| 1978 | } |
| 1979 | EXPORT_SYMBOL(drm_connector_update_edid_property); |
| 1980 | |
| 1981 | /** |
| 1982 | * drm_connector_set_link_status_property - Set link status property of a connector |
| 1983 | * @connector: drm connector |
| 1984 | * @link_status: new value of link status property (0: Good, 1: Bad) |
| 1985 | * |
| 1986 | * In usual working scenario, this link status property will always be set to |
| 1987 | * "GOOD". If something fails during or after a mode set, the kernel driver |
| 1988 | * may set this link status property to "BAD". The caller then needs to send a |
| 1989 | * hotplug uevent for userspace to re-check the valid modes through |
| 1990 | * GET_CONNECTOR_IOCTL and retry modeset. |
| 1991 | * |
| 1992 | * Note: Drivers cannot rely on userspace to support this property and |
| 1993 | * issue a modeset. As such, they may choose to handle issues (like |
| 1994 | * re-training a link) without userspace's intervention. |
| 1995 | * |
| 1996 | * The reason for adding this property is to handle link training failures, but |
| 1997 | * it is not limited to DP or link training. For example, if we implement |
| 1998 | * asynchronous setcrtc, this property can be used to report any failures in that. |
| 1999 | */ |
| 2000 | void drm_connector_set_link_status_property(struct drm_connector *connector, |
| 2001 | uint64_t link_status) |
| 2002 | { |
| 2003 | struct drm_device *dev = connector->dev; |
| 2004 | |
| 2005 | drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); |
| 2006 | connector->state->link_status = link_status; |
| 2007 | drm_modeset_unlock(&dev->mode_config.connection_mutex); |
| 2008 | } |
| 2009 | EXPORT_SYMBOL(drm_connector_set_link_status_property); |
| 2010 | |
| 2011 | /** |
| 2012 | * drm_connector_attach_max_bpc_property - attach "max bpc" property |
| 2013 | * @connector: connector to attach max bpc property on. |
| 2014 | * @min: The minimum bit depth supported by the connector. |
| 2015 | * @max: The maximum bit depth supported by the connector. |
| 2016 | * |
| 2017 | * This is used to add support for limiting the bit depth on a connector. |
| 2018 | * |
| 2019 | * Returns: |
| 2020 | * Zero on success, negative errno on failure. |
| 2021 | */ |
| 2022 | int drm_connector_attach_max_bpc_property(struct drm_connector *connector, |
| 2023 | int min, int max) |
| 2024 | { |
| 2025 | struct drm_device *dev = connector->dev; |
| 2026 | struct drm_property *prop; |
| 2027 | |
| 2028 | prop = connector->max_bpc_property; |
| 2029 | if (!prop) { |
| 2030 | prop = drm_property_create_range(dev, 0, "max bpc", min, max); |
| 2031 | if (!prop) |
| 2032 | return -ENOMEM; |
| 2033 | |
| 2034 | connector->max_bpc_property = prop; |
| 2035 | } |
| 2036 | |
| 2037 | drm_object_attach_property(&connector->base, prop, max); |
| 2038 | connector->state->max_requested_bpc = max; |
| 2039 | connector->state->max_bpc = max; |
| 2040 | |
| 2041 | return 0; |
| 2042 | } |
| 2043 | EXPORT_SYMBOL(drm_connector_attach_max_bpc_property); |
| 2044 | |
| 2045 | /** |
| 2046 | * drm_connector_set_vrr_capable_property - sets the variable refresh rate |
| 2047 | * capable property for a connector |
| 2048 | * @connector: drm connector |
| 2049 | * @capable: True if the connector is variable refresh rate capable |
| 2050 | * |
| 2051 | * Should be used by atomic drivers to update the indicated support for |
| 2052 | * variable refresh rate over a connector. |
| 2053 | */ |
| 2054 | void drm_connector_set_vrr_capable_property( |
| 2055 | struct drm_connector *connector, bool capable) |
| 2056 | { |
| 2057 | if (!connector->vrr_capable_property) |
| 2058 | return; |
| 2059 | |
| 2060 | drm_object_property_set_value(&connector->base, |
| 2061 | connector->vrr_capable_property, |
| 2062 | capable); |
| 2063 | } |
| 2064 | EXPORT_SYMBOL(drm_connector_set_vrr_capable_property); |
| 2065 | |
| 2066 | /** |
| 2067 | * drm_connector_init_panel_orientation_property - |
| 2068 | * initialize the connecters panel_orientation property |
| 2069 | * @connector: connector for which to init the panel-orientation property. |
| 2070 | * @width: width in pixels of the panel, used for panel quirk detection |
| 2071 | * @height: height in pixels of the panel, used for panel quirk detection |
| 2072 | * |
| 2073 | * This function should only be called for built-in panels, after setting |
| 2074 | * connector->display_info.panel_orientation first (if known). |
| 2075 | * |
| 2076 | * This function will check for platform specific (e.g. DMI based) quirks |
| 2077 | * overriding display_info.panel_orientation first, then if panel_orientation |
| 2078 | * is not DRM_MODE_PANEL_ORIENTATION_UNKNOWN it will attach the |
| 2079 | * "panel orientation" property to the connector. |
| 2080 | * |
| 2081 | * Returns: |
| 2082 | * Zero on success, negative errno on failure. |
| 2083 | */ |
| 2084 | int drm_connector_init_panel_orientation_property( |
| 2085 | struct drm_connector *connector, int width, int height) |
| 2086 | { |
| 2087 | struct drm_device *dev = connector->dev; |
| 2088 | struct drm_display_info *info = &connector->display_info; |
| 2089 | struct drm_property *prop; |
| 2090 | int orientation_quirk; |
| 2091 | |
| 2092 | orientation_quirk = drm_get_panel_orientation_quirk(width, height); |
| 2093 | if (orientation_quirk != DRM_MODE_PANEL_ORIENTATION_UNKNOWN) |
| 2094 | info->panel_orientation = orientation_quirk; |
| 2095 | |
| 2096 | if (info->panel_orientation == DRM_MODE_PANEL_ORIENTATION_UNKNOWN) |
| 2097 | return 0; |
| 2098 | |
| 2099 | prop = dev->mode_config.panel_orientation_property; |
| 2100 | if (!prop) { |
| 2101 | prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE, |
| 2102 | "panel orientation", |
| 2103 | drm_panel_orientation_enum_list, |
| 2104 | ARRAY_SIZE(drm_panel_orientation_enum_list)); |
| 2105 | if (!prop) |
| 2106 | return -ENOMEM; |
| 2107 | |
| 2108 | dev->mode_config.panel_orientation_property = prop; |
| 2109 | } |
| 2110 | |
| 2111 | drm_object_attach_property(&connector->base, prop, |
| 2112 | info->panel_orientation); |
| 2113 | return 0; |
| 2114 | } |
| 2115 | EXPORT_SYMBOL(drm_connector_init_panel_orientation_property); |
| 2116 | |
| 2117 | int drm_connector_set_obj_prop(struct drm_mode_object *obj, |
| 2118 | struct drm_property *property, |
| 2119 | uint64_t value) |
| 2120 | { |
| 2121 | int ret = -EINVAL; |
| 2122 | struct drm_connector *connector = obj_to_connector(obj); |
| 2123 | |
| 2124 | /* Do DPMS ourselves */ |
| 2125 | if (property == connector->dev->mode_config.dpms_property) { |
| 2126 | ret = (*connector->funcs->dpms)(connector, (int)value); |
| 2127 | } else if (connector->funcs->set_property) |
| 2128 | ret = connector->funcs->set_property(connector, property, value); |
| 2129 | |
| 2130 | if (!ret) |
| 2131 | drm_object_property_set_value(&connector->base, property, value); |
| 2132 | return ret; |
| 2133 | } |
| 2134 | |
| 2135 | int drm_connector_property_set_ioctl(struct drm_device *dev, |
| 2136 | void *data, struct drm_file *file_priv) |
| 2137 | { |
| 2138 | struct drm_mode_connector_set_property *conn_set_prop = data; |
| 2139 | struct drm_mode_obj_set_property obj_set_prop = { |
| 2140 | .value = conn_set_prop->value, |
| 2141 | .prop_id = conn_set_prop->prop_id, |
| 2142 | .obj_id = conn_set_prop->connector_id, |
| 2143 | .obj_type = DRM_MODE_OBJECT_CONNECTOR |
| 2144 | }; |
| 2145 | |
| 2146 | /* It does all the locking and checking we need */ |
| 2147 | return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv); |
| 2148 | } |
| 2149 | |
| 2150 | static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector) |
| 2151 | { |
| 2152 | /* For atomic drivers only state objects are synchronously updated and |
| 2153 | * protected by modeset locks, so check those first. */ |
| 2154 | if (connector->state) |
| 2155 | return connector->state->best_encoder; |
| 2156 | return connector->encoder; |
| 2157 | } |
| 2158 | |
| 2159 | static bool |
| 2160 | drm_mode_expose_to_userspace(const struct drm_display_mode *mode, |
| 2161 | const struct list_head *export_list, |
| 2162 | const struct drm_file *file_priv) |
| 2163 | { |
| 2164 | /* |
| 2165 | * If user-space hasn't configured the driver to expose the stereo 3D |
| 2166 | * modes, don't expose them. |
| 2167 | */ |
| 2168 | if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode)) |
| 2169 | return false; |
| 2170 | /* |
| 2171 | * If user-space hasn't configured the driver to expose the modes |
| 2172 | * with aspect-ratio, don't expose them. However if such a mode |
| 2173 | * is unique, let it be exposed, but reset the aspect-ratio flags |
| 2174 | * while preparing the list of user-modes. |
| 2175 | */ |
| 2176 | if (!file_priv->aspect_ratio_allowed) { |
| 2177 | struct drm_display_mode *mode_itr; |
| 2178 | |
| 2179 | list_for_each_entry(mode_itr, export_list, export_head) |
| 2180 | if (drm_mode_match(mode_itr, mode, |
| 2181 | DRM_MODE_MATCH_TIMINGS | |
| 2182 | DRM_MODE_MATCH_CLOCK | |
| 2183 | DRM_MODE_MATCH_FLAGS | |
| 2184 | DRM_MODE_MATCH_3D_FLAGS)) |
| 2185 | return false; |
| 2186 | } |
| 2187 | |
| 2188 | return true; |
| 2189 | } |
| 2190 | |
| 2191 | int drm_mode_getconnector(struct drm_device *dev, void *data, |
| 2192 | struct drm_file *file_priv) |
| 2193 | { |
| 2194 | struct drm_mode_get_connector *out_resp = data; |
| 2195 | struct drm_connector *connector; |
| 2196 | struct drm_encoder *encoder; |
| 2197 | struct drm_display_mode *mode; |
| 2198 | int mode_count = 0; |
| 2199 | int encoders_count = 0; |
| 2200 | int ret = 0; |
| 2201 | int copied = 0; |
| 2202 | int i; |
| 2203 | struct drm_mode_modeinfo u_mode; |
| 2204 | struct drm_mode_modeinfo __user *mode_ptr; |
| 2205 | uint32_t __user *encoder_ptr; |
| 2206 | LIST_HEAD(export_list); |
| 2207 | |
| 2208 | if (!drm_core_check_feature(dev, DRIVER_MODESET)) |
| 2209 | return -EOPNOTSUPP; |
| 2210 | |
| 2211 | memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo)); |
| 2212 | |
| 2213 | connector = drm_connector_lookup(dev, file_priv, out_resp->connector_id); |
| 2214 | if (!connector) |
| 2215 | return -ENOENT; |
| 2216 | |
| 2217 | drm_connector_for_each_possible_encoder(connector, encoder, i) |
| 2218 | encoders_count++; |
| 2219 | |
| 2220 | if ((out_resp->count_encoders >= encoders_count) && encoders_count) { |
| 2221 | copied = 0; |
| 2222 | encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr); |
| 2223 | |
| 2224 | drm_connector_for_each_possible_encoder(connector, encoder, i) { |
| 2225 | if (put_user(encoder->base.id, encoder_ptr + copied)) { |
| 2226 | ret = -EFAULT; |
| 2227 | goto out; |
| 2228 | } |
| 2229 | copied++; |
| 2230 | } |
| 2231 | } |
| 2232 | out_resp->count_encoders = encoders_count; |
| 2233 | |
| 2234 | out_resp->connector_id = connector->base.id; |
| 2235 | out_resp->connector_type = connector->connector_type; |
| 2236 | out_resp->connector_type_id = connector->connector_type_id; |
| 2237 | |
| 2238 | mutex_lock(&dev->mode_config.mutex); |
| 2239 | if (out_resp->count_modes == 0) { |
| 2240 | connector->funcs->fill_modes(connector, |
| 2241 | dev->mode_config.max_width, |
| 2242 | dev->mode_config.max_height); |
| 2243 | } |
| 2244 | |
| 2245 | out_resp->mm_width = connector->display_info.width_mm; |
| 2246 | out_resp->mm_height = connector->display_info.height_mm; |
| 2247 | out_resp->subpixel = connector->display_info.subpixel_order; |
| 2248 | out_resp->connection = connector->status; |
| 2249 | |
| 2250 | /* delayed so we get modes regardless of pre-fill_modes state */ |
| 2251 | list_for_each_entry(mode, &connector->modes, head) |
| 2252 | if (drm_mode_expose_to_userspace(mode, &export_list, |
| 2253 | file_priv)) { |
| 2254 | list_add_tail(&mode->export_head, &export_list); |
| 2255 | mode_count++; |
| 2256 | } |
| 2257 | |
| 2258 | /* |
| 2259 | * This ioctl is called twice, once to determine how much space is |
| 2260 | * needed, and the 2nd time to fill it. |
| 2261 | * The modes that need to be exposed to the user are maintained in the |
| 2262 | * 'export_list'. When the ioctl is called first time to determine the, |
| 2263 | * space, the export_list gets filled, to find the no.of modes. In the |
| 2264 | * 2nd time, the user modes are filled, one by one from the export_list. |
| 2265 | */ |
| 2266 | if ((out_resp->count_modes >= mode_count) && mode_count) { |
| 2267 | copied = 0; |
| 2268 | mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr; |
| 2269 | list_for_each_entry(mode, &export_list, export_head) { |
| 2270 | drm_mode_convert_to_umode(&u_mode, mode); |
| 2271 | /* |
| 2272 | * Reset aspect ratio flags of user-mode, if modes with |
| 2273 | * aspect-ratio are not supported. |
| 2274 | */ |
| 2275 | if (!file_priv->aspect_ratio_allowed) |
| 2276 | u_mode.flags &= ~DRM_MODE_FLAG_PIC_AR_MASK; |
| 2277 | if (copy_to_user(mode_ptr + copied, |
| 2278 | &u_mode, sizeof(u_mode))) { |
| 2279 | ret = -EFAULT; |
| 2280 | mutex_unlock(&dev->mode_config.mutex); |
| 2281 | |
| 2282 | goto out; |
| 2283 | } |
| 2284 | copied++; |
| 2285 | } |
| 2286 | } |
| 2287 | out_resp->count_modes = mode_count; |
| 2288 | mutex_unlock(&dev->mode_config.mutex); |
| 2289 | |
| 2290 | drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); |
| 2291 | encoder = drm_connector_get_encoder(connector); |
| 2292 | if (encoder) |
| 2293 | out_resp->encoder_id = encoder->base.id; |
| 2294 | else |
| 2295 | out_resp->encoder_id = 0; |
| 2296 | |
| 2297 | /* Only grab properties after probing, to make sure EDID and other |
| 2298 | * properties reflect the latest status. */ |
| 2299 | ret = drm_mode_object_get_properties(&connector->base, file_priv->atomic, |
| 2300 | (uint32_t __user *)(unsigned long)(out_resp->props_ptr), |
| 2301 | (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr), |
| 2302 | &out_resp->count_props); |
| 2303 | drm_modeset_unlock(&dev->mode_config.connection_mutex); |
| 2304 | |
| 2305 | out: |
| 2306 | drm_connector_put(connector); |
| 2307 | |
| 2308 | return ret; |
| 2309 | } |
| 2310 | |
| 2311 | |
| 2312 | /** |
| 2313 | * DOC: Tile group |
| 2314 | * |
| 2315 | * Tile groups are used to represent tiled monitors with a unique integer |
| 2316 | * identifier. Tiled monitors using DisplayID v1.3 have a unique 8-byte handle, |
| 2317 | * we store this in a tile group, so we have a common identifier for all tiles |
| 2318 | * in a monitor group. The property is called "TILE". Drivers can manage tile |
| 2319 | * groups using drm_mode_create_tile_group(), drm_mode_put_tile_group() and |
| 2320 | * drm_mode_get_tile_group(). But this is only needed for internal panels where |
| 2321 | * the tile group information is exposed through a non-standard way. |
| 2322 | */ |
| 2323 | |
| 2324 | static void drm_tile_group_free(struct kref *kref) |
| 2325 | { |
| 2326 | struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount); |
| 2327 | struct drm_device *dev = tg->dev; |
| 2328 | mutex_lock(&dev->mode_config.idr_mutex); |
| 2329 | idr_remove(&dev->mode_config.tile_idr, tg->id); |
| 2330 | mutex_unlock(&dev->mode_config.idr_mutex); |
| 2331 | kfree(tg); |
| 2332 | } |
| 2333 | |
| 2334 | /** |
| 2335 | * drm_mode_put_tile_group - drop a reference to a tile group. |
| 2336 | * @dev: DRM device |
| 2337 | * @tg: tile group to drop reference to. |
| 2338 | * |
| 2339 | * drop reference to tile group and free if 0. |
| 2340 | */ |
| 2341 | void drm_mode_put_tile_group(struct drm_device *dev, |
| 2342 | struct drm_tile_group *tg) |
| 2343 | { |
| 2344 | kref_put(&tg->refcount, drm_tile_group_free); |
| 2345 | } |
| 2346 | EXPORT_SYMBOL(drm_mode_put_tile_group); |
| 2347 | |
| 2348 | /** |
| 2349 | * drm_mode_get_tile_group - get a reference to an existing tile group |
| 2350 | * @dev: DRM device |
| 2351 | * @topology: 8-bytes unique per monitor. |
| 2352 | * |
| 2353 | * Use the unique bytes to get a reference to an existing tile group. |
| 2354 | * |
| 2355 | * RETURNS: |
| 2356 | * tile group or NULL if not found. |
| 2357 | */ |
| 2358 | struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev, |
| 2359 | char topology[8]) |
| 2360 | { |
| 2361 | struct drm_tile_group *tg; |
| 2362 | int id; |
| 2363 | mutex_lock(&dev->mode_config.idr_mutex); |
| 2364 | idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) { |
| 2365 | if (!memcmp(tg->group_data, topology, 8)) { |
| 2366 | if (!kref_get_unless_zero(&tg->refcount)) |
| 2367 | tg = NULL; |
| 2368 | mutex_unlock(&dev->mode_config.idr_mutex); |
| 2369 | return tg; |
| 2370 | } |
| 2371 | } |
| 2372 | mutex_unlock(&dev->mode_config.idr_mutex); |
| 2373 | return NULL; |
| 2374 | } |
| 2375 | EXPORT_SYMBOL(drm_mode_get_tile_group); |
| 2376 | |
| 2377 | /** |
| 2378 | * drm_mode_create_tile_group - create a tile group from a displayid description |
| 2379 | * @dev: DRM device |
| 2380 | * @topology: 8-bytes unique per monitor. |
| 2381 | * |
| 2382 | * Create a tile group for the unique monitor, and get a unique |
| 2383 | * identifier for the tile group. |
| 2384 | * |
| 2385 | * RETURNS: |
| 2386 | * new tile group or NULL. |
| 2387 | */ |
| 2388 | struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev, |
| 2389 | char topology[8]) |
| 2390 | { |
| 2391 | struct drm_tile_group *tg; |
| 2392 | int ret; |
| 2393 | |
| 2394 | tg = kzalloc(sizeof(*tg), GFP_KERNEL); |
| 2395 | if (!tg) |
| 2396 | return NULL; |
| 2397 | |
| 2398 | kref_init(&tg->refcount); |
| 2399 | memcpy(tg->group_data, topology, 8); |
| 2400 | tg->dev = dev; |
| 2401 | |
| 2402 | mutex_lock(&dev->mode_config.idr_mutex); |
| 2403 | ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL); |
| 2404 | if (ret >= 0) { |
| 2405 | tg->id = ret; |
| 2406 | } else { |
| 2407 | kfree(tg); |
| 2408 | tg = NULL; |
| 2409 | } |
| 2410 | |
| 2411 | mutex_unlock(&dev->mode_config.idr_mutex); |
| 2412 | return tg; |
| 2413 | } |
| 2414 | EXPORT_SYMBOL(drm_mode_create_tile_group); |