2 * Copyright (c) 2016 Intel Corporation
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.
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
23 #include <drm/drm_auth.h>
24 #include <drm/drm_connector.h>
25 #include <drm/drm_edid.h>
26 #include <drm/drm_encoder.h>
27 #include <drm/drm_utils.h>
28 #include <drm/drm_print.h>
29 #include <drm/drm_drv.h>
30 #include <drm/drm_file.h>
31 #include <drm/drm_privacy_screen_consumer.h>
32 #include <drm/drm_sysfs.h>
34 #include <linux/uaccess.h>
36 #include "drm_crtc_internal.h"
37 #include "drm_internal.h"
42 * In DRM connectors are the general abstraction for display sinks, and include
43 * also fixed panels or anything else that can display pixels in some form. As
44 * opposed to all other KMS objects representing hardware (like CRTC, encoder or
45 * plane abstractions) connectors can be hotplugged and unplugged at runtime.
46 * Hence they are reference-counted using drm_connector_get() and
47 * drm_connector_put().
49 * KMS driver must create, initialize, register and attach at a &struct
50 * drm_connector for each such sink. The instance is created as other KMS
51 * objects and initialized by setting the following fields. The connector is
52 * initialized with a call to drm_connector_init() with a pointer to the
53 * &struct drm_connector_funcs and a connector type, and then exposed to
54 * userspace with a call to drm_connector_register().
56 * Connectors must be attached to an encoder to be used. For devices that map
57 * connectors to encoders 1:1, the connector should be attached at
58 * initialization time with a call to drm_connector_attach_encoder(). The
59 * driver must also set the &drm_connector.encoder field to point to the
62 * For connectors which are not fixed (like built-in panels) the driver needs to
63 * support hotplug notifications. The simplest way to do that is by using the
64 * probe helpers, see drm_kms_helper_poll_init() for connectors which don't have
65 * hardware support for hotplug interrupts. Connectors with hardware hotplug
66 * support can instead use e.g. drm_helper_hpd_irq_event().
70 * Global connector list for drm_connector_find_by_fwnode().
71 * Note drm_connector_[un]register() first take connector->lock and then
72 * take the connector_list_lock.
74 static DEFINE_MUTEX(connector_list_lock);
75 static LIST_HEAD(connector_list);
77 struct drm_conn_prop_enum_list {
84 * Connector and encoder types.
86 static struct drm_conn_prop_enum_list drm_connector_enum_list[] = {
87 { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
88 { DRM_MODE_CONNECTOR_VGA, "VGA" },
89 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
90 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
91 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
92 { DRM_MODE_CONNECTOR_Composite, "Composite" },
93 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
94 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
95 { DRM_MODE_CONNECTOR_Component, "Component" },
96 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
97 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
98 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
99 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
100 { DRM_MODE_CONNECTOR_TV, "TV" },
101 { DRM_MODE_CONNECTOR_eDP, "eDP" },
102 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
103 { DRM_MODE_CONNECTOR_DSI, "DSI" },
104 { DRM_MODE_CONNECTOR_DPI, "DPI" },
105 { DRM_MODE_CONNECTOR_WRITEBACK, "Writeback" },
106 { DRM_MODE_CONNECTOR_SPI, "SPI" },
107 { DRM_MODE_CONNECTOR_USB, "USB" },
110 void drm_connector_ida_init(void)
114 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
115 ida_init(&drm_connector_enum_list[i].ida);
118 void drm_connector_ida_destroy(void)
122 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
123 ida_destroy(&drm_connector_enum_list[i].ida);
127 * drm_get_connector_type_name - return a string for connector type
128 * @type: The connector type (DRM_MODE_CONNECTOR_*)
130 * Returns: the name of the connector type, or NULL if the type is not valid.
132 const char *drm_get_connector_type_name(unsigned int type)
134 if (type < ARRAY_SIZE(drm_connector_enum_list))
135 return drm_connector_enum_list[type].name;
139 EXPORT_SYMBOL(drm_get_connector_type_name);
142 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
143 * @connector: connector to query
145 * The kernel supports per-connector configuration of its consoles through
146 * use of the video= parameter. This function parses that option and
147 * extracts the user's specified mode (or enable/disable status) for a
148 * particular connector. This is typically only used during the early fbdev
151 static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
153 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
156 if (fb_get_options(connector->name, &option))
159 if (!drm_mode_parse_command_line_for_connector(option,
165 DRM_INFO("forcing %s connector %s\n", connector->name,
166 drm_get_connector_force_name(mode->force));
167 connector->force = mode->force;
170 if (mode->panel_orientation != DRM_MODE_PANEL_ORIENTATION_UNKNOWN) {
171 DRM_INFO("cmdline forces connector %s panel_orientation to %d\n",
172 connector->name, mode->panel_orientation);
173 drm_connector_set_panel_orientation(connector,
174 mode->panel_orientation);
177 DRM_DEBUG_KMS("cmdline mode for connector %s %s %dx%d@%dHz%s%s%s\n",
178 connector->name, mode->name,
179 mode->xres, mode->yres,
180 mode->refresh_specified ? mode->refresh : 60,
181 mode->rb ? " reduced blanking" : "",
182 mode->margins ? " with margins" : "",
183 mode->interlace ? " interlaced" : "");
186 static void drm_connector_free(struct kref *kref)
188 struct drm_connector *connector =
189 container_of(kref, struct drm_connector, base.refcount);
190 struct drm_device *dev = connector->dev;
192 drm_mode_object_unregister(dev, &connector->base);
193 connector->funcs->destroy(connector);
196 void drm_connector_free_work_fn(struct work_struct *work)
198 struct drm_connector *connector, *n;
199 struct drm_device *dev =
200 container_of(work, struct drm_device, mode_config.connector_free_work);
201 struct drm_mode_config *config = &dev->mode_config;
203 struct llist_node *freed;
205 spin_lock_irqsave(&config->connector_list_lock, flags);
206 freed = llist_del_all(&config->connector_free_list);
207 spin_unlock_irqrestore(&config->connector_list_lock, flags);
209 llist_for_each_entry_safe(connector, n, freed, free_node) {
210 drm_mode_object_unregister(dev, &connector->base);
211 connector->funcs->destroy(connector);
216 * drm_connector_init - Init a preallocated connector
218 * @connector: the connector to init
219 * @funcs: callbacks for this connector
220 * @connector_type: user visible type of the connector
222 * Initialises a preallocated connector. Connectors should be
223 * subclassed as part of driver connector objects.
226 * Zero on success, error code on failure.
228 int drm_connector_init(struct drm_device *dev,
229 struct drm_connector *connector,
230 const struct drm_connector_funcs *funcs,
233 struct drm_mode_config *config = &dev->mode_config;
235 struct ida *connector_ida =
236 &drm_connector_enum_list[connector_type].ida;
238 WARN_ON(drm_drv_uses_atomic_modeset(dev) &&
239 (!funcs->atomic_destroy_state ||
240 !funcs->atomic_duplicate_state));
242 ret = __drm_mode_object_add(dev, &connector->base,
243 DRM_MODE_OBJECT_CONNECTOR,
244 false, drm_connector_free);
248 connector->base.properties = &connector->properties;
249 connector->dev = dev;
250 connector->funcs = funcs;
252 /* connector index is used with 32bit bitmasks */
253 ret = ida_simple_get(&config->connector_ida, 0, 32, GFP_KERNEL);
255 DRM_DEBUG_KMS("Failed to allocate %s connector index: %d\n",
256 drm_connector_enum_list[connector_type].name,
260 connector->index = ret;
263 connector->connector_type = connector_type;
264 connector->connector_type_id =
265 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
266 if (connector->connector_type_id < 0) {
267 ret = connector->connector_type_id;
271 kasprintf(GFP_KERNEL, "%s-%d",
272 drm_connector_enum_list[connector_type].name,
273 connector->connector_type_id);
274 if (!connector->name) {
276 goto out_put_type_id;
279 INIT_LIST_HEAD(&connector->global_connector_list_entry);
280 INIT_LIST_HEAD(&connector->probed_modes);
281 INIT_LIST_HEAD(&connector->modes);
282 mutex_init(&connector->mutex);
283 connector->edid_blob_ptr = NULL;
284 connector->epoch_counter = 0;
285 connector->tile_blob_ptr = NULL;
286 connector->status = connector_status_unknown;
287 connector->display_info.panel_orientation =
288 DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
290 drm_connector_get_cmdline_mode(connector);
292 /* We should add connectors at the end to avoid upsetting the connector
295 spin_lock_irq(&config->connector_list_lock);
296 list_add_tail(&connector->head, &config->connector_list);
297 config->num_connector++;
298 spin_unlock_irq(&config->connector_list_lock);
300 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL &&
301 connector_type != DRM_MODE_CONNECTOR_WRITEBACK)
302 drm_connector_attach_edid_property(connector);
304 drm_object_attach_property(&connector->base,
305 config->dpms_property, 0);
307 drm_object_attach_property(&connector->base,
308 config->link_status_property,
311 drm_object_attach_property(&connector->base,
312 config->non_desktop_property,
314 drm_object_attach_property(&connector->base,
315 config->tile_property,
318 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
319 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
322 connector->debugfs_entry = NULL;
325 ida_simple_remove(connector_ida, connector->connector_type_id);
328 ida_simple_remove(&config->connector_ida, connector->index);
331 drm_mode_object_unregister(dev, &connector->base);
335 EXPORT_SYMBOL(drm_connector_init);
338 * drm_connector_init_with_ddc - Init a preallocated connector
340 * @connector: the connector to init
341 * @funcs: callbacks for this connector
342 * @connector_type: user visible type of the connector
343 * @ddc: pointer to the associated ddc adapter
345 * Initialises a preallocated connector. Connectors should be
346 * subclassed as part of driver connector objects.
348 * Ensures that the ddc field of the connector is correctly set.
351 * Zero on success, error code on failure.
353 int drm_connector_init_with_ddc(struct drm_device *dev,
354 struct drm_connector *connector,
355 const struct drm_connector_funcs *funcs,
357 struct i2c_adapter *ddc)
361 ret = drm_connector_init(dev, connector, funcs, connector_type);
365 /* provide ddc symlink in sysfs */
366 connector->ddc = ddc;
370 EXPORT_SYMBOL(drm_connector_init_with_ddc);
373 * drm_connector_attach_edid_property - attach edid property.
374 * @connector: the connector
376 * Some connector types like DRM_MODE_CONNECTOR_VIRTUAL do not get a
377 * edid property attached by default. This function can be used to
378 * explicitly enable the edid property in these cases.
380 void drm_connector_attach_edid_property(struct drm_connector *connector)
382 struct drm_mode_config *config = &connector->dev->mode_config;
384 drm_object_attach_property(&connector->base,
385 config->edid_property,
388 EXPORT_SYMBOL(drm_connector_attach_edid_property);
391 * drm_connector_attach_encoder - attach a connector to an encoder
392 * @connector: connector to attach
393 * @encoder: encoder to attach @connector to
395 * This function links up a connector to an encoder. Note that the routing
396 * restrictions between encoders and crtcs are exposed to userspace through the
397 * possible_clones and possible_crtcs bitmasks.
400 * Zero on success, negative errno on failure.
402 int drm_connector_attach_encoder(struct drm_connector *connector,
403 struct drm_encoder *encoder)
406 * In the past, drivers have attempted to model the static association
407 * of connector to encoder in simple connector/encoder devices using a
408 * direct assignment of connector->encoder = encoder. This connection
409 * is a logical one and the responsibility of the core, so drivers are
410 * expected not to mess with this.
412 * Note that the error return should've been enough here, but a large
413 * majority of drivers ignores the return value, so add in a big WARN
414 * to get people's attention.
416 if (WARN_ON(connector->encoder))
419 connector->possible_encoders |= drm_encoder_mask(encoder);
423 EXPORT_SYMBOL(drm_connector_attach_encoder);
426 * drm_connector_has_possible_encoder - check if the connector and encoder are
427 * associated with each other
428 * @connector: the connector
429 * @encoder: the encoder
432 * True if @encoder is one of the possible encoders for @connector.
434 bool drm_connector_has_possible_encoder(struct drm_connector *connector,
435 struct drm_encoder *encoder)
437 return connector->possible_encoders & drm_encoder_mask(encoder);
439 EXPORT_SYMBOL(drm_connector_has_possible_encoder);
441 static void drm_mode_remove(struct drm_connector *connector,
442 struct drm_display_mode *mode)
444 list_del(&mode->head);
445 drm_mode_destroy(connector->dev, mode);
449 * drm_connector_cleanup - cleans up an initialised connector
450 * @connector: connector to cleanup
452 * Cleans up the connector but doesn't free the object.
454 void drm_connector_cleanup(struct drm_connector *connector)
456 struct drm_device *dev = connector->dev;
457 struct drm_display_mode *mode, *t;
459 /* The connector should have been removed from userspace long before
460 * it is finally destroyed.
462 if (WARN_ON(connector->registration_state ==
463 DRM_CONNECTOR_REGISTERED))
464 drm_connector_unregister(connector);
466 if (connector->privacy_screen) {
467 drm_privacy_screen_put(connector->privacy_screen);
468 connector->privacy_screen = NULL;
471 if (connector->tile_group) {
472 drm_mode_put_tile_group(dev, connector->tile_group);
473 connector->tile_group = NULL;
476 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
477 drm_mode_remove(connector, mode);
479 list_for_each_entry_safe(mode, t, &connector->modes, head)
480 drm_mode_remove(connector, mode);
482 ida_simple_remove(&drm_connector_enum_list[connector->connector_type].ida,
483 connector->connector_type_id);
485 ida_simple_remove(&dev->mode_config.connector_ida,
488 kfree(connector->display_info.bus_formats);
489 drm_mode_object_unregister(dev, &connector->base);
490 kfree(connector->name);
491 connector->name = NULL;
492 fwnode_handle_put(connector->fwnode);
493 connector->fwnode = NULL;
494 spin_lock_irq(&dev->mode_config.connector_list_lock);
495 list_del(&connector->head);
496 dev->mode_config.num_connector--;
497 spin_unlock_irq(&dev->mode_config.connector_list_lock);
499 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
500 if (connector->state && connector->funcs->atomic_destroy_state)
501 connector->funcs->atomic_destroy_state(connector,
504 mutex_destroy(&connector->mutex);
506 memset(connector, 0, sizeof(*connector));
508 EXPORT_SYMBOL(drm_connector_cleanup);
511 * drm_connector_register - register a connector
512 * @connector: the connector to register
514 * Register userspace interfaces for a connector. Only call this for connectors
515 * which can be hotplugged after drm_dev_register() has been called already,
516 * e.g. DP MST connectors. All other connectors will be registered automatically
517 * when calling drm_dev_register().
520 * Zero on success, error code on failure.
522 int drm_connector_register(struct drm_connector *connector)
526 if (!connector->dev->registered)
529 mutex_lock(&connector->mutex);
530 if (connector->registration_state != DRM_CONNECTOR_INITIALIZING)
533 ret = drm_sysfs_connector_add(connector);
537 drm_debugfs_connector_add(connector);
539 if (connector->funcs->late_register) {
540 ret = connector->funcs->late_register(connector);
545 drm_mode_object_register(connector->dev, &connector->base);
547 connector->registration_state = DRM_CONNECTOR_REGISTERED;
549 /* Let userspace know we have a new connector */
550 drm_sysfs_connector_hotplug_event(connector);
552 if (connector->privacy_screen)
553 drm_privacy_screen_register_notifier(connector->privacy_screen,
554 &connector->privacy_screen_notifier);
556 mutex_lock(&connector_list_lock);
557 list_add_tail(&connector->global_connector_list_entry, &connector_list);
558 mutex_unlock(&connector_list_lock);
562 drm_debugfs_connector_remove(connector);
563 drm_sysfs_connector_remove(connector);
565 mutex_unlock(&connector->mutex);
568 EXPORT_SYMBOL(drm_connector_register);
571 * drm_connector_unregister - unregister a connector
572 * @connector: the connector to unregister
574 * Unregister userspace interfaces for a connector. Only call this for
575 * connectors which have registered explicitly by calling drm_dev_register(),
576 * since connectors are unregistered automatically when drm_dev_unregister() is
579 void drm_connector_unregister(struct drm_connector *connector)
581 mutex_lock(&connector->mutex);
582 if (connector->registration_state != DRM_CONNECTOR_REGISTERED) {
583 mutex_unlock(&connector->mutex);
587 mutex_lock(&connector_list_lock);
588 list_del_init(&connector->global_connector_list_entry);
589 mutex_unlock(&connector_list_lock);
591 if (connector->privacy_screen)
592 drm_privacy_screen_unregister_notifier(
593 connector->privacy_screen,
594 &connector->privacy_screen_notifier);
596 if (connector->funcs->early_unregister)
597 connector->funcs->early_unregister(connector);
599 drm_sysfs_connector_remove(connector);
600 drm_debugfs_connector_remove(connector);
602 connector->registration_state = DRM_CONNECTOR_UNREGISTERED;
603 mutex_unlock(&connector->mutex);
605 EXPORT_SYMBOL(drm_connector_unregister);
607 void drm_connector_unregister_all(struct drm_device *dev)
609 struct drm_connector *connector;
610 struct drm_connector_list_iter conn_iter;
612 drm_connector_list_iter_begin(dev, &conn_iter);
613 drm_for_each_connector_iter(connector, &conn_iter)
614 drm_connector_unregister(connector);
615 drm_connector_list_iter_end(&conn_iter);
618 int drm_connector_register_all(struct drm_device *dev)
620 struct drm_connector *connector;
621 struct drm_connector_list_iter conn_iter;
624 drm_connector_list_iter_begin(dev, &conn_iter);
625 drm_for_each_connector_iter(connector, &conn_iter) {
626 ret = drm_connector_register(connector);
630 drm_connector_list_iter_end(&conn_iter);
633 drm_connector_unregister_all(dev);
638 * drm_get_connector_status_name - return a string for connector status
639 * @status: connector status to compute name of
641 * In contrast to the other drm_get_*_name functions this one here returns a
642 * const pointer and hence is threadsafe.
644 * Returns: connector status string
646 const char *drm_get_connector_status_name(enum drm_connector_status status)
648 if (status == connector_status_connected)
650 else if (status == connector_status_disconnected)
651 return "disconnected";
655 EXPORT_SYMBOL(drm_get_connector_status_name);
658 * drm_get_connector_force_name - return a string for connector force
659 * @force: connector force to get name of
661 * Returns: const pointer to name.
663 const char *drm_get_connector_force_name(enum drm_connector_force force)
666 case DRM_FORCE_UNSPECIFIED:
667 return "unspecified";
672 case DRM_FORCE_ON_DIGITAL:
679 #ifdef CONFIG_LOCKDEP
680 static struct lockdep_map connector_list_iter_dep_map = {
681 .name = "drm_connector_list_iter"
686 * drm_connector_list_iter_begin - initialize a connector_list iterator
688 * @iter: connector_list iterator
690 * Sets @iter up to walk the &drm_mode_config.connector_list of @dev. @iter
691 * must always be cleaned up again by calling drm_connector_list_iter_end().
692 * Iteration itself happens using drm_connector_list_iter_next() or
693 * drm_for_each_connector_iter().
695 void drm_connector_list_iter_begin(struct drm_device *dev,
696 struct drm_connector_list_iter *iter)
700 lock_acquire_shared_recursive(&connector_list_iter_dep_map, 0, 1, NULL, _RET_IP_);
702 EXPORT_SYMBOL(drm_connector_list_iter_begin);
705 * Extra-safe connector put function that works in any context. Should only be
706 * used from the connector_iter functions, where we never really expect to
707 * actually release the connector when dropping our final reference.
710 __drm_connector_put_safe(struct drm_connector *conn)
712 struct drm_mode_config *config = &conn->dev->mode_config;
714 lockdep_assert_held(&config->connector_list_lock);
716 if (!refcount_dec_and_test(&conn->base.refcount.refcount))
719 llist_add(&conn->free_node, &config->connector_free_list);
720 schedule_work(&config->connector_free_work);
724 * drm_connector_list_iter_next - return next connector
725 * @iter: connector_list iterator
727 * Returns: the next connector for @iter, or NULL when the list walk has
730 struct drm_connector *
731 drm_connector_list_iter_next(struct drm_connector_list_iter *iter)
733 struct drm_connector *old_conn = iter->conn;
734 struct drm_mode_config *config = &iter->dev->mode_config;
735 struct list_head *lhead;
738 spin_lock_irqsave(&config->connector_list_lock, flags);
739 lhead = old_conn ? &old_conn->head : &config->connector_list;
742 if (lhead->next == &config->connector_list) {
748 iter->conn = list_entry(lhead, struct drm_connector, head);
750 /* loop until it's not a zombie connector */
751 } while (!kref_get_unless_zero(&iter->conn->base.refcount));
754 __drm_connector_put_safe(old_conn);
755 spin_unlock_irqrestore(&config->connector_list_lock, flags);
759 EXPORT_SYMBOL(drm_connector_list_iter_next);
762 * drm_connector_list_iter_end - tear down a connector_list iterator
763 * @iter: connector_list iterator
765 * Tears down @iter and releases any resources (like &drm_connector references)
766 * acquired while walking the list. This must always be called, both when the
767 * iteration completes fully or when it was aborted without walking the entire
770 void drm_connector_list_iter_end(struct drm_connector_list_iter *iter)
772 struct drm_mode_config *config = &iter->dev->mode_config;
777 spin_lock_irqsave(&config->connector_list_lock, flags);
778 __drm_connector_put_safe(iter->conn);
779 spin_unlock_irqrestore(&config->connector_list_lock, flags);
781 lock_release(&connector_list_iter_dep_map, _RET_IP_);
783 EXPORT_SYMBOL(drm_connector_list_iter_end);
785 static const struct drm_prop_enum_list drm_subpixel_enum_list[] = {
786 { SubPixelUnknown, "Unknown" },
787 { SubPixelHorizontalRGB, "Horizontal RGB" },
788 { SubPixelHorizontalBGR, "Horizontal BGR" },
789 { SubPixelVerticalRGB, "Vertical RGB" },
790 { SubPixelVerticalBGR, "Vertical BGR" },
791 { SubPixelNone, "None" },
795 * drm_get_subpixel_order_name - return a string for a given subpixel enum
796 * @order: enum of subpixel_order
798 * Note you could abuse this and return something out of bounds, but that
799 * would be a caller error. No unscrubbed user data should make it here.
801 * Returns: string describing an enumerated subpixel property
803 const char *drm_get_subpixel_order_name(enum subpixel_order order)
805 return drm_subpixel_enum_list[order].name;
807 EXPORT_SYMBOL(drm_get_subpixel_order_name);
809 static const struct drm_prop_enum_list drm_dpms_enum_list[] = {
810 { DRM_MODE_DPMS_ON, "On" },
811 { DRM_MODE_DPMS_STANDBY, "Standby" },
812 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
813 { DRM_MODE_DPMS_OFF, "Off" }
815 DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
817 static const struct drm_prop_enum_list drm_link_status_enum_list[] = {
818 { DRM_MODE_LINK_STATUS_GOOD, "Good" },
819 { DRM_MODE_LINK_STATUS_BAD, "Bad" },
823 * drm_display_info_set_bus_formats - set the supported bus formats
824 * @info: display info to store bus formats in
825 * @formats: array containing the supported bus formats
826 * @num_formats: the number of entries in the fmts array
828 * Store the supported bus formats in display info structure.
829 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
830 * a full list of available formats.
833 * 0 on success or a negative error code on failure.
835 int drm_display_info_set_bus_formats(struct drm_display_info *info,
837 unsigned int num_formats)
841 if (!formats && num_formats)
844 if (formats && num_formats) {
845 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
851 kfree(info->bus_formats);
852 info->bus_formats = fmts;
853 info->num_bus_formats = num_formats;
857 EXPORT_SYMBOL(drm_display_info_set_bus_formats);
859 /* Optional connector properties. */
860 static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = {
861 { DRM_MODE_SCALE_NONE, "None" },
862 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
863 { DRM_MODE_SCALE_CENTER, "Center" },
864 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
867 static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
868 { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
869 { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
870 { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
873 static const struct drm_prop_enum_list drm_content_type_enum_list[] = {
874 { DRM_MODE_CONTENT_TYPE_NO_DATA, "No Data" },
875 { DRM_MODE_CONTENT_TYPE_GRAPHICS, "Graphics" },
876 { DRM_MODE_CONTENT_TYPE_PHOTO, "Photo" },
877 { DRM_MODE_CONTENT_TYPE_CINEMA, "Cinema" },
878 { DRM_MODE_CONTENT_TYPE_GAME, "Game" },
881 static const struct drm_prop_enum_list drm_panel_orientation_enum_list[] = {
882 { DRM_MODE_PANEL_ORIENTATION_NORMAL, "Normal" },
883 { DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP, "Upside Down" },
884 { DRM_MODE_PANEL_ORIENTATION_LEFT_UP, "Left Side Up" },
885 { DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, "Right Side Up" },
888 static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = {
889 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
890 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
891 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
893 DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
895 static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = {
896 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I, TV-out and DP */
897 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
898 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
900 DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
901 drm_dvi_i_subconnector_enum_list)
903 static const struct drm_prop_enum_list drm_tv_select_enum_list[] = {
904 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
905 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
906 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
907 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
908 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
910 DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
912 static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = {
913 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I, TV-out and DP */
914 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
915 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
916 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
917 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
919 DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
920 drm_tv_subconnector_enum_list)
922 static const struct drm_prop_enum_list drm_dp_subconnector_enum_list[] = {
923 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I, TV-out and DP */
924 { DRM_MODE_SUBCONNECTOR_VGA, "VGA" }, /* DP */
925 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DP */
926 { DRM_MODE_SUBCONNECTOR_HDMIA, "HDMI" }, /* DP */
927 { DRM_MODE_SUBCONNECTOR_DisplayPort, "DP" }, /* DP */
928 { DRM_MODE_SUBCONNECTOR_Wireless, "Wireless" }, /* DP */
929 { DRM_MODE_SUBCONNECTOR_Native, "Native" }, /* DP */
932 DRM_ENUM_NAME_FN(drm_get_dp_subconnector_name,
933 drm_dp_subconnector_enum_list)
935 static const struct drm_prop_enum_list hdmi_colorspaces[] = {
936 /* For Default case, driver will set the colorspace */
937 { DRM_MODE_COLORIMETRY_DEFAULT, "Default" },
938 /* Standard Definition Colorimetry based on CEA 861 */
939 { DRM_MODE_COLORIMETRY_SMPTE_170M_YCC, "SMPTE_170M_YCC" },
940 { DRM_MODE_COLORIMETRY_BT709_YCC, "BT709_YCC" },
941 /* Standard Definition Colorimetry based on IEC 61966-2-4 */
942 { DRM_MODE_COLORIMETRY_XVYCC_601, "XVYCC_601" },
943 /* High Definition Colorimetry based on IEC 61966-2-4 */
944 { DRM_MODE_COLORIMETRY_XVYCC_709, "XVYCC_709" },
945 /* Colorimetry based on IEC 61966-2-1/Amendment 1 */
946 { DRM_MODE_COLORIMETRY_SYCC_601, "SYCC_601" },
947 /* Colorimetry based on IEC 61966-2-5 [33] */
948 { DRM_MODE_COLORIMETRY_OPYCC_601, "opYCC_601" },
949 /* Colorimetry based on IEC 61966-2-5 */
950 { DRM_MODE_COLORIMETRY_OPRGB, "opRGB" },
951 /* Colorimetry based on ITU-R BT.2020 */
952 { DRM_MODE_COLORIMETRY_BT2020_CYCC, "BT2020_CYCC" },
953 /* Colorimetry based on ITU-R BT.2020 */
954 { DRM_MODE_COLORIMETRY_BT2020_RGB, "BT2020_RGB" },
955 /* Colorimetry based on ITU-R BT.2020 */
956 { DRM_MODE_COLORIMETRY_BT2020_YCC, "BT2020_YCC" },
957 /* Added as part of Additional Colorimetry Extension in 861.G */
958 { DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65, "DCI-P3_RGB_D65" },
959 { DRM_MODE_COLORIMETRY_DCI_P3_RGB_THEATER, "DCI-P3_RGB_Theater" },
963 * As per DP 1.4a spec, 2.2.5.7.5 VSC SDP Payload for Pixel Encoding/Colorimetry
966 static const struct drm_prop_enum_list dp_colorspaces[] = {
967 /* For Default case, driver will set the colorspace */
968 { DRM_MODE_COLORIMETRY_DEFAULT, "Default" },
969 { DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED, "RGB_Wide_Gamut_Fixed_Point" },
970 /* Colorimetry based on scRGB (IEC 61966-2-2) */
971 { DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT, "RGB_Wide_Gamut_Floating_Point" },
972 /* Colorimetry based on IEC 61966-2-5 */
973 { DRM_MODE_COLORIMETRY_OPRGB, "opRGB" },
974 /* Colorimetry based on SMPTE RP 431-2 */
975 { DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65, "DCI-P3_RGB_D65" },
976 /* Colorimetry based on ITU-R BT.2020 */
977 { DRM_MODE_COLORIMETRY_BT2020_RGB, "BT2020_RGB" },
978 { DRM_MODE_COLORIMETRY_BT601_YCC, "BT601_YCC" },
979 { DRM_MODE_COLORIMETRY_BT709_YCC, "BT709_YCC" },
980 /* Standard Definition Colorimetry based on IEC 61966-2-4 */
981 { DRM_MODE_COLORIMETRY_XVYCC_601, "XVYCC_601" },
982 /* High Definition Colorimetry based on IEC 61966-2-4 */
983 { DRM_MODE_COLORIMETRY_XVYCC_709, "XVYCC_709" },
984 /* Colorimetry based on IEC 61966-2-1/Amendment 1 */
985 { DRM_MODE_COLORIMETRY_SYCC_601, "SYCC_601" },
986 /* Colorimetry based on IEC 61966-2-5 [33] */
987 { DRM_MODE_COLORIMETRY_OPYCC_601, "opYCC_601" },
988 /* Colorimetry based on ITU-R BT.2020 */
989 { DRM_MODE_COLORIMETRY_BT2020_CYCC, "BT2020_CYCC" },
990 /* Colorimetry based on ITU-R BT.2020 */
991 { DRM_MODE_COLORIMETRY_BT2020_YCC, "BT2020_YCC" },
995 * DOC: standard connector properties
997 * DRM connectors have a few standardized properties:
1000 * Blob property which contains the current EDID read from the sink. This
1001 * is useful to parse sink identification information like vendor, model
1002 * and serial. Drivers should update this property by calling
1003 * drm_connector_update_edid_property(), usually after having parsed
1004 * the EDID using drm_add_edid_modes(). Userspace cannot change this
1007 * User-space should not parse the EDID to obtain information exposed via
1008 * other KMS properties (because the kernel might apply limits, quirks or
1009 * fixups to the EDID). For instance, user-space should not try to parse
1010 * mode lists from the EDID.
1012 * Legacy property for setting the power state of the connector. For atomic
1013 * drivers this is only provided for backwards compatibility with existing
1014 * drivers, it remaps to controlling the "ACTIVE" property on the CRTC the
1015 * connector is linked to. Drivers should never set this property directly,
1016 * it is handled by the DRM core by calling the &drm_connector_funcs.dpms
1017 * callback. For atomic drivers the remapping to the "ACTIVE" property is
1018 * implemented in the DRM core.
1020 * Note that this property cannot be set through the MODE_ATOMIC ioctl,
1021 * userspace must use "ACTIVE" on the CRTC instead.
1025 * For userspace also running on legacy drivers the "DPMS" semantics are a
1026 * lot more complicated. First, userspace cannot rely on the "DPMS" value
1027 * returned by the GETCONNECTOR actually reflecting reality, because many
1028 * drivers fail to update it. For atomic drivers this is taken care of in
1029 * drm_atomic_helper_update_legacy_modeset_state().
1031 * The second issue is that the DPMS state is only well-defined when the
1032 * connector is connected to a CRTC. In atomic the DRM core enforces that
1033 * "ACTIVE" is off in such a case, no such checks exists for "DPMS".
1035 * Finally, when enabling an output using the legacy SETCONFIG ioctl then
1036 * "DPMS" is forced to ON. But see above, that might not be reflected in
1037 * the software value on legacy drivers.
1039 * Summarizing: Only set "DPMS" when the connector is known to be enabled,
1040 * assume that a successful SETCONFIG call also sets "DPMS" to on, and
1041 * never read back the value of "DPMS" because it can be incorrect.
1043 * Connector path property to identify how this sink is physically
1044 * connected. Used by DP MST. This should be set by calling
1045 * drm_connector_set_path_property(), in the case of DP MST with the
1046 * path property the MST manager created. Userspace cannot change this
1049 * Connector tile group property to indicate how a set of DRM connector
1050 * compose together into one logical screen. This is used by both high-res
1051 * external screens (often only using a single cable, but exposing multiple
1052 * DP MST sinks), or high-res integrated panels (like dual-link DSI) which
1053 * are not gen-locked. Note that for tiled panels which are genlocked, like
1054 * dual-link LVDS or dual-link DSI, the driver should try to not expose the
1055 * tiling and virtualise both &drm_crtc and &drm_plane if needed. Drivers
1056 * should update this value using drm_connector_set_tile_property().
1057 * Userspace cannot change this property.
1059 * Connector link-status property to indicate the status of link. The
1060 * default value of link-status is "GOOD". If something fails during or
1061 * after modeset, the kernel driver may set this to "BAD" and issue a
1062 * hotplug uevent. Drivers should update this value using
1063 * drm_connector_set_link_status_property().
1065 * When user-space receives the hotplug uevent and detects a "BAD"
1066 * link-status, the sink doesn't receive pixels anymore (e.g. the screen
1067 * becomes completely black). The list of available modes may have
1068 * changed. User-space is expected to pick a new mode if the current one
1069 * has disappeared and perform a new modeset with link-status set to
1070 * "GOOD" to re-enable the connector.
1072 * If multiple connectors share the same CRTC and one of them gets a "BAD"
1073 * link-status, the other are unaffected (ie. the sinks still continue to
1076 * When user-space performs an atomic commit on a connector with a "BAD"
1077 * link-status without resetting the property to "GOOD", the sink may
1078 * still not receive pixels. When user-space performs an atomic commit
1079 * which resets the link-status property to "GOOD" without the
1080 * ALLOW_MODESET flag set, it might fail because a modeset is required.
1082 * User-space can only change link-status to "GOOD", changing it to "BAD"
1085 * For backwards compatibility with non-atomic userspace the kernel
1086 * tries to automatically set the link-status back to "GOOD" in the
1087 * SETCRTC IOCTL. This might fail if the mode is no longer valid, similar
1088 * to how it might fail if a different screen has been connected in the
1091 * Indicates the output should be ignored for purposes of displaying a
1092 * standard desktop environment or console. This is most likely because
1093 * the output device is not rectilinear.
1094 * Content Protection:
1095 * This property is used by userspace to request the kernel protect future
1096 * content communicated over the link. When requested, kernel will apply
1097 * the appropriate means of protection (most often HDCP), and use the
1098 * property to tell userspace the protection is active.
1100 * Drivers can set this up by calling
1101 * drm_connector_attach_content_protection_property() on initialization.
1103 * The value of this property can be one of the following:
1105 * DRM_MODE_CONTENT_PROTECTION_UNDESIRED = 0
1106 * The link is not protected, content is transmitted in the clear.
1107 * DRM_MODE_CONTENT_PROTECTION_DESIRED = 1
1108 * Userspace has requested content protection, but the link is not
1109 * currently protected. When in this state, kernel should enable
1110 * Content Protection as soon as possible.
1111 * DRM_MODE_CONTENT_PROTECTION_ENABLED = 2
1112 * Userspace has requested content protection, and the link is
1113 * protected. Only the driver can set the property to this value.
1114 * If userspace attempts to set to ENABLED, kernel will return
1119 * - DESIRED state should be preserved until userspace de-asserts it by
1120 * setting the property to UNDESIRED. This means ENABLED should only
1121 * transition to UNDESIRED when the user explicitly requests it.
1122 * - If the state is DESIRED, kernel should attempt to re-authenticate the
1123 * link whenever possible. This includes across disable/enable, dpms,
1124 * hotplug, downstream device changes, link status failures, etc..
1125 * - Kernel sends uevent with the connector id and property id through
1126 * @drm_hdcp_update_content_protection, upon below kernel triggered
1129 * - DESIRED -> ENABLED (authentication success)
1130 * - ENABLED -> DESIRED (termination of authentication)
1131 * - Please note no uevents for userspace triggered property state changes,
1132 * which can't fail such as
1134 * - DESIRED/ENABLED -> UNDESIRED
1135 * - UNDESIRED -> DESIRED
1136 * - Userspace is responsible for polling the property or listen to uevents
1137 * to determine when the value transitions from ENABLED to DESIRED.
1138 * This signifies the link is no longer protected and userspace should
1139 * take appropriate action (whatever that might be).
1141 * HDCP Content Type:
1142 * This Enum property is used by the userspace to declare the content type
1143 * of the display stream, to kernel. Here display stream stands for any
1144 * display content that userspace intended to display through HDCP
1147 * Content Type of a stream is decided by the owner of the stream, as
1148 * "HDCP Type0" or "HDCP Type1".
1150 * The value of the property can be one of the below:
1151 * - "HDCP Type0": DRM_MODE_HDCP_CONTENT_TYPE0 = 0
1152 * - "HDCP Type1": DRM_MODE_HDCP_CONTENT_TYPE1 = 1
1154 * When kernel starts the HDCP authentication (see "Content Protection"
1155 * for details), it uses the content type in "HDCP Content Type"
1156 * for performing the HDCP authentication with the display sink.
1158 * Please note in HDCP spec versions, a link can be authenticated with
1159 * HDCP 2.2 for Content Type 0/Content Type 1. Where as a link can be
1160 * authenticated with HDCP1.4 only for Content Type 0(though it is implicit
1161 * in nature. As there is no reference for Content Type in HDCP1.4).
1163 * HDCP2.2 authentication protocol itself takes the "Content Type" as a
1164 * parameter, which is a input for the DP HDCP2.2 encryption algo.
1166 * In case of Type 0 content protection request, kernel driver can choose
1167 * either of HDCP spec versions 1.4 and 2.2. When HDCP2.2 is used for
1168 * "HDCP Type 0", a HDCP 2.2 capable repeater in the downstream can send
1169 * that content to a HDCP 1.4 authenticated HDCP sink (Type0 link).
1170 * But if the content is classified as "HDCP Type 1", above mentioned
1171 * HDCP 2.2 repeater wont send the content to the HDCP sink as it can't
1172 * authenticate the HDCP1.4 capable sink for "HDCP Type 1".
1174 * Please note userspace can be ignorant of the HDCP versions used by the
1175 * kernel driver to achieve the "HDCP Content Type".
1177 * At current scenario, classifying a content as Type 1 ensures that the
1178 * content will be displayed only through the HDCP2.2 encrypted link.
1180 * Note that the HDCP Content Type property is introduced at HDCP 2.2, and
1181 * defaults to type 0. It is only exposed by drivers supporting HDCP 2.2
1182 * (hence supporting Type 0 and Type 1). Based on how next versions of
1183 * HDCP specs are defined content Type could be used for higher versions
1186 * If content type is changed when "Content Protection" is not UNDESIRED,
1187 * then kernel will disable the HDCP and re-enable with new type in the
1188 * same atomic commit. And when "Content Protection" is ENABLED, it means
1189 * that link is HDCP authenticated and encrypted, for the transmission of
1190 * the Type of stream mentioned at "HDCP Content Type".
1192 * HDR_OUTPUT_METADATA:
1193 * Connector property to enable userspace to send HDR Metadata to
1194 * driver. This metadata is based on the composition and blending
1195 * policies decided by user, taking into account the hardware and
1196 * sink capabilities. The driver gets this metadata and creates a
1197 * Dynamic Range and Mastering Infoframe (DRM) in case of HDMI,
1198 * SDP packet (Non-audio INFOFRAME SDP v1.3) for DP. This is then
1199 * sent to sink. This notifies the sink of the upcoming frame's Color
1200 * Encoding and Luminance parameters.
1202 * Userspace first need to detect the HDR capabilities of sink by
1203 * reading and parsing the EDID. Details of HDR metadata for HDMI
1204 * are added in CTA 861.G spec. For DP , its defined in VESA DP
1205 * Standard v1.4. It needs to then get the metadata information
1206 * of the video/game/app content which are encoded in HDR (basically
1207 * using HDR transfer functions). With this information it needs to
1208 * decide on a blending policy and compose the relevant
1209 * layers/overlays into a common format. Once this blending is done,
1210 * userspace will be aware of the metadata of the composed frame to
1211 * be send to sink. It then uses this property to communicate this
1212 * metadata to driver which then make a Infoframe packet and sends
1213 * to sink based on the type of encoder connected.
1215 * Userspace will be responsible to do Tone mapping operation in case:
1216 * - Some layers are HDR and others are SDR
1217 * - HDR layers luminance is not same as sink
1219 * It will even need to do colorspace conversion and get all layers
1220 * to one common colorspace for blending. It can use either GL, Media
1221 * or display engine to get this done based on the capabilities of the
1222 * associated hardware.
1224 * Driver expects metadata to be put in &struct hdr_output_metadata
1225 * structure from userspace. This is received as blob and stored in
1226 * &drm_connector_state.hdr_output_metadata. It parses EDID and saves the
1227 * sink metadata in &struct hdr_sink_metadata, as
1228 * &drm_connector.hdr_sink_metadata. Driver uses
1229 * drm_hdmi_infoframe_set_hdr_metadata() helper to set the HDR metadata,
1230 * hdmi_drm_infoframe_pack() to pack the infoframe as per spec, in case of
1234 * This range property is used by userspace to limit the bit depth. When
1235 * used the driver would limit the bpc in accordance with the valid range
1236 * supported by the hardware and sink. Drivers to use the function
1237 * drm_connector_attach_max_bpc_property() to create and attach the
1238 * property to the connector during initialization.
1240 * Connectors also have one standardized atomic property:
1243 * Mode object ID of the &drm_crtc this connector should be connected to.
1245 * Connectors for LCD panels may also have one standardized property:
1247 * panel orientation:
1248 * On some devices the LCD panel is mounted in the casing in such a way
1249 * that the up/top side of the panel does not match with the top side of
1250 * the device. Userspace can use this property to check for this.
1251 * Note that input coordinates from touchscreens (input devices with
1252 * INPUT_PROP_DIRECT) will still map 1:1 to the actual LCD panel
1253 * coordinates, so if userspace rotates the picture to adjust for
1254 * the orientation it must also apply the same transformation to the
1255 * touchscreen input coordinates. This property is initialized by calling
1256 * drm_connector_set_panel_orientation() or
1257 * drm_connector_set_panel_orientation_with_quirk()
1260 * This property defines how a non-native mode is upscaled to the native
1261 * mode of an LCD panel:
1264 * No upscaling happens, scaling is left to the panel. Not all
1265 * drivers expose this mode.
1267 * The output is upscaled to the full resolution of the panel,
1268 * ignoring the aspect ratio.
1270 * No upscaling happens, the output is centered within the native
1271 * resolution the panel.
1273 * The output is upscaled to maximize either the width or height
1274 * while retaining the aspect ratio.
1276 * This property should be set up by calling
1277 * drm_connector_attach_scaling_mode_property(). Note that drivers
1278 * can also expose this property to external outputs, in which case they
1279 * must support "None", which should be the default (since external screens
1280 * have a built-in scaler).
1283 * This property is used by DVI-I, TVout and DisplayPort to indicate different
1284 * connector subtypes. Enum values more or less match with those from main
1286 * For DVI-I and TVout there is also a matching property "select subconnector"
1287 * allowing to switch between signal types.
1288 * DP subconnector corresponds to a downstream port.
1290 * privacy-screen sw-state, privacy-screen hw-state:
1291 * These 2 optional properties can be used to query the state of the
1292 * electronic privacy screen that is available on some displays; and in
1293 * some cases also control the state. If a driver implements these
1294 * properties then both properties must be present.
1296 * "privacy-screen hw-state" is read-only and reflects the actual state
1297 * of the privacy-screen, possible values: "Enabled", "Disabled,
1298 * "Enabled-locked", "Disabled-locked". The locked states indicate
1299 * that the state cannot be changed through the DRM API. E.g. there
1300 * might be devices where the firmware-setup options, or a hardware
1301 * slider-switch, offer always on / off modes.
1303 * "privacy-screen sw-state" can be set to change the privacy-screen state
1304 * when not locked. In this case the driver must update the hw-state
1305 * property to reflect the new state on completion of the commit of the
1306 * sw-state property. Setting the sw-state property when the hw-state is
1307 * locked must be interpreted by the driver as a request to change the
1308 * state to the set state when the hw-state becomes unlocked. E.g. if
1309 * "privacy-screen hw-state" is "Enabled-locked" and the sw-state
1310 * gets set to "Disabled" followed by the user unlocking the state by
1311 * changing the slider-switch position, then the driver must set the
1312 * state to "Disabled" upon receiving the unlock event.
1314 * In some cases the privacy-screen's actual state might change outside of
1315 * control of the DRM code. E.g. there might be a firmware handled hotkey
1316 * which toggles the actual state, or the actual state might be changed
1317 * through another userspace API such as writing /proc/acpi/ibm/lcdshadow.
1318 * In this case the driver must update both the hw-state and the sw-state
1319 * to reflect the new value, overwriting any pending state requests in the
1320 * sw-state. Any pending sw-state requests are thus discarded.
1322 * Note that the ability for the state to change outside of control of
1323 * the DRM master process means that userspace must not cache the value
1324 * of the sw-state. Caching the sw-state value and including it in later
1325 * atomic commits may lead to overriding a state change done through e.g.
1326 * a firmware handled hotkey. Therefor userspace must not include the
1327 * privacy-screen sw-state in an atomic commit unless it wants to change
1331 int drm_connector_create_standard_properties(struct drm_device *dev)
1333 struct drm_property *prop;
1335 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1336 DRM_MODE_PROP_IMMUTABLE,
1340 dev->mode_config.edid_property = prop;
1342 prop = drm_property_create_enum(dev, 0,
1343 "DPMS", drm_dpms_enum_list,
1344 ARRAY_SIZE(drm_dpms_enum_list));
1347 dev->mode_config.dpms_property = prop;
1349 prop = drm_property_create(dev,
1350 DRM_MODE_PROP_BLOB |
1351 DRM_MODE_PROP_IMMUTABLE,
1355 dev->mode_config.path_property = prop;
1357 prop = drm_property_create(dev,
1358 DRM_MODE_PROP_BLOB |
1359 DRM_MODE_PROP_IMMUTABLE,
1363 dev->mode_config.tile_property = prop;
1365 prop = drm_property_create_enum(dev, 0, "link-status",
1366 drm_link_status_enum_list,
1367 ARRAY_SIZE(drm_link_status_enum_list));
1370 dev->mode_config.link_status_property = prop;
1372 prop = drm_property_create_bool(dev, DRM_MODE_PROP_IMMUTABLE, "non-desktop");
1375 dev->mode_config.non_desktop_property = prop;
1377 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB,
1378 "HDR_OUTPUT_METADATA", 0);
1381 dev->mode_config.hdr_output_metadata_property = prop;
1387 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1390 * Called by a driver the first time a DVI-I connector is made.
1394 int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1396 struct drm_property *dvi_i_selector;
1397 struct drm_property *dvi_i_subconnector;
1399 if (dev->mode_config.dvi_i_select_subconnector_property)
1403 drm_property_create_enum(dev, 0,
1404 "select subconnector",
1405 drm_dvi_i_select_enum_list,
1406 ARRAY_SIZE(drm_dvi_i_select_enum_list));
1407 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1409 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1411 drm_dvi_i_subconnector_enum_list,
1412 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
1413 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1417 EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1420 * drm_connector_attach_dp_subconnector_property - create subconnector property for DP
1421 * @connector: drm_connector to attach property
1423 * Called by a driver when DP connector is created.
1425 void drm_connector_attach_dp_subconnector_property(struct drm_connector *connector)
1427 struct drm_mode_config *mode_config = &connector->dev->mode_config;
1429 if (!mode_config->dp_subconnector_property)
1430 mode_config->dp_subconnector_property =
1431 drm_property_create_enum(connector->dev,
1432 DRM_MODE_PROP_IMMUTABLE,
1434 drm_dp_subconnector_enum_list,
1435 ARRAY_SIZE(drm_dp_subconnector_enum_list));
1437 drm_object_attach_property(&connector->base,
1438 mode_config->dp_subconnector_property,
1439 DRM_MODE_SUBCONNECTOR_Unknown);
1441 EXPORT_SYMBOL(drm_connector_attach_dp_subconnector_property);
1444 * DOC: HDMI connector properties
1446 * content type (HDMI specific):
1447 * Indicates content type setting to be used in HDMI infoframes to indicate
1448 * content type for the external device, so that it adjusts its display
1449 * settings accordingly.
1451 * The value of this property can be one of the following:
1454 * Content type is unknown
1456 * Content type is graphics
1458 * Content type is photo
1460 * Content type is cinema
1462 * Content type is game
1464 * The meaning of each content type is defined in CTA-861-G table 15.
1466 * Drivers can set up this property by calling
1467 * drm_connector_attach_content_type_property(). Decoding to
1468 * infoframe values is done through drm_hdmi_avi_infoframe_content_type().
1472 * drm_connector_attach_content_type_property - attach content-type property
1473 * @connector: connector to attach content type property on.
1475 * Called by a driver the first time a HDMI connector is made.
1479 int drm_connector_attach_content_type_property(struct drm_connector *connector)
1481 if (!drm_mode_create_content_type_property(connector->dev))
1482 drm_object_attach_property(&connector->base,
1483 connector->dev->mode_config.content_type_property,
1484 DRM_MODE_CONTENT_TYPE_NO_DATA);
1487 EXPORT_SYMBOL(drm_connector_attach_content_type_property);
1491 * drm_hdmi_avi_infoframe_content_type() - fill the HDMI AVI infoframe
1492 * content type information, based
1493 * on correspondent DRM property.
1494 * @frame: HDMI AVI infoframe
1495 * @conn_state: DRM display connector state
1498 void drm_hdmi_avi_infoframe_content_type(struct hdmi_avi_infoframe *frame,
1499 const struct drm_connector_state *conn_state)
1501 switch (conn_state->content_type) {
1502 case DRM_MODE_CONTENT_TYPE_GRAPHICS:
1503 frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS;
1505 case DRM_MODE_CONTENT_TYPE_CINEMA:
1506 frame->content_type = HDMI_CONTENT_TYPE_CINEMA;
1508 case DRM_MODE_CONTENT_TYPE_GAME:
1509 frame->content_type = HDMI_CONTENT_TYPE_GAME;
1511 case DRM_MODE_CONTENT_TYPE_PHOTO:
1512 frame->content_type = HDMI_CONTENT_TYPE_PHOTO;
1515 /* Graphics is the default(0) */
1516 frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS;
1519 frame->itc = conn_state->content_type != DRM_MODE_CONTENT_TYPE_NO_DATA;
1521 EXPORT_SYMBOL(drm_hdmi_avi_infoframe_content_type);
1524 * drm_connector_attach_tv_margin_properties - attach TV connector margin
1526 * @connector: DRM connector
1528 * Called by a driver when it needs to attach TV margin props to a connector.
1529 * Typically used on SDTV and HDMI connectors.
1531 void drm_connector_attach_tv_margin_properties(struct drm_connector *connector)
1533 struct drm_device *dev = connector->dev;
1535 drm_object_attach_property(&connector->base,
1536 dev->mode_config.tv_left_margin_property,
1538 drm_object_attach_property(&connector->base,
1539 dev->mode_config.tv_right_margin_property,
1541 drm_object_attach_property(&connector->base,
1542 dev->mode_config.tv_top_margin_property,
1544 drm_object_attach_property(&connector->base,
1545 dev->mode_config.tv_bottom_margin_property,
1548 EXPORT_SYMBOL(drm_connector_attach_tv_margin_properties);
1551 * drm_mode_create_tv_margin_properties - create TV connector margin properties
1554 * Called by a driver's HDMI connector initialization routine, this function
1555 * creates the TV margin properties for a given device. No need to call this
1556 * function for an SDTV connector, it's already called from
1557 * drm_mode_create_tv_properties().
1560 * 0 on success or a negative error code on failure.
1562 int drm_mode_create_tv_margin_properties(struct drm_device *dev)
1564 if (dev->mode_config.tv_left_margin_property)
1567 dev->mode_config.tv_left_margin_property =
1568 drm_property_create_range(dev, 0, "left margin", 0, 100);
1569 if (!dev->mode_config.tv_left_margin_property)
1572 dev->mode_config.tv_right_margin_property =
1573 drm_property_create_range(dev, 0, "right margin", 0, 100);
1574 if (!dev->mode_config.tv_right_margin_property)
1577 dev->mode_config.tv_top_margin_property =
1578 drm_property_create_range(dev, 0, "top margin", 0, 100);
1579 if (!dev->mode_config.tv_top_margin_property)
1582 dev->mode_config.tv_bottom_margin_property =
1583 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
1584 if (!dev->mode_config.tv_bottom_margin_property)
1589 EXPORT_SYMBOL(drm_mode_create_tv_margin_properties);
1592 * drm_mode_create_tv_properties - create TV specific connector properties
1594 * @num_modes: number of different TV formats (modes) supported
1595 * @modes: array of pointers to strings containing name of each format
1597 * Called by a driver's TV initialization routine, this function creates
1598 * the TV specific connector properties for a given device. Caller is
1599 * responsible for allocating a list of format names and passing them to
1603 * 0 on success or a negative error code on failure.
1605 int drm_mode_create_tv_properties(struct drm_device *dev,
1606 unsigned int num_modes,
1607 const char * const modes[])
1609 struct drm_property *tv_selector;
1610 struct drm_property *tv_subconnector;
1613 if (dev->mode_config.tv_select_subconnector_property)
1617 * Basic connector properties
1619 tv_selector = drm_property_create_enum(dev, 0,
1620 "select subconnector",
1621 drm_tv_select_enum_list,
1622 ARRAY_SIZE(drm_tv_select_enum_list));
1626 dev->mode_config.tv_select_subconnector_property = tv_selector;
1629 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1631 drm_tv_subconnector_enum_list,
1632 ARRAY_SIZE(drm_tv_subconnector_enum_list));
1633 if (!tv_subconnector)
1635 dev->mode_config.tv_subconnector_property = tv_subconnector;
1638 * Other, TV specific properties: margins & TV modes.
1640 if (drm_mode_create_tv_margin_properties(dev))
1643 dev->mode_config.tv_mode_property =
1644 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1646 if (!dev->mode_config.tv_mode_property)
1649 for (i = 0; i < num_modes; i++)
1650 drm_property_add_enum(dev->mode_config.tv_mode_property,
1653 dev->mode_config.tv_brightness_property =
1654 drm_property_create_range(dev, 0, "brightness", 0, 100);
1655 if (!dev->mode_config.tv_brightness_property)
1658 dev->mode_config.tv_contrast_property =
1659 drm_property_create_range(dev, 0, "contrast", 0, 100);
1660 if (!dev->mode_config.tv_contrast_property)
1663 dev->mode_config.tv_flicker_reduction_property =
1664 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
1665 if (!dev->mode_config.tv_flicker_reduction_property)
1668 dev->mode_config.tv_overscan_property =
1669 drm_property_create_range(dev, 0, "overscan", 0, 100);
1670 if (!dev->mode_config.tv_overscan_property)
1673 dev->mode_config.tv_saturation_property =
1674 drm_property_create_range(dev, 0, "saturation", 0, 100);
1675 if (!dev->mode_config.tv_saturation_property)
1678 dev->mode_config.tv_hue_property =
1679 drm_property_create_range(dev, 0, "hue", 0, 100);
1680 if (!dev->mode_config.tv_hue_property)
1687 EXPORT_SYMBOL(drm_mode_create_tv_properties);
1690 * drm_mode_create_scaling_mode_property - create scaling mode property
1693 * Called by a driver the first time it's needed, must be attached to desired
1696 * Atomic drivers should use drm_connector_attach_scaling_mode_property()
1697 * instead to correctly assign &drm_connector_state.scaling_mode
1698 * in the atomic state.
1702 int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1704 struct drm_property *scaling_mode;
1706 if (dev->mode_config.scaling_mode_property)
1710 drm_property_create_enum(dev, 0, "scaling mode",
1711 drm_scaling_mode_enum_list,
1712 ARRAY_SIZE(drm_scaling_mode_enum_list));
1714 dev->mode_config.scaling_mode_property = scaling_mode;
1718 EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1721 * DOC: Variable refresh properties
1723 * Variable refresh rate capable displays can dynamically adjust their
1724 * refresh rate by extending the duration of their vertical front porch
1725 * until page flip or timeout occurs. This can reduce or remove stuttering
1726 * and latency in scenarios where the page flip does not align with the
1729 * An example scenario would be an application flipping at a constant rate
1730 * of 48Hz on a 60Hz display. The page flip will frequently miss the vblank
1731 * interval and the same contents will be displayed twice. This can be
1732 * observed as stuttering for content with motion.
1734 * If variable refresh rate was active on a display that supported a
1735 * variable refresh range from 35Hz to 60Hz no stuttering would be observable
1736 * for the example scenario. The minimum supported variable refresh rate of
1737 * 35Hz is below the page flip frequency and the vertical front porch can
1738 * be extended until the page flip occurs. The vblank interval will be
1739 * directly aligned to the page flip rate.
1741 * Not all userspace content is suitable for use with variable refresh rate.
1742 * Large and frequent changes in vertical front porch duration may worsen
1743 * perceived stuttering for input sensitive applications.
1745 * Panel brightness will also vary with vertical front porch duration. Some
1746 * panels may have noticeable differences in brightness between the minimum
1747 * vertical front porch duration and the maximum vertical front porch duration.
1748 * Large and frequent changes in vertical front porch duration may produce
1749 * observable flickering for such panels.
1751 * Userspace control for variable refresh rate is supported via properties
1752 * on the &drm_connector and &drm_crtc objects.
1755 * Optional &drm_connector boolean property that drivers should attach
1756 * with drm_connector_attach_vrr_capable_property() on connectors that
1757 * could support variable refresh rates. Drivers should update the
1758 * property value by calling drm_connector_set_vrr_capable_property().
1760 * Absence of the property should indicate absence of support.
1763 * Default &drm_crtc boolean property that notifies the driver that the
1764 * content on the CRTC is suitable for variable refresh rate presentation.
1765 * The driver will take this property as a hint to enable variable
1766 * refresh rate support if the receiver supports it, ie. if the
1767 * "vrr_capable" property is true on the &drm_connector object. The
1768 * vertical front porch duration will be extended until page-flip or
1769 * timeout when enabled.
1771 * The minimum vertical front porch duration is defined as the vertical
1772 * front porch duration for the current mode.
1774 * The maximum vertical front porch duration is greater than or equal to
1775 * the minimum vertical front porch duration. The duration is derived
1776 * from the minimum supported variable refresh rate for the connector.
1778 * The driver may place further restrictions within these minimum
1779 * and maximum bounds.
1783 * drm_connector_attach_vrr_capable_property - creates the
1784 * vrr_capable property
1785 * @connector: connector to create the vrr_capable property on.
1787 * This is used by atomic drivers to add support for querying
1788 * variable refresh rate capability for a connector.
1791 * Zero on success, negative errno on failure.
1793 int drm_connector_attach_vrr_capable_property(
1794 struct drm_connector *connector)
1796 struct drm_device *dev = connector->dev;
1797 struct drm_property *prop;
1799 if (!connector->vrr_capable_property) {
1800 prop = drm_property_create_bool(dev, DRM_MODE_PROP_IMMUTABLE,
1805 connector->vrr_capable_property = prop;
1806 drm_object_attach_property(&connector->base, prop, 0);
1811 EXPORT_SYMBOL(drm_connector_attach_vrr_capable_property);
1814 * drm_connector_attach_scaling_mode_property - attach atomic scaling mode property
1815 * @connector: connector to attach scaling mode property on.
1816 * @scaling_mode_mask: or'ed mask of BIT(%DRM_MODE_SCALE_\*).
1818 * This is used to add support for scaling mode to atomic drivers.
1819 * The scaling mode will be set to &drm_connector_state.scaling_mode
1820 * and can be used from &drm_connector_helper_funcs->atomic_check for validation.
1822 * This is the atomic version of drm_mode_create_scaling_mode_property().
1825 * Zero on success, negative errno on failure.
1827 int drm_connector_attach_scaling_mode_property(struct drm_connector *connector,
1828 u32 scaling_mode_mask)
1830 struct drm_device *dev = connector->dev;
1831 struct drm_property *scaling_mode_property;
1833 const unsigned valid_scaling_mode_mask =
1834 (1U << ARRAY_SIZE(drm_scaling_mode_enum_list)) - 1;
1836 if (WARN_ON(hweight32(scaling_mode_mask) < 2 ||
1837 scaling_mode_mask & ~valid_scaling_mode_mask))
1840 scaling_mode_property =
1841 drm_property_create(dev, DRM_MODE_PROP_ENUM, "scaling mode",
1842 hweight32(scaling_mode_mask));
1844 if (!scaling_mode_property)
1847 for (i = 0; i < ARRAY_SIZE(drm_scaling_mode_enum_list); i++) {
1850 if (!(BIT(i) & scaling_mode_mask))
1853 ret = drm_property_add_enum(scaling_mode_property,
1854 drm_scaling_mode_enum_list[i].type,
1855 drm_scaling_mode_enum_list[i].name);
1858 drm_property_destroy(dev, scaling_mode_property);
1864 drm_object_attach_property(&connector->base,
1865 scaling_mode_property, 0);
1867 connector->scaling_mode_property = scaling_mode_property;
1871 EXPORT_SYMBOL(drm_connector_attach_scaling_mode_property);
1874 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1877 * Called by a driver the first time it's needed, must be attached to desired
1881 * Zero on success, negative errno on failure.
1883 int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1885 if (dev->mode_config.aspect_ratio_property)
1888 dev->mode_config.aspect_ratio_property =
1889 drm_property_create_enum(dev, 0, "aspect ratio",
1890 drm_aspect_ratio_enum_list,
1891 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1893 if (dev->mode_config.aspect_ratio_property == NULL)
1898 EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1901 * DOC: standard connector properties
1904 * This property helps select a suitable colorspace based on the sink
1905 * capability. Modern sink devices support wider gamut like BT2020.
1906 * This helps switch to BT2020 mode if the BT2020 encoded video stream
1907 * is being played by the user, same for any other colorspace. Thereby
1908 * giving a good visual experience to users.
1910 * The expectation from userspace is that it should parse the EDID
1911 * and get supported colorspaces. Use this property and switch to the
1912 * one supported. Sink supported colorspaces should be retrieved by
1913 * userspace from EDID and driver will not explicitly expose them.
1915 * Basically the expectation from userspace is:
1916 * - Set up CRTC DEGAMMA/CTM/GAMMA to convert to some sink
1918 * - Set this new property to let the sink know what it
1919 * converted the CRTC output to.
1920 * - This property is just to inform sink what colorspace
1921 * source is trying to drive.
1923 * Because between HDMI and DP have different colorspaces,
1924 * drm_mode_create_hdmi_colorspace_property() is used for HDMI connector and
1925 * drm_mode_create_dp_colorspace_property() is used for DP connector.
1929 * drm_mode_create_hdmi_colorspace_property - create hdmi colorspace property
1930 * @connector: connector to create the Colorspace property on.
1932 * Called by a driver the first time it's needed, must be attached to desired
1936 * Zero on success, negative errno on failure.
1938 int drm_mode_create_hdmi_colorspace_property(struct drm_connector *connector)
1940 struct drm_device *dev = connector->dev;
1942 if (connector->colorspace_property)
1945 connector->colorspace_property =
1946 drm_property_create_enum(dev, DRM_MODE_PROP_ENUM, "Colorspace",
1948 ARRAY_SIZE(hdmi_colorspaces));
1950 if (!connector->colorspace_property)
1955 EXPORT_SYMBOL(drm_mode_create_hdmi_colorspace_property);
1958 * drm_mode_create_dp_colorspace_property - create dp colorspace property
1959 * @connector: connector to create the Colorspace property on.
1961 * Called by a driver the first time it's needed, must be attached to desired
1965 * Zero on success, negative errno on failure.
1967 int drm_mode_create_dp_colorspace_property(struct drm_connector *connector)
1969 struct drm_device *dev = connector->dev;
1971 if (connector->colorspace_property)
1974 connector->colorspace_property =
1975 drm_property_create_enum(dev, DRM_MODE_PROP_ENUM, "Colorspace",
1977 ARRAY_SIZE(dp_colorspaces));
1979 if (!connector->colorspace_property)
1984 EXPORT_SYMBOL(drm_mode_create_dp_colorspace_property);
1987 * drm_mode_create_content_type_property - create content type property
1990 * Called by a driver the first time it's needed, must be attached to desired
1994 * Zero on success, negative errno on failure.
1996 int drm_mode_create_content_type_property(struct drm_device *dev)
1998 if (dev->mode_config.content_type_property)
2001 dev->mode_config.content_type_property =
2002 drm_property_create_enum(dev, 0, "content type",
2003 drm_content_type_enum_list,
2004 ARRAY_SIZE(drm_content_type_enum_list));
2006 if (dev->mode_config.content_type_property == NULL)
2011 EXPORT_SYMBOL(drm_mode_create_content_type_property);
2014 * drm_mode_create_suggested_offset_properties - create suggests offset properties
2017 * Create the suggested x/y offset property for connectors.
2020 * 0 on success or a negative error code on failure.
2022 int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
2024 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
2027 dev->mode_config.suggested_x_property =
2028 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
2030 dev->mode_config.suggested_y_property =
2031 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
2033 if (dev->mode_config.suggested_x_property == NULL ||
2034 dev->mode_config.suggested_y_property == NULL)
2038 EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
2041 * drm_connector_set_path_property - set tile property on connector
2042 * @connector: connector to set property on.
2043 * @path: path to use for property; must not be NULL.
2045 * This creates a property to expose to userspace to specify a
2046 * connector path. This is mainly used for DisplayPort MST where
2047 * connectors have a topology and we want to allow userspace to give
2048 * them more meaningful names.
2051 * Zero on success, negative errno on failure.
2053 int drm_connector_set_path_property(struct drm_connector *connector,
2056 struct drm_device *dev = connector->dev;
2059 ret = drm_property_replace_global_blob(dev,
2060 &connector->path_blob_ptr,
2064 dev->mode_config.path_property);
2067 EXPORT_SYMBOL(drm_connector_set_path_property);
2070 * drm_connector_set_tile_property - set tile property on connector
2071 * @connector: connector to set property on.
2073 * This looks up the tile information for a connector, and creates a
2074 * property for userspace to parse if it exists. The property is of
2075 * the form of 8 integers using ':' as a separator.
2076 * This is used for dual port tiled displays with DisplayPort SST
2077 * or DisplayPort MST connectors.
2080 * Zero on success, errno on failure.
2082 int drm_connector_set_tile_property(struct drm_connector *connector)
2084 struct drm_device *dev = connector->dev;
2088 if (!connector->has_tile) {
2089 ret = drm_property_replace_global_blob(dev,
2090 &connector->tile_blob_ptr,
2094 dev->mode_config.tile_property);
2098 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
2099 connector->tile_group->id, connector->tile_is_single_monitor,
2100 connector->num_h_tile, connector->num_v_tile,
2101 connector->tile_h_loc, connector->tile_v_loc,
2102 connector->tile_h_size, connector->tile_v_size);
2104 ret = drm_property_replace_global_blob(dev,
2105 &connector->tile_blob_ptr,
2109 dev->mode_config.tile_property);
2112 EXPORT_SYMBOL(drm_connector_set_tile_property);
2115 * drm_connector_update_edid_property - update the edid property of a connector
2116 * @connector: drm connector
2117 * @edid: new value of the edid property
2119 * This function creates a new blob modeset object and assigns its id to the
2120 * connector's edid property.
2121 * Since we also parse tile information from EDID's displayID block, we also
2122 * set the connector's tile property here. See drm_connector_set_tile_property()
2126 * Zero on success, negative errno on failure.
2128 int drm_connector_update_edid_property(struct drm_connector *connector,
2129 const struct edid *edid)
2131 struct drm_device *dev = connector->dev;
2134 const struct edid *old_edid;
2136 /* ignore requests to set edid when overridden */
2137 if (connector->override_edid)
2141 size = EDID_LENGTH * (1 + edid->extensions);
2143 /* Set the display info, using edid if available, otherwise
2144 * resetting the values to defaults. This duplicates the work
2145 * done in drm_add_edid_modes, but that function is not
2146 * consistently called before this one in all drivers and the
2147 * computation is cheap enough that it seems better to
2148 * duplicate it rather than attempt to ensure some arbitrary
2149 * ordering of calls.
2152 drm_add_display_info(connector, edid);
2154 drm_reset_display_info(connector);
2156 drm_update_tile_info(connector, edid);
2158 if (connector->edid_blob_ptr) {
2159 old_edid = (const struct edid *)connector->edid_blob_ptr->data;
2161 if (!drm_edid_are_equal(edid, old_edid)) {
2162 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] Edid was changed.\n",
2163 connector->base.id, connector->name);
2165 connector->epoch_counter += 1;
2166 DRM_DEBUG_KMS("Updating change counter to %llu\n",
2167 connector->epoch_counter);
2172 drm_object_property_set_value(&connector->base,
2173 dev->mode_config.non_desktop_property,
2174 connector->display_info.non_desktop);
2176 ret = drm_property_replace_global_blob(dev,
2177 &connector->edid_blob_ptr,
2181 dev->mode_config.edid_property);
2184 return drm_connector_set_tile_property(connector);
2186 EXPORT_SYMBOL(drm_connector_update_edid_property);
2189 * drm_connector_set_link_status_property - Set link status property of a connector
2190 * @connector: drm connector
2191 * @link_status: new value of link status property (0: Good, 1: Bad)
2193 * In usual working scenario, this link status property will always be set to
2194 * "GOOD". If something fails during or after a mode set, the kernel driver
2195 * may set this link status property to "BAD". The caller then needs to send a
2196 * hotplug uevent for userspace to re-check the valid modes through
2197 * GET_CONNECTOR_IOCTL and retry modeset.
2199 * Note: Drivers cannot rely on userspace to support this property and
2200 * issue a modeset. As such, they may choose to handle issues (like
2201 * re-training a link) without userspace's intervention.
2203 * The reason for adding this property is to handle link training failures, but
2204 * it is not limited to DP or link training. For example, if we implement
2205 * asynchronous setcrtc, this property can be used to report any failures in that.
2207 void drm_connector_set_link_status_property(struct drm_connector *connector,
2208 uint64_t link_status)
2210 struct drm_device *dev = connector->dev;
2212 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
2213 connector->state->link_status = link_status;
2214 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2216 EXPORT_SYMBOL(drm_connector_set_link_status_property);
2219 * drm_connector_attach_max_bpc_property - attach "max bpc" property
2220 * @connector: connector to attach max bpc property on.
2221 * @min: The minimum bit depth supported by the connector.
2222 * @max: The maximum bit depth supported by the connector.
2224 * This is used to add support for limiting the bit depth on a connector.
2227 * Zero on success, negative errno on failure.
2229 int drm_connector_attach_max_bpc_property(struct drm_connector *connector,
2232 struct drm_device *dev = connector->dev;
2233 struct drm_property *prop;
2235 prop = connector->max_bpc_property;
2237 prop = drm_property_create_range(dev, 0, "max bpc", min, max);
2241 connector->max_bpc_property = prop;
2244 drm_object_attach_property(&connector->base, prop, max);
2245 connector->state->max_requested_bpc = max;
2246 connector->state->max_bpc = max;
2250 EXPORT_SYMBOL(drm_connector_attach_max_bpc_property);
2253 * drm_connector_attach_hdr_output_metadata_property - attach "HDR_OUTPUT_METADA" property
2254 * @connector: connector to attach the property on.
2256 * This is used to allow the userspace to send HDR Metadata to the
2260 * Zero on success, negative errno on failure.
2262 int drm_connector_attach_hdr_output_metadata_property(struct drm_connector *connector)
2264 struct drm_device *dev = connector->dev;
2265 struct drm_property *prop = dev->mode_config.hdr_output_metadata_property;
2267 drm_object_attach_property(&connector->base, prop, 0);
2271 EXPORT_SYMBOL(drm_connector_attach_hdr_output_metadata_property);
2274 * drm_connector_attach_colorspace_property - attach "Colorspace" property
2275 * @connector: connector to attach the property on.
2277 * This is used to allow the userspace to signal the output colorspace
2281 * Zero on success, negative errno on failure.
2283 int drm_connector_attach_colorspace_property(struct drm_connector *connector)
2285 struct drm_property *prop = connector->colorspace_property;
2287 drm_object_attach_property(&connector->base, prop, DRM_MODE_COLORIMETRY_DEFAULT);
2291 EXPORT_SYMBOL(drm_connector_attach_colorspace_property);
2294 * drm_connector_atomic_hdr_metadata_equal - checks if the hdr metadata changed
2295 * @old_state: old connector state to compare
2296 * @new_state: new connector state to compare
2298 * This is used by HDR-enabled drivers to test whether the HDR metadata
2299 * have changed between two different connector state (and thus probably
2300 * requires a full blown mode change).
2303 * True if the metadata are equal, False otherwise
2305 bool drm_connector_atomic_hdr_metadata_equal(struct drm_connector_state *old_state,
2306 struct drm_connector_state *new_state)
2308 struct drm_property_blob *old_blob = old_state->hdr_output_metadata;
2309 struct drm_property_blob *new_blob = new_state->hdr_output_metadata;
2311 if (!old_blob || !new_blob)
2312 return old_blob == new_blob;
2314 if (old_blob->length != new_blob->length)
2317 return !memcmp(old_blob->data, new_blob->data, old_blob->length);
2319 EXPORT_SYMBOL(drm_connector_atomic_hdr_metadata_equal);
2322 * drm_connector_set_vrr_capable_property - sets the variable refresh rate
2323 * capable property for a connector
2324 * @connector: drm connector
2325 * @capable: True if the connector is variable refresh rate capable
2327 * Should be used by atomic drivers to update the indicated support for
2328 * variable refresh rate over a connector.
2330 void drm_connector_set_vrr_capable_property(
2331 struct drm_connector *connector, bool capable)
2333 if (!connector->vrr_capable_property)
2336 drm_object_property_set_value(&connector->base,
2337 connector->vrr_capable_property,
2340 EXPORT_SYMBOL(drm_connector_set_vrr_capable_property);
2343 * drm_connector_set_panel_orientation - sets the connector's panel_orientation
2344 * @connector: connector for which to set the panel-orientation property.
2345 * @panel_orientation: drm_panel_orientation value to set
2347 * This function sets the connector's panel_orientation and attaches
2348 * a "panel orientation" property to the connector.
2350 * Calling this function on a connector where the panel_orientation has
2351 * already been set is a no-op (e.g. the orientation has been overridden with
2352 * a kernel commandline option).
2354 * It is allowed to call this function with a panel_orientation of
2355 * DRM_MODE_PANEL_ORIENTATION_UNKNOWN, in which case it is a no-op.
2358 * Zero on success, negative errno on failure.
2360 int drm_connector_set_panel_orientation(
2361 struct drm_connector *connector,
2362 enum drm_panel_orientation panel_orientation)
2364 struct drm_device *dev = connector->dev;
2365 struct drm_display_info *info = &connector->display_info;
2366 struct drm_property *prop;
2369 if (info->panel_orientation != DRM_MODE_PANEL_ORIENTATION_UNKNOWN)
2372 /* Don't attach the property if the orientation is unknown */
2373 if (panel_orientation == DRM_MODE_PANEL_ORIENTATION_UNKNOWN)
2376 info->panel_orientation = panel_orientation;
2378 prop = dev->mode_config.panel_orientation_property;
2380 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
2381 "panel orientation",
2382 drm_panel_orientation_enum_list,
2383 ARRAY_SIZE(drm_panel_orientation_enum_list));
2387 dev->mode_config.panel_orientation_property = prop;
2390 drm_object_attach_property(&connector->base, prop,
2391 info->panel_orientation);
2394 EXPORT_SYMBOL(drm_connector_set_panel_orientation);
2397 * drm_connector_set_panel_orientation_with_quirk - set the
2398 * connector's panel_orientation after checking for quirks
2399 * @connector: connector for which to init the panel-orientation property.
2400 * @panel_orientation: drm_panel_orientation value to set
2401 * @width: width in pixels of the panel, used for panel quirk detection
2402 * @height: height in pixels of the panel, used for panel quirk detection
2404 * Like drm_connector_set_panel_orientation(), but with a check for platform
2405 * specific (e.g. DMI based) quirks overriding the passed in panel_orientation.
2408 * Zero on success, negative errno on failure.
2410 int drm_connector_set_panel_orientation_with_quirk(
2411 struct drm_connector *connector,
2412 enum drm_panel_orientation panel_orientation,
2413 int width, int height)
2415 int orientation_quirk;
2417 orientation_quirk = drm_get_panel_orientation_quirk(width, height);
2418 if (orientation_quirk != DRM_MODE_PANEL_ORIENTATION_UNKNOWN)
2419 panel_orientation = orientation_quirk;
2421 return drm_connector_set_panel_orientation(connector,
2424 EXPORT_SYMBOL(drm_connector_set_panel_orientation_with_quirk);
2426 static const struct drm_prop_enum_list privacy_screen_enum[] = {
2427 { PRIVACY_SCREEN_DISABLED, "Disabled" },
2428 { PRIVACY_SCREEN_ENABLED, "Enabled" },
2429 { PRIVACY_SCREEN_DISABLED_LOCKED, "Disabled-locked" },
2430 { PRIVACY_SCREEN_ENABLED_LOCKED, "Enabled-locked" },
2434 * drm_connector_create_privacy_screen_properties - create the drm connecter's
2435 * privacy-screen properties.
2436 * @connector: connector for which to create the privacy-screen properties
2438 * This function creates the "privacy-screen sw-state" and "privacy-screen
2439 * hw-state" properties for the connector. They are not attached.
2442 drm_connector_create_privacy_screen_properties(struct drm_connector *connector)
2444 if (connector->privacy_screen_sw_state_property)
2447 /* Note sw-state only supports the first 2 values of the enum */
2448 connector->privacy_screen_sw_state_property =
2449 drm_property_create_enum(connector->dev, DRM_MODE_PROP_ENUM,
2450 "privacy-screen sw-state",
2451 privacy_screen_enum, 2);
2453 connector->privacy_screen_hw_state_property =
2454 drm_property_create_enum(connector->dev,
2455 DRM_MODE_PROP_IMMUTABLE | DRM_MODE_PROP_ENUM,
2456 "privacy-screen hw-state",
2457 privacy_screen_enum,
2458 ARRAY_SIZE(privacy_screen_enum));
2460 EXPORT_SYMBOL(drm_connector_create_privacy_screen_properties);
2463 * drm_connector_attach_privacy_screen_properties - attach the drm connecter's
2464 * privacy-screen properties.
2465 * @connector: connector on which to attach the privacy-screen properties
2467 * This function attaches the "privacy-screen sw-state" and "privacy-screen
2468 * hw-state" properties to the connector. The initial state of both is set
2472 drm_connector_attach_privacy_screen_properties(struct drm_connector *connector)
2474 if (!connector->privacy_screen_sw_state_property)
2477 drm_object_attach_property(&connector->base,
2478 connector->privacy_screen_sw_state_property,
2479 PRIVACY_SCREEN_DISABLED);
2481 drm_object_attach_property(&connector->base,
2482 connector->privacy_screen_hw_state_property,
2483 PRIVACY_SCREEN_DISABLED);
2485 EXPORT_SYMBOL(drm_connector_attach_privacy_screen_properties);
2487 static void drm_connector_update_privacy_screen_properties(
2488 struct drm_connector *connector, bool set_sw_state)
2490 enum drm_privacy_screen_status sw_state, hw_state;
2492 drm_privacy_screen_get_state(connector->privacy_screen,
2493 &sw_state, &hw_state);
2496 connector->state->privacy_screen_sw_state = sw_state;
2497 drm_object_property_set_value(&connector->base,
2498 connector->privacy_screen_hw_state_property, hw_state);
2501 static int drm_connector_privacy_screen_notifier(
2502 struct notifier_block *nb, unsigned long action, void *data)
2504 struct drm_connector *connector =
2505 container_of(nb, struct drm_connector, privacy_screen_notifier);
2506 struct drm_device *dev = connector->dev;
2508 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
2509 drm_connector_update_privacy_screen_properties(connector, true);
2510 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2512 drm_sysfs_connector_status_event(connector,
2513 connector->privacy_screen_sw_state_property);
2514 drm_sysfs_connector_status_event(connector,
2515 connector->privacy_screen_hw_state_property);
2521 * drm_connector_attach_privacy_screen_provider - attach a privacy-screen to
2523 * @connector: connector to attach the privacy-screen to
2524 * @priv: drm_privacy_screen to attach
2526 * Create and attach the standard privacy-screen properties and register
2527 * a generic notifier for generating sysfs-connector-status-events
2528 * on external changes to the privacy-screen status.
2529 * This function takes ownership of the passed in drm_privacy_screen and will
2530 * call drm_privacy_screen_put() on it when the connector is destroyed.
2532 void drm_connector_attach_privacy_screen_provider(
2533 struct drm_connector *connector, struct drm_privacy_screen *priv)
2535 connector->privacy_screen = priv;
2536 connector->privacy_screen_notifier.notifier_call =
2537 drm_connector_privacy_screen_notifier;
2539 drm_connector_create_privacy_screen_properties(connector);
2540 drm_connector_update_privacy_screen_properties(connector, true);
2541 drm_connector_attach_privacy_screen_properties(connector);
2543 EXPORT_SYMBOL(drm_connector_attach_privacy_screen_provider);
2546 * drm_connector_update_privacy_screen - update connector's privacy-screen sw-state
2547 * @connector_state: connector-state to update the privacy-screen for
2549 * This function calls drm_privacy_screen_set_sw_state() on the connector's
2552 * If the connector has no privacy-screen, then this is a no-op.
2554 void drm_connector_update_privacy_screen(const struct drm_connector_state *connector_state)
2556 struct drm_connector *connector = connector_state->connector;
2559 if (!connector->privacy_screen)
2562 ret = drm_privacy_screen_set_sw_state(connector->privacy_screen,
2563 connector_state->privacy_screen_sw_state);
2565 drm_err(connector->dev, "Error updating privacy-screen sw_state\n");
2569 /* The hw_state property value may have changed, update it. */
2570 drm_connector_update_privacy_screen_properties(connector, false);
2572 EXPORT_SYMBOL(drm_connector_update_privacy_screen);
2574 int drm_connector_set_obj_prop(struct drm_mode_object *obj,
2575 struct drm_property *property,
2579 struct drm_connector *connector = obj_to_connector(obj);
2581 /* Do DPMS ourselves */
2582 if (property == connector->dev->mode_config.dpms_property) {
2583 ret = (*connector->funcs->dpms)(connector, (int)value);
2584 } else if (connector->funcs->set_property)
2585 ret = connector->funcs->set_property(connector, property, value);
2588 drm_object_property_set_value(&connector->base, property, value);
2592 int drm_connector_property_set_ioctl(struct drm_device *dev,
2593 void *data, struct drm_file *file_priv)
2595 struct drm_mode_connector_set_property *conn_set_prop = data;
2596 struct drm_mode_obj_set_property obj_set_prop = {
2597 .value = conn_set_prop->value,
2598 .prop_id = conn_set_prop->prop_id,
2599 .obj_id = conn_set_prop->connector_id,
2600 .obj_type = DRM_MODE_OBJECT_CONNECTOR
2603 /* It does all the locking and checking we need */
2604 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
2607 static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
2609 /* For atomic drivers only state objects are synchronously updated and
2610 * protected by modeset locks, so check those first.
2612 if (connector->state)
2613 return connector->state->best_encoder;
2614 return connector->encoder;
2618 drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
2619 const struct list_head *modes,
2620 const struct drm_file *file_priv)
2623 * If user-space hasn't configured the driver to expose the stereo 3D
2624 * modes, don't expose them.
2626 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
2629 * If user-space hasn't configured the driver to expose the modes
2630 * with aspect-ratio, don't expose them. However if such a mode
2631 * is unique, let it be exposed, but reset the aspect-ratio flags
2632 * while preparing the list of user-modes.
2634 if (!file_priv->aspect_ratio_allowed) {
2635 const struct drm_display_mode *mode_itr;
2637 list_for_each_entry(mode_itr, modes, head) {
2638 if (mode_itr->expose_to_userspace &&
2639 drm_mode_match(mode_itr, mode,
2640 DRM_MODE_MATCH_TIMINGS |
2641 DRM_MODE_MATCH_CLOCK |
2642 DRM_MODE_MATCH_FLAGS |
2643 DRM_MODE_MATCH_3D_FLAGS))
2651 int drm_mode_getconnector(struct drm_device *dev, void *data,
2652 struct drm_file *file_priv)
2654 struct drm_mode_get_connector *out_resp = data;
2655 struct drm_connector *connector;
2656 struct drm_encoder *encoder;
2657 struct drm_display_mode *mode;
2659 int encoders_count = 0;
2662 struct drm_mode_modeinfo u_mode;
2663 struct drm_mode_modeinfo __user *mode_ptr;
2664 uint32_t __user *encoder_ptr;
2665 bool is_current_master;
2667 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2670 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2672 connector = drm_connector_lookup(dev, file_priv, out_resp->connector_id);
2676 encoders_count = hweight32(connector->possible_encoders);
2678 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2680 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
2682 drm_connector_for_each_possible_encoder(connector, encoder) {
2683 if (put_user(encoder->base.id, encoder_ptr + copied)) {
2690 out_resp->count_encoders = encoders_count;
2692 out_resp->connector_id = connector->base.id;
2693 out_resp->connector_type = connector->connector_type;
2694 out_resp->connector_type_id = connector->connector_type_id;
2696 is_current_master = drm_is_current_master(file_priv);
2698 mutex_lock(&dev->mode_config.mutex);
2699 if (out_resp->count_modes == 0) {
2700 if (is_current_master)
2701 connector->funcs->fill_modes(connector,
2702 dev->mode_config.max_width,
2703 dev->mode_config.max_height);
2705 drm_dbg_kms(dev, "User-space requested a forced probe on [CONNECTOR:%d:%s] but is not the DRM master, demoting to read-only probe",
2706 connector->base.id, connector->name);
2709 out_resp->mm_width = connector->display_info.width_mm;
2710 out_resp->mm_height = connector->display_info.height_mm;
2711 out_resp->subpixel = connector->display_info.subpixel_order;
2712 out_resp->connection = connector->status;
2714 /* delayed so we get modes regardless of pre-fill_modes state */
2715 list_for_each_entry(mode, &connector->modes, head) {
2716 WARN_ON(mode->expose_to_userspace);
2718 if (drm_mode_expose_to_userspace(mode, &connector->modes,
2720 mode->expose_to_userspace = true;
2726 * This ioctl is called twice, once to determine how much space is
2727 * needed, and the 2nd time to fill it.
2729 if ((out_resp->count_modes >= mode_count) && mode_count) {
2731 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
2732 list_for_each_entry(mode, &connector->modes, head) {
2733 if (!mode->expose_to_userspace)
2736 /* Clear the tag for the next time around */
2737 mode->expose_to_userspace = false;
2739 drm_mode_convert_to_umode(&u_mode, mode);
2741 * Reset aspect ratio flags of user-mode, if modes with
2742 * aspect-ratio are not supported.
2744 if (!file_priv->aspect_ratio_allowed)
2745 u_mode.flags &= ~DRM_MODE_FLAG_PIC_AR_MASK;
2746 if (copy_to_user(mode_ptr + copied,
2747 &u_mode, sizeof(u_mode))) {
2751 * Clear the tag for the rest of
2752 * the modes for the next time around.
2754 list_for_each_entry_continue(mode, &connector->modes, head)
2755 mode->expose_to_userspace = false;
2757 mutex_unlock(&dev->mode_config.mutex);
2764 /* Clear the tag for the next time around */
2765 list_for_each_entry(mode, &connector->modes, head)
2766 mode->expose_to_userspace = false;
2769 out_resp->count_modes = mode_count;
2770 mutex_unlock(&dev->mode_config.mutex);
2772 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
2773 encoder = drm_connector_get_encoder(connector);
2775 out_resp->encoder_id = encoder->base.id;
2777 out_resp->encoder_id = 0;
2779 /* Only grab properties after probing, to make sure EDID and other
2780 * properties reflect the latest status.
2782 ret = drm_mode_object_get_properties(&connector->base, file_priv->atomic,
2783 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2784 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2785 &out_resp->count_props);
2786 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2789 drm_connector_put(connector);
2795 * drm_connector_find_by_fwnode - Find a connector based on the associated fwnode
2796 * @fwnode: fwnode for which to find the matching drm_connector
2798 * This functions looks up a drm_connector based on its associated fwnode. When
2799 * a connector is found a reference to the connector is returned. The caller must
2800 * call drm_connector_put() to release this reference when it is done with the
2803 * Returns: A reference to the found connector or an ERR_PTR().
2805 struct drm_connector *drm_connector_find_by_fwnode(struct fwnode_handle *fwnode)
2807 struct drm_connector *connector, *found = ERR_PTR(-ENODEV);
2810 return ERR_PTR(-ENODEV);
2812 mutex_lock(&connector_list_lock);
2814 list_for_each_entry(connector, &connector_list, global_connector_list_entry) {
2815 if (connector->fwnode == fwnode ||
2816 (connector->fwnode && connector->fwnode->secondary == fwnode)) {
2817 drm_connector_get(connector);
2823 mutex_unlock(&connector_list_lock);
2829 * drm_connector_oob_hotplug_event - Report out-of-band hotplug event to connector
2830 * @connector_fwnode: fwnode_handle to report the event on
2832 * On some hardware a hotplug event notification may come from outside the display
2833 * driver / device. An example of this is some USB Type-C setups where the hardware
2834 * muxes the DisplayPort data and aux-lines but does not pass the altmode HPD
2835 * status bit to the GPU's DP HPD pin.
2837 * This function can be used to report these out-of-band events after obtaining
2838 * a drm_connector reference through calling drm_connector_find_by_fwnode().
2840 void drm_connector_oob_hotplug_event(struct fwnode_handle *connector_fwnode)
2842 struct drm_connector *connector;
2844 connector = drm_connector_find_by_fwnode(connector_fwnode);
2845 if (IS_ERR(connector))
2848 if (connector->funcs->oob_hotplug_event)
2849 connector->funcs->oob_hotplug_event(connector);
2851 drm_connector_put(connector);
2853 EXPORT_SYMBOL(drm_connector_oob_hotplug_event);
2859 * Tile groups are used to represent tiled monitors with a unique integer
2860 * identifier. Tiled monitors using DisplayID v1.3 have a unique 8-byte handle,
2861 * we store this in a tile group, so we have a common identifier for all tiles
2862 * in a monitor group. The property is called "TILE". Drivers can manage tile
2863 * groups using drm_mode_create_tile_group(), drm_mode_put_tile_group() and
2864 * drm_mode_get_tile_group(). But this is only needed for internal panels where
2865 * the tile group information is exposed through a non-standard way.
2868 static void drm_tile_group_free(struct kref *kref)
2870 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
2871 struct drm_device *dev = tg->dev;
2873 mutex_lock(&dev->mode_config.idr_mutex);
2874 idr_remove(&dev->mode_config.tile_idr, tg->id);
2875 mutex_unlock(&dev->mode_config.idr_mutex);
2880 * drm_mode_put_tile_group - drop a reference to a tile group.
2882 * @tg: tile group to drop reference to.
2884 * drop reference to tile group and free if 0.
2886 void drm_mode_put_tile_group(struct drm_device *dev,
2887 struct drm_tile_group *tg)
2889 kref_put(&tg->refcount, drm_tile_group_free);
2891 EXPORT_SYMBOL(drm_mode_put_tile_group);
2894 * drm_mode_get_tile_group - get a reference to an existing tile group
2896 * @topology: 8-bytes unique per monitor.
2898 * Use the unique bytes to get a reference to an existing tile group.
2901 * tile group or NULL if not found.
2903 struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
2904 const char topology[8])
2906 struct drm_tile_group *tg;
2909 mutex_lock(&dev->mode_config.idr_mutex);
2910 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
2911 if (!memcmp(tg->group_data, topology, 8)) {
2912 if (!kref_get_unless_zero(&tg->refcount))
2914 mutex_unlock(&dev->mode_config.idr_mutex);
2918 mutex_unlock(&dev->mode_config.idr_mutex);
2921 EXPORT_SYMBOL(drm_mode_get_tile_group);
2924 * drm_mode_create_tile_group - create a tile group from a displayid description
2926 * @topology: 8-bytes unique per monitor.
2928 * Create a tile group for the unique monitor, and get a unique
2929 * identifier for the tile group.
2932 * new tile group or NULL.
2934 struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
2935 const char topology[8])
2937 struct drm_tile_group *tg;
2940 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
2944 kref_init(&tg->refcount);
2945 memcpy(tg->group_data, topology, 8);
2948 mutex_lock(&dev->mode_config.idr_mutex);
2949 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
2957 mutex_unlock(&dev->mode_config.idr_mutex);
2960 EXPORT_SYMBOL(drm_mode_create_tile_group);