1 /*
2 * Copyright (c) 2016 Intel Corporation
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
23 #include <drm/drm_auth.h>
24 #include <drm/drm_connector.h>
25 #include <drm/drm_drv.h>
26 #include <drm/drm_edid.h>
27 #include <drm/drm_encoder.h>
28 #include <drm/drm_file.h>
29 #include <drm/drm_managed.h>
30 #include <drm/drm_panel.h>
31 #include <drm/drm_print.h>
32 #include <drm/drm_privacy_screen_consumer.h>
33 #include <drm/drm_sysfs.h>
34 #include <drm/drm_utils.h>
35
36 #include <linux/property.h>
37 #include <linux/uaccess.h>
38
39 #include <video/cmdline.h>
40
41 #include "drm_crtc_internal.h"
42 #include "drm_internal.h"
43
44 /**
45 * DOC: overview
46 *
47 * In DRM connectors are the general abstraction for display sinks, and include
48 * also fixed panels or anything else that can display pixels in some form. As
49 * opposed to all other KMS objects representing hardware (like CRTC, encoder or
50 * plane abstractions) connectors can be hotplugged and unplugged at runtime.
51 * Hence they are reference-counted using drm_connector_get() and
52 * drm_connector_put().
53 *
54 * KMS driver must create, initialize, register and attach at a &struct
55 * drm_connector for each such sink. The instance is created as other KMS
56 * objects and initialized by setting the following fields. The connector is
57 * initialized with a call to drm_connector_init() with a pointer to the
58 * &struct drm_connector_funcs and a connector type, and then exposed to
59 * userspace with a call to drm_connector_register().
60 *
61 * Connectors must be attached to an encoder to be used. For devices that map
62 * connectors to encoders 1:1, the connector should be attached at
63 * initialization time with a call to drm_connector_attach_encoder(). The
64 * driver must also set the &drm_connector.encoder field to point to the
65 * attached encoder.
66 *
67 * For connectors which are not fixed (like built-in panels) the driver needs to
68 * support hotplug notifications. The simplest way to do that is by using the
69 * probe helpers, see drm_kms_helper_poll_init() for connectors which don't have
70 * hardware support for hotplug interrupts. Connectors with hardware hotplug
71 * support can instead use e.g. drm_helper_hpd_irq_event().
72 */
73
74 /*
75 * Global connector list for drm_connector_find_by_fwnode().
76 * Note drm_connector_[un]register() first take connector->lock and then
77 * take the connector_list_lock.
78 */
79 static DEFINE_MUTEX(connector_list_lock);
80 static LIST_HEAD(connector_list);
81
82 struct drm_conn_prop_enum_list {
83 int type;
84 const char *name;
85 struct ida ida;
86 };
87
88 /*
89 * Connector and encoder types.
90 */
91 static struct drm_conn_prop_enum_list drm_connector_enum_list[] = {
92 { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
93 { DRM_MODE_CONNECTOR_VGA, "VGA" },
94 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
95 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
96 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
97 { DRM_MODE_CONNECTOR_Composite, "Composite" },
98 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
99 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
100 { DRM_MODE_CONNECTOR_Component, "Component" },
101 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
102 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
103 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
104 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
105 { DRM_MODE_CONNECTOR_TV, "TV" },
106 { DRM_MODE_CONNECTOR_eDP, "eDP" },
107 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
108 { DRM_MODE_CONNECTOR_DSI, "DSI" },
109 { DRM_MODE_CONNECTOR_DPI, "DPI" },
110 { DRM_MODE_CONNECTOR_WRITEBACK, "Writeback" },
111 { DRM_MODE_CONNECTOR_SPI, "SPI" },
112 { DRM_MODE_CONNECTOR_USB, "USB" },
113 };
114
drm_connector_ida_init(void)115 void drm_connector_ida_init(void)
116 {
117 int i;
118
119 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
120 ida_init(&drm_connector_enum_list[i].ida);
121 }
122
drm_connector_ida_destroy(void)123 void drm_connector_ida_destroy(void)
124 {
125 int i;
126
127 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
128 ida_destroy(&drm_connector_enum_list[i].ida);
129 }
130
131 /**
132 * drm_get_connector_type_name - return a string for connector type
133 * @type: The connector type (DRM_MODE_CONNECTOR_*)
134 *
135 * Returns: the name of the connector type, or NULL if the type is not valid.
136 */
drm_get_connector_type_name(unsigned int type)137 const char *drm_get_connector_type_name(unsigned int type)
138 {
139 if (type < ARRAY_SIZE(drm_connector_enum_list))
140 return drm_connector_enum_list[type].name;
141
142 return NULL;
143 }
144 EXPORT_SYMBOL(drm_get_connector_type_name);
145
146 /**
147 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
148 * @connector: connector to query
149 *
150 * The kernel supports per-connector configuration of its consoles through
151 * use of the video= parameter. This function parses that option and
152 * extracts the user's specified mode (or enable/disable status) for a
153 * particular connector. This is typically only used during the early fbdev
154 * setup.
155 */
drm_connector_get_cmdline_mode(struct drm_connector * connector)156 static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
157 {
158 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
159 const char *option;
160
161 option = video_get_options(connector->name);
162 if (!option)
163 return;
164
165 if (!drm_mode_parse_command_line_for_connector(option,
166 connector,
167 mode))
168 return;
169
170 if (mode->force) {
171 DRM_INFO("forcing %s connector %s\n", connector->name,
172 drm_get_connector_force_name(mode->force));
173 connector->force = mode->force;
174 }
175
176 if (mode->panel_orientation != DRM_MODE_PANEL_ORIENTATION_UNKNOWN) {
177 DRM_INFO("cmdline forces connector %s panel_orientation to %d\n",
178 connector->name, mode->panel_orientation);
179 drm_connector_set_panel_orientation(connector,
180 mode->panel_orientation);
181 }
182
183 DRM_DEBUG_KMS("cmdline mode for connector %s %s %dx%d@%dHz%s%s%s\n",
184 connector->name, mode->name,
185 mode->xres, mode->yres,
186 mode->refresh_specified ? mode->refresh : 60,
187 mode->rb ? " reduced blanking" : "",
188 mode->margins ? " with margins" : "",
189 mode->interlace ? " interlaced" : "");
190 }
191
drm_connector_free(struct kref * kref)192 static void drm_connector_free(struct kref *kref)
193 {
194 struct drm_connector *connector =
195 container_of(kref, struct drm_connector, base.refcount);
196 struct drm_device *dev = connector->dev;
197
198 drm_mode_object_unregister(dev, &connector->base);
199 connector->funcs->destroy(connector);
200 }
201
drm_connector_free_work_fn(struct work_struct * work)202 void drm_connector_free_work_fn(struct work_struct *work)
203 {
204 struct drm_connector *connector, *n;
205 struct drm_device *dev =
206 container_of(work, struct drm_device, mode_config.connector_free_work);
207 struct drm_mode_config *config = &dev->mode_config;
208 unsigned long flags;
209 struct llist_node *freed;
210
211 spin_lock_irqsave(&config->connector_list_lock, flags);
212 freed = llist_del_all(&config->connector_free_list);
213 spin_unlock_irqrestore(&config->connector_list_lock, flags);
214
215 llist_for_each_entry_safe(connector, n, freed, free_node) {
216 drm_mode_object_unregister(dev, &connector->base);
217 connector->funcs->destroy(connector);
218 }
219 }
220
__drm_connector_init(struct drm_device * dev,struct drm_connector * connector,const struct drm_connector_funcs * funcs,int connector_type,struct i2c_adapter * ddc)221 static int __drm_connector_init(struct drm_device *dev,
222 struct drm_connector *connector,
223 const struct drm_connector_funcs *funcs,
224 int connector_type,
225 struct i2c_adapter *ddc)
226 {
227 struct drm_mode_config *config = &dev->mode_config;
228 int ret;
229 struct ida *connector_ida =
230 &drm_connector_enum_list[connector_type].ida;
231
232 WARN_ON(drm_drv_uses_atomic_modeset(dev) &&
233 (!funcs->atomic_destroy_state ||
234 !funcs->atomic_duplicate_state));
235
236 ret = __drm_mode_object_add(dev, &connector->base,
237 DRM_MODE_OBJECT_CONNECTOR,
238 false, drm_connector_free);
239 if (ret)
240 return ret;
241
242 connector->base.properties = &connector->properties;
243 connector->dev = dev;
244 connector->funcs = funcs;
245
246 /* connector index is used with 32bit bitmasks */
247 ret = ida_alloc_max(&config->connector_ida, 31, GFP_KERNEL);
248 if (ret < 0) {
249 DRM_DEBUG_KMS("Failed to allocate %s connector index: %d\n",
250 drm_connector_enum_list[connector_type].name,
251 ret);
252 goto out_put;
253 }
254 connector->index = ret;
255 ret = 0;
256
257 connector->connector_type = connector_type;
258 connector->connector_type_id =
259 ida_alloc_min(connector_ida, 1, GFP_KERNEL);
260 if (connector->connector_type_id < 0) {
261 ret = connector->connector_type_id;
262 goto out_put_id;
263 }
264 connector->name =
265 kasprintf(GFP_KERNEL, "%s-%d",
266 drm_connector_enum_list[connector_type].name,
267 connector->connector_type_id);
268 if (!connector->name) {
269 ret = -ENOMEM;
270 goto out_put_type_id;
271 }
272
273 /* provide ddc symlink in sysfs */
274 connector->ddc = ddc;
275
276 INIT_LIST_HEAD(&connector->global_connector_list_entry);
277 INIT_LIST_HEAD(&connector->probed_modes);
278 INIT_LIST_HEAD(&connector->modes);
279 mutex_init(&connector->mutex);
280 mutex_init(&connector->eld_mutex);
281 mutex_init(&connector->edid_override_mutex);
282 mutex_init(&connector->hdmi.infoframes.lock);
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;
289
290 drm_connector_get_cmdline_mode(connector);
291
292 /* We should add connectors at the end to avoid upsetting the connector
293 * index too much.
294 */
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);
299
300 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL &&
301 connector_type != DRM_MODE_CONNECTOR_WRITEBACK)
302 drm_connector_attach_edid_property(connector);
303
304 drm_object_attach_property(&connector->base,
305 config->dpms_property, 0);
306
307 drm_object_attach_property(&connector->base,
308 config->link_status_property,
309 0);
310
311 drm_object_attach_property(&connector->base,
312 config->non_desktop_property,
313 0);
314 drm_object_attach_property(&connector->base,
315 config->tile_property,
316 0);
317
318 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
319 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
320 }
321
322 connector->debugfs_entry = NULL;
323 out_put_type_id:
324 if (ret)
325 ida_free(connector_ida, connector->connector_type_id);
326 out_put_id:
327 if (ret)
328 ida_free(&config->connector_ida, connector->index);
329 out_put:
330 if (ret)
331 drm_mode_object_unregister(dev, &connector->base);
332
333 return ret;
334 }
335
336 /**
337 * drm_connector_init - Init a preallocated connector
338 * @dev: DRM device
339 * @connector: the connector to init
340 * @funcs: callbacks for this connector
341 * @connector_type: user visible type of the connector
342 *
343 * Initialises a preallocated connector. Connectors should be
344 * subclassed as part of driver connector objects.
345 *
346 * At driver unload time the driver's &drm_connector_funcs.destroy hook
347 * should call drm_connector_cleanup() and free the connector structure.
348 * The connector structure should not be allocated with devm_kzalloc().
349 *
350 * Note: consider using drmm_connector_init() instead of
351 * drm_connector_init() to let the DRM managed resource infrastructure
352 * take care of cleanup and deallocation.
353 *
354 * Returns:
355 * Zero on success, error code on failure.
356 */
drm_connector_init(struct drm_device * dev,struct drm_connector * connector,const struct drm_connector_funcs * funcs,int connector_type)357 int drm_connector_init(struct drm_device *dev,
358 struct drm_connector *connector,
359 const struct drm_connector_funcs *funcs,
360 int connector_type)
361 {
362 if (drm_WARN_ON(dev, !(funcs && funcs->destroy)))
363 return -EINVAL;
364
365 return __drm_connector_init(dev, connector, funcs, connector_type, NULL);
366 }
367 EXPORT_SYMBOL(drm_connector_init);
368
369 /**
370 * drm_connector_init_with_ddc - Init a preallocated connector
371 * @dev: DRM device
372 * @connector: the connector to init
373 * @funcs: callbacks for this connector
374 * @connector_type: user visible type of the connector
375 * @ddc: pointer to the associated ddc adapter
376 *
377 * Initialises a preallocated connector. Connectors should be
378 * subclassed as part of driver connector objects.
379 *
380 * At driver unload time the driver's &drm_connector_funcs.destroy hook
381 * should call drm_connector_cleanup() and free the connector structure.
382 * The connector structure should not be allocated with devm_kzalloc().
383 *
384 * Ensures that the ddc field of the connector is correctly set.
385 *
386 * Note: consider using drmm_connector_init() instead of
387 * drm_connector_init_with_ddc() to let the DRM managed resource
388 * infrastructure take care of cleanup and deallocation.
389 *
390 * Returns:
391 * Zero on success, error code on failure.
392 */
drm_connector_init_with_ddc(struct drm_device * dev,struct drm_connector * connector,const struct drm_connector_funcs * funcs,int connector_type,struct i2c_adapter * ddc)393 int drm_connector_init_with_ddc(struct drm_device *dev,
394 struct drm_connector *connector,
395 const struct drm_connector_funcs *funcs,
396 int connector_type,
397 struct i2c_adapter *ddc)
398 {
399 if (drm_WARN_ON(dev, !(funcs && funcs->destroy)))
400 return -EINVAL;
401
402 return __drm_connector_init(dev, connector, funcs, connector_type, ddc);
403 }
404 EXPORT_SYMBOL(drm_connector_init_with_ddc);
405
drm_connector_cleanup_action(struct drm_device * dev,void * ptr)406 static void drm_connector_cleanup_action(struct drm_device *dev,
407 void *ptr)
408 {
409 struct drm_connector *connector = ptr;
410
411 drm_connector_cleanup(connector);
412 }
413
414 /**
415 * drmm_connector_init - Init a preallocated connector
416 * @dev: DRM device
417 * @connector: the connector to init
418 * @funcs: callbacks for this connector
419 * @connector_type: user visible type of the connector
420 * @ddc: optional pointer to the associated ddc adapter
421 *
422 * Initialises a preallocated connector. Connectors should be
423 * subclassed as part of driver connector objects.
424 *
425 * Cleanup is automatically handled with a call to
426 * drm_connector_cleanup() in a DRM-managed action.
427 *
428 * The connector structure should be allocated with drmm_kzalloc().
429 *
430 * The @drm_connector_funcs.destroy hook must be NULL.
431 *
432 * Returns:
433 * Zero on success, error code on failure.
434 */
drmm_connector_init(struct drm_device * dev,struct drm_connector * connector,const struct drm_connector_funcs * funcs,int connector_type,struct i2c_adapter * ddc)435 int drmm_connector_init(struct drm_device *dev,
436 struct drm_connector *connector,
437 const struct drm_connector_funcs *funcs,
438 int connector_type,
439 struct i2c_adapter *ddc)
440 {
441 int ret;
442
443 if (drm_WARN_ON(dev, funcs && funcs->destroy))
444 return -EINVAL;
445
446 ret = __drm_connector_init(dev, connector, funcs, connector_type, ddc);
447 if (ret)
448 return ret;
449
450 ret = drmm_add_action_or_reset(dev, drm_connector_cleanup_action,
451 connector);
452 if (ret)
453 return ret;
454
455 return 0;
456 }
457 EXPORT_SYMBOL(drmm_connector_init);
458
459 /**
460 * drmm_connector_hdmi_init - Init a preallocated HDMI connector
461 * @dev: DRM device
462 * @connector: A pointer to the HDMI connector to init
463 * @vendor: HDMI Controller Vendor name
464 * @product: HDMI Controller Product name
465 * @funcs: callbacks for this connector
466 * @hdmi_funcs: HDMI-related callbacks for this connector
467 * @connector_type: user visible type of the connector
468 * @ddc: optional pointer to the associated ddc adapter
469 * @supported_formats: Bitmask of @hdmi_colorspace listing supported output formats
470 * @max_bpc: Maximum bits per char the HDMI connector supports
471 *
472 * Initialises a preallocated HDMI connector. Connectors can be
473 * subclassed as part of driver connector objects.
474 *
475 * Cleanup is automatically handled with a call to
476 * drm_connector_cleanup() in a DRM-managed action.
477 *
478 * The connector structure should be allocated with drmm_kzalloc().
479 *
480 * The @drm_connector_funcs.destroy hook must be NULL.
481 *
482 * Returns:
483 * Zero on success, error code on failure.
484 */
drmm_connector_hdmi_init(struct drm_device * dev,struct drm_connector * connector,const char * vendor,const char * product,const struct drm_connector_funcs * funcs,const struct drm_connector_hdmi_funcs * hdmi_funcs,int connector_type,struct i2c_adapter * ddc,unsigned long supported_formats,unsigned int max_bpc)485 int drmm_connector_hdmi_init(struct drm_device *dev,
486 struct drm_connector *connector,
487 const char *vendor, const char *product,
488 const struct drm_connector_funcs *funcs,
489 const struct drm_connector_hdmi_funcs *hdmi_funcs,
490 int connector_type,
491 struct i2c_adapter *ddc,
492 unsigned long supported_formats,
493 unsigned int max_bpc)
494 {
495 int ret;
496
497 if (!vendor || !product)
498 return -EINVAL;
499
500 if ((strlen(vendor) > DRM_CONNECTOR_HDMI_VENDOR_LEN) ||
501 (strlen(product) > DRM_CONNECTOR_HDMI_PRODUCT_LEN))
502 return -EINVAL;
503
504 if (!(connector_type == DRM_MODE_CONNECTOR_HDMIA ||
505 connector_type == DRM_MODE_CONNECTOR_HDMIB))
506 return -EINVAL;
507
508 if (!supported_formats || !(supported_formats & BIT(HDMI_COLORSPACE_RGB)))
509 return -EINVAL;
510
511 if (connector->ycbcr_420_allowed != !!(supported_formats & BIT(HDMI_COLORSPACE_YUV420)))
512 return -EINVAL;
513
514 if (!(max_bpc == 8 || max_bpc == 10 || max_bpc == 12))
515 return -EINVAL;
516
517 ret = drmm_connector_init(dev, connector, funcs, connector_type, ddc);
518 if (ret)
519 return ret;
520
521 connector->hdmi.supported_formats = supported_formats;
522 strtomem_pad(connector->hdmi.vendor, vendor, 0);
523 strtomem_pad(connector->hdmi.product, product, 0);
524
525 /*
526 * drm_connector_attach_max_bpc_property() requires the
527 * connector to have a state.
528 */
529 if (connector->funcs->reset)
530 connector->funcs->reset(connector);
531
532 drm_connector_attach_max_bpc_property(connector, 8, max_bpc);
533 connector->max_bpc = max_bpc;
534
535 if (max_bpc > 8)
536 drm_connector_attach_hdr_output_metadata_property(connector);
537
538 connector->hdmi.funcs = hdmi_funcs;
539
540 return 0;
541 }
542 EXPORT_SYMBOL(drmm_connector_hdmi_init);
543
544 /**
545 * drm_connector_attach_edid_property - attach edid property.
546 * @connector: the connector
547 *
548 * Some connector types like DRM_MODE_CONNECTOR_VIRTUAL do not get a
549 * edid property attached by default. This function can be used to
550 * explicitly enable the edid property in these cases.
551 */
drm_connector_attach_edid_property(struct drm_connector * connector)552 void drm_connector_attach_edid_property(struct drm_connector *connector)
553 {
554 struct drm_mode_config *config = &connector->dev->mode_config;
555
556 drm_object_attach_property(&connector->base,
557 config->edid_property,
558 0);
559 }
560 EXPORT_SYMBOL(drm_connector_attach_edid_property);
561
562 /**
563 * drm_connector_attach_encoder - attach a connector to an encoder
564 * @connector: connector to attach
565 * @encoder: encoder to attach @connector to
566 *
567 * This function links up a connector to an encoder. Note that the routing
568 * restrictions between encoders and crtcs are exposed to userspace through the
569 * possible_clones and possible_crtcs bitmasks.
570 *
571 * Returns:
572 * Zero on success, negative errno on failure.
573 */
drm_connector_attach_encoder(struct drm_connector * connector,struct drm_encoder * encoder)574 int drm_connector_attach_encoder(struct drm_connector *connector,
575 struct drm_encoder *encoder)
576 {
577 /*
578 * In the past, drivers have attempted to model the static association
579 * of connector to encoder in simple connector/encoder devices using a
580 * direct assignment of connector->encoder = encoder. This connection
581 * is a logical one and the responsibility of the core, so drivers are
582 * expected not to mess with this.
583 *
584 * Note that the error return should've been enough here, but a large
585 * majority of drivers ignores the return value, so add in a big WARN
586 * to get people's attention.
587 */
588 if (WARN_ON(connector->encoder))
589 return -EINVAL;
590
591 connector->possible_encoders |= drm_encoder_mask(encoder);
592
593 return 0;
594 }
595 EXPORT_SYMBOL(drm_connector_attach_encoder);
596
597 /**
598 * drm_connector_has_possible_encoder - check if the connector and encoder are
599 * associated with each other
600 * @connector: the connector
601 * @encoder: the encoder
602 *
603 * Returns:
604 * True if @encoder is one of the possible encoders for @connector.
605 */
drm_connector_has_possible_encoder(struct drm_connector * connector,struct drm_encoder * encoder)606 bool drm_connector_has_possible_encoder(struct drm_connector *connector,
607 struct drm_encoder *encoder)
608 {
609 return connector->possible_encoders & drm_encoder_mask(encoder);
610 }
611 EXPORT_SYMBOL(drm_connector_has_possible_encoder);
612
drm_mode_remove(struct drm_connector * connector,struct drm_display_mode * mode)613 static void drm_mode_remove(struct drm_connector *connector,
614 struct drm_display_mode *mode)
615 {
616 list_del(&mode->head);
617 drm_mode_destroy(connector->dev, mode);
618 }
619
620 /**
621 * drm_connector_cleanup - cleans up an initialised connector
622 * @connector: connector to cleanup
623 *
624 * Cleans up the connector but doesn't free the object.
625 */
drm_connector_cleanup(struct drm_connector * connector)626 void drm_connector_cleanup(struct drm_connector *connector)
627 {
628 struct drm_device *dev = connector->dev;
629 struct drm_display_mode *mode, *t;
630
631 /* The connector should have been removed from userspace long before
632 * it is finally destroyed.
633 */
634 if (WARN_ON(connector->registration_state ==
635 DRM_CONNECTOR_REGISTERED))
636 drm_connector_unregister(connector);
637
638 if (connector->privacy_screen) {
639 drm_privacy_screen_put(connector->privacy_screen);
640 connector->privacy_screen = NULL;
641 }
642
643 if (connector->tile_group) {
644 drm_mode_put_tile_group(dev, connector->tile_group);
645 connector->tile_group = NULL;
646 }
647
648 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
649 drm_mode_remove(connector, mode);
650
651 list_for_each_entry_safe(mode, t, &connector->modes, head)
652 drm_mode_remove(connector, mode);
653
654 ida_free(&drm_connector_enum_list[connector->connector_type].ida,
655 connector->connector_type_id);
656
657 ida_free(&dev->mode_config.connector_ida, connector->index);
658
659 kfree(connector->display_info.bus_formats);
660 kfree(connector->display_info.vics);
661 drm_mode_object_unregister(dev, &connector->base);
662 kfree(connector->name);
663 connector->name = NULL;
664 fwnode_handle_put(connector->fwnode);
665 connector->fwnode = NULL;
666 spin_lock_irq(&dev->mode_config.connector_list_lock);
667 list_del(&connector->head);
668 dev->mode_config.num_connector--;
669 spin_unlock_irq(&dev->mode_config.connector_list_lock);
670
671 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
672 if (connector->state && connector->funcs->atomic_destroy_state)
673 connector->funcs->atomic_destroy_state(connector,
674 connector->state);
675
676 mutex_destroy(&connector->hdmi.infoframes.lock);
677 mutex_destroy(&connector->mutex);
678
679 memset(connector, 0, sizeof(*connector));
680
681 if (dev->registered)
682 drm_sysfs_hotplug_event(dev);
683 }
684 EXPORT_SYMBOL(drm_connector_cleanup);
685
686 /**
687 * drm_connector_register - register a connector
688 * @connector: the connector to register
689 *
690 * Register userspace interfaces for a connector. Only call this for connectors
691 * which can be hotplugged after drm_dev_register() has been called already,
692 * e.g. DP MST connectors. All other connectors will be registered automatically
693 * when calling drm_dev_register().
694 *
695 * When the connector is no longer available, callers must call
696 * drm_connector_unregister().
697 *
698 * Returns:
699 * Zero on success, error code on failure.
700 */
drm_connector_register(struct drm_connector * connector)701 int drm_connector_register(struct drm_connector *connector)
702 {
703 int ret = 0;
704
705 if (!connector->dev->registered)
706 return 0;
707
708 mutex_lock(&connector->mutex);
709 if (connector->registration_state != DRM_CONNECTOR_INITIALIZING)
710 goto unlock;
711
712 ret = drm_sysfs_connector_add(connector);
713 if (ret)
714 goto unlock;
715
716 drm_debugfs_connector_add(connector);
717
718 if (connector->funcs->late_register) {
719 ret = connector->funcs->late_register(connector);
720 if (ret)
721 goto err_debugfs;
722 }
723
724 ret = drm_sysfs_connector_add_late(connector);
725 if (ret)
726 goto err_late_register;
727
728 drm_mode_object_register(connector->dev, &connector->base);
729
730 connector->registration_state = DRM_CONNECTOR_REGISTERED;
731
732 /* Let userspace know we have a new connector */
733 drm_sysfs_connector_hotplug_event(connector);
734
735 if (connector->privacy_screen)
736 drm_privacy_screen_register_notifier(connector->privacy_screen,
737 &connector->privacy_screen_notifier);
738
739 mutex_lock(&connector_list_lock);
740 list_add_tail(&connector->global_connector_list_entry, &connector_list);
741 mutex_unlock(&connector_list_lock);
742 goto unlock;
743
744 err_late_register:
745 if (connector->funcs->early_unregister)
746 connector->funcs->early_unregister(connector);
747 err_debugfs:
748 drm_debugfs_connector_remove(connector);
749 drm_sysfs_connector_remove(connector);
750 unlock:
751 mutex_unlock(&connector->mutex);
752 return ret;
753 }
754 EXPORT_SYMBOL(drm_connector_register);
755
756 /**
757 * drm_connector_unregister - unregister a connector
758 * @connector: the connector to unregister
759 *
760 * Unregister userspace interfaces for a connector. Only call this for
761 * connectors which have been registered explicitly by calling
762 * drm_connector_register().
763 */
drm_connector_unregister(struct drm_connector * connector)764 void drm_connector_unregister(struct drm_connector *connector)
765 {
766 mutex_lock(&connector->mutex);
767 if (connector->registration_state != DRM_CONNECTOR_REGISTERED) {
768 mutex_unlock(&connector->mutex);
769 return;
770 }
771
772 mutex_lock(&connector_list_lock);
773 list_del_init(&connector->global_connector_list_entry);
774 mutex_unlock(&connector_list_lock);
775
776 if (connector->privacy_screen)
777 drm_privacy_screen_unregister_notifier(
778 connector->privacy_screen,
779 &connector->privacy_screen_notifier);
780
781 drm_sysfs_connector_remove_early(connector);
782
783 if (connector->funcs->early_unregister)
784 connector->funcs->early_unregister(connector);
785
786 drm_debugfs_connector_remove(connector);
787 drm_sysfs_connector_remove(connector);
788
789 connector->registration_state = DRM_CONNECTOR_UNREGISTERED;
790 mutex_unlock(&connector->mutex);
791 }
792 EXPORT_SYMBOL(drm_connector_unregister);
793
drm_connector_unregister_all(struct drm_device * dev)794 void drm_connector_unregister_all(struct drm_device *dev)
795 {
796 struct drm_connector *connector;
797 struct drm_connector_list_iter conn_iter;
798
799 drm_connector_list_iter_begin(dev, &conn_iter);
800 drm_for_each_connector_iter(connector, &conn_iter)
801 drm_connector_unregister(connector);
802 drm_connector_list_iter_end(&conn_iter);
803 }
804
drm_connector_register_all(struct drm_device * dev)805 int drm_connector_register_all(struct drm_device *dev)
806 {
807 struct drm_connector *connector;
808 struct drm_connector_list_iter conn_iter;
809 int ret = 0;
810
811 drm_connector_list_iter_begin(dev, &conn_iter);
812 drm_for_each_connector_iter(connector, &conn_iter) {
813 ret = drm_connector_register(connector);
814 if (ret)
815 break;
816 }
817 drm_connector_list_iter_end(&conn_iter);
818
819 if (ret)
820 drm_connector_unregister_all(dev);
821 return ret;
822 }
823
824 /**
825 * drm_get_connector_status_name - return a string for connector status
826 * @status: connector status to compute name of
827 *
828 * In contrast to the other drm_get_*_name functions this one here returns a
829 * const pointer and hence is threadsafe.
830 *
831 * Returns: connector status string
832 */
drm_get_connector_status_name(enum drm_connector_status status)833 const char *drm_get_connector_status_name(enum drm_connector_status status)
834 {
835 if (status == connector_status_connected)
836 return "connected";
837 else if (status == connector_status_disconnected)
838 return "disconnected";
839 else
840 return "unknown";
841 }
842 EXPORT_SYMBOL(drm_get_connector_status_name);
843
844 /**
845 * drm_get_connector_force_name - return a string for connector force
846 * @force: connector force to get name of
847 *
848 * Returns: const pointer to name.
849 */
drm_get_connector_force_name(enum drm_connector_force force)850 const char *drm_get_connector_force_name(enum drm_connector_force force)
851 {
852 switch (force) {
853 case DRM_FORCE_UNSPECIFIED:
854 return "unspecified";
855 case DRM_FORCE_OFF:
856 return "off";
857 case DRM_FORCE_ON:
858 return "on";
859 case DRM_FORCE_ON_DIGITAL:
860 return "digital";
861 default:
862 return "unknown";
863 }
864 }
865
866 #ifdef CONFIG_LOCKDEP
867 static struct lockdep_map connector_list_iter_dep_map = {
868 .name = "drm_connector_list_iter"
869 };
870 #endif
871
872 /**
873 * drm_connector_list_iter_begin - initialize a connector_list iterator
874 * @dev: DRM device
875 * @iter: connector_list iterator
876 *
877 * Sets @iter up to walk the &drm_mode_config.connector_list of @dev. @iter
878 * must always be cleaned up again by calling drm_connector_list_iter_end().
879 * Iteration itself happens using drm_connector_list_iter_next() or
880 * drm_for_each_connector_iter().
881 */
drm_connector_list_iter_begin(struct drm_device * dev,struct drm_connector_list_iter * iter)882 void drm_connector_list_iter_begin(struct drm_device *dev,
883 struct drm_connector_list_iter *iter)
884 {
885 iter->dev = dev;
886 iter->conn = NULL;
887 lock_acquire_shared_recursive(&connector_list_iter_dep_map, 0, 1, NULL, _RET_IP_);
888 }
889 EXPORT_SYMBOL(drm_connector_list_iter_begin);
890
891 /*
892 * Extra-safe connector put function that works in any context. Should only be
893 * used from the connector_iter functions, where we never really expect to
894 * actually release the connector when dropping our final reference.
895 */
896 static void
__drm_connector_put_safe(struct drm_connector * conn)897 __drm_connector_put_safe(struct drm_connector *conn)
898 {
899 struct drm_mode_config *config = &conn->dev->mode_config;
900
901 lockdep_assert_held(&config->connector_list_lock);
902
903 if (!refcount_dec_and_test(&conn->base.refcount.refcount))
904 return;
905
906 llist_add(&conn->free_node, &config->connector_free_list);
907 schedule_work(&config->connector_free_work);
908 }
909
910 /**
911 * drm_connector_list_iter_next - return next connector
912 * @iter: connector_list iterator
913 *
914 * Returns: the next connector for @iter, or NULL when the list walk has
915 * completed.
916 */
917 struct drm_connector *
drm_connector_list_iter_next(struct drm_connector_list_iter * iter)918 drm_connector_list_iter_next(struct drm_connector_list_iter *iter)
919 {
920 struct drm_connector *old_conn = iter->conn;
921 struct drm_mode_config *config = &iter->dev->mode_config;
922 struct list_head *lhead;
923 unsigned long flags;
924
925 spin_lock_irqsave(&config->connector_list_lock, flags);
926 lhead = old_conn ? &old_conn->head : &config->connector_list;
927
928 do {
929 if (lhead->next == &config->connector_list) {
930 iter->conn = NULL;
931 break;
932 }
933
934 lhead = lhead->next;
935 iter->conn = list_entry(lhead, struct drm_connector, head);
936
937 /* loop until it's not a zombie connector */
938 } while (!kref_get_unless_zero(&iter->conn->base.refcount));
939
940 if (old_conn)
941 __drm_connector_put_safe(old_conn);
942 spin_unlock_irqrestore(&config->connector_list_lock, flags);
943
944 return iter->conn;
945 }
946 EXPORT_SYMBOL(drm_connector_list_iter_next);
947
948 /**
949 * drm_connector_list_iter_end - tear down a connector_list iterator
950 * @iter: connector_list iterator
951 *
952 * Tears down @iter and releases any resources (like &drm_connector references)
953 * acquired while walking the list. This must always be called, both when the
954 * iteration completes fully or when it was aborted without walking the entire
955 * list.
956 */
drm_connector_list_iter_end(struct drm_connector_list_iter * iter)957 void drm_connector_list_iter_end(struct drm_connector_list_iter *iter)
958 {
959 struct drm_mode_config *config = &iter->dev->mode_config;
960 unsigned long flags;
961
962 iter->dev = NULL;
963 if (iter->conn) {
964 spin_lock_irqsave(&config->connector_list_lock, flags);
965 __drm_connector_put_safe(iter->conn);
966 spin_unlock_irqrestore(&config->connector_list_lock, flags);
967 }
968 lock_release(&connector_list_iter_dep_map, _RET_IP_);
969 }
970 EXPORT_SYMBOL(drm_connector_list_iter_end);
971
972 static const struct drm_prop_enum_list drm_subpixel_enum_list[] = {
973 { SubPixelUnknown, "Unknown" },
974 { SubPixelHorizontalRGB, "Horizontal RGB" },
975 { SubPixelHorizontalBGR, "Horizontal BGR" },
976 { SubPixelVerticalRGB, "Vertical RGB" },
977 { SubPixelVerticalBGR, "Vertical BGR" },
978 { SubPixelNone, "None" },
979 };
980
981 /**
982 * drm_get_subpixel_order_name - return a string for a given subpixel enum
983 * @order: enum of subpixel_order
984 *
985 * Note you could abuse this and return something out of bounds, but that
986 * would be a caller error. No unscrubbed user data should make it here.
987 *
988 * Returns: string describing an enumerated subpixel property
989 */
drm_get_subpixel_order_name(enum subpixel_order order)990 const char *drm_get_subpixel_order_name(enum subpixel_order order)
991 {
992 return drm_subpixel_enum_list[order].name;
993 }
994 EXPORT_SYMBOL(drm_get_subpixel_order_name);
995
996 static const struct drm_prop_enum_list drm_dpms_enum_list[] = {
997 { DRM_MODE_DPMS_ON, "On" },
998 { DRM_MODE_DPMS_STANDBY, "Standby" },
999 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
1000 { DRM_MODE_DPMS_OFF, "Off" }
1001 };
1002 DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
1003
1004 static const struct drm_prop_enum_list drm_link_status_enum_list[] = {
1005 { DRM_MODE_LINK_STATUS_GOOD, "Good" },
1006 { DRM_MODE_LINK_STATUS_BAD, "Bad" },
1007 };
1008
1009 /**
1010 * drm_display_info_set_bus_formats - set the supported bus formats
1011 * @info: display info to store bus formats in
1012 * @formats: array containing the supported bus formats
1013 * @num_formats: the number of entries in the fmts array
1014 *
1015 * Store the supported bus formats in display info structure.
1016 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
1017 * a full list of available formats.
1018 *
1019 * Returns:
1020 * 0 on success or a negative error code on failure.
1021 */
drm_display_info_set_bus_formats(struct drm_display_info * info,const u32 * formats,unsigned int num_formats)1022 int drm_display_info_set_bus_formats(struct drm_display_info *info,
1023 const u32 *formats,
1024 unsigned int num_formats)
1025 {
1026 u32 *fmts = NULL;
1027
1028 if (!formats && num_formats)
1029 return -EINVAL;
1030
1031 if (formats && num_formats) {
1032 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
1033 GFP_KERNEL);
1034 if (!fmts)
1035 return -ENOMEM;
1036 }
1037
1038 kfree(info->bus_formats);
1039 info->bus_formats = fmts;
1040 info->num_bus_formats = num_formats;
1041
1042 return 0;
1043 }
1044 EXPORT_SYMBOL(drm_display_info_set_bus_formats);
1045
1046 /* Optional connector properties. */
1047 static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = {
1048 { DRM_MODE_SCALE_NONE, "None" },
1049 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
1050 { DRM_MODE_SCALE_CENTER, "Center" },
1051 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
1052 };
1053
1054 static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
1055 { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
1056 { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
1057 { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
1058 };
1059
1060 static const struct drm_prop_enum_list drm_content_type_enum_list[] = {
1061 { DRM_MODE_CONTENT_TYPE_NO_DATA, "No Data" },
1062 { DRM_MODE_CONTENT_TYPE_GRAPHICS, "Graphics" },
1063 { DRM_MODE_CONTENT_TYPE_PHOTO, "Photo" },
1064 { DRM_MODE_CONTENT_TYPE_CINEMA, "Cinema" },
1065 { DRM_MODE_CONTENT_TYPE_GAME, "Game" },
1066 };
1067
1068 static const struct drm_prop_enum_list drm_panel_orientation_enum_list[] = {
1069 { DRM_MODE_PANEL_ORIENTATION_NORMAL, "Normal" },
1070 { DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP, "Upside Down" },
1071 { DRM_MODE_PANEL_ORIENTATION_LEFT_UP, "Left Side Up" },
1072 { DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, "Right Side Up" },
1073 };
1074
1075 static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = {
1076 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
1077 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
1078 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
1079 };
1080 DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
1081
1082 static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = {
1083 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I, TV-out and DP */
1084 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
1085 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
1086 };
1087 DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
1088 drm_dvi_i_subconnector_enum_list)
1089
1090 static const struct drm_prop_enum_list drm_tv_mode_enum_list[] = {
1091 { DRM_MODE_TV_MODE_NTSC, "NTSC" },
1092 { DRM_MODE_TV_MODE_NTSC_443, "NTSC-443" },
1093 { DRM_MODE_TV_MODE_NTSC_J, "NTSC-J" },
1094 { DRM_MODE_TV_MODE_PAL, "PAL" },
1095 { DRM_MODE_TV_MODE_PAL_M, "PAL-M" },
1096 { DRM_MODE_TV_MODE_PAL_N, "PAL-N" },
1097 { DRM_MODE_TV_MODE_SECAM, "SECAM" },
1098 { DRM_MODE_TV_MODE_MONOCHROME, "Mono" },
1099 };
DRM_ENUM_NAME_FN(drm_get_tv_mode_name,drm_tv_mode_enum_list)1100 DRM_ENUM_NAME_FN(drm_get_tv_mode_name, drm_tv_mode_enum_list)
1101
1102 /**
1103 * drm_get_tv_mode_from_name - Translates a TV mode name into its enum value
1104 * @name: TV Mode name we want to convert
1105 * @len: Length of @name
1106 *
1107 * Translates @name into an enum drm_connector_tv_mode.
1108 *
1109 * Returns: the enum value on success, a negative errno otherwise.
1110 */
1111 int drm_get_tv_mode_from_name(const char *name, size_t len)
1112 {
1113 unsigned int i;
1114
1115 for (i = 0; i < ARRAY_SIZE(drm_tv_mode_enum_list); i++) {
1116 const struct drm_prop_enum_list *item = &drm_tv_mode_enum_list[i];
1117
1118 if (strlen(item->name) == len && !strncmp(item->name, name, len))
1119 return item->type;
1120 }
1121
1122 return -EINVAL;
1123 }
1124 EXPORT_SYMBOL(drm_get_tv_mode_from_name);
1125
1126 static const struct drm_prop_enum_list drm_tv_select_enum_list[] = {
1127 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
1128 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
1129 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
1130 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
1131 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
1132 };
1133 DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
1134
1135 static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = {
1136 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I, TV-out and DP */
1137 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
1138 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
1139 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
1140 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
1141 };
1142 DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
1143 drm_tv_subconnector_enum_list)
1144
1145 static const struct drm_prop_enum_list drm_dp_subconnector_enum_list[] = {
1146 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I, TV-out and DP */
1147 { DRM_MODE_SUBCONNECTOR_VGA, "VGA" }, /* DP */
1148 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DP */
1149 { DRM_MODE_SUBCONNECTOR_HDMIA, "HDMI" }, /* DP */
1150 { DRM_MODE_SUBCONNECTOR_DisplayPort, "DP" }, /* DP */
1151 { DRM_MODE_SUBCONNECTOR_Wireless, "Wireless" }, /* DP */
1152 { DRM_MODE_SUBCONNECTOR_Native, "Native" }, /* DP */
1153 };
1154
1155 DRM_ENUM_NAME_FN(drm_get_dp_subconnector_name,
1156 drm_dp_subconnector_enum_list)
1157
1158
1159 static const char * const colorspace_names[] = {
1160 /* For Default case, driver will set the colorspace */
1161 [DRM_MODE_COLORIMETRY_DEFAULT] = "Default",
1162 /* Standard Definition Colorimetry based on CEA 861 */
1163 [DRM_MODE_COLORIMETRY_SMPTE_170M_YCC] = "SMPTE_170M_YCC",
1164 [DRM_MODE_COLORIMETRY_BT709_YCC] = "BT709_YCC",
1165 /* Standard Definition Colorimetry based on IEC 61966-2-4 */
1166 [DRM_MODE_COLORIMETRY_XVYCC_601] = "XVYCC_601",
1167 /* High Definition Colorimetry based on IEC 61966-2-4 */
1168 [DRM_MODE_COLORIMETRY_XVYCC_709] = "XVYCC_709",
1169 /* Colorimetry based on IEC 61966-2-1/Amendment 1 */
1170 [DRM_MODE_COLORIMETRY_SYCC_601] = "SYCC_601",
1171 /* Colorimetry based on IEC 61966-2-5 [33] */
1172 [DRM_MODE_COLORIMETRY_OPYCC_601] = "opYCC_601",
1173 /* Colorimetry based on IEC 61966-2-5 */
1174 [DRM_MODE_COLORIMETRY_OPRGB] = "opRGB",
1175 /* Colorimetry based on ITU-R BT.2020 */
1176 [DRM_MODE_COLORIMETRY_BT2020_CYCC] = "BT2020_CYCC",
1177 /* Colorimetry based on ITU-R BT.2020 */
1178 [DRM_MODE_COLORIMETRY_BT2020_RGB] = "BT2020_RGB",
1179 /* Colorimetry based on ITU-R BT.2020 */
1180 [DRM_MODE_COLORIMETRY_BT2020_YCC] = "BT2020_YCC",
1181 /* Added as part of Additional Colorimetry Extension in 861.G */
1182 [DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65] = "DCI-P3_RGB_D65",
1183 [DRM_MODE_COLORIMETRY_DCI_P3_RGB_THEATER] = "DCI-P3_RGB_Theater",
1184 [DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED] = "RGB_WIDE_FIXED",
1185 /* Colorimetry based on scRGB (IEC 61966-2-2) */
1186 [DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT] = "RGB_WIDE_FLOAT",
1187 [DRM_MODE_COLORIMETRY_BT601_YCC] = "BT601_YCC",
1188 };
1189
1190 /**
1191 * drm_get_colorspace_name - return a string for color encoding
1192 * @colorspace: color space to compute name of
1193 *
1194 * In contrast to the other drm_get_*_name functions this one here returns a
1195 * const pointer and hence is threadsafe.
1196 */
drm_get_colorspace_name(enum drm_colorspace colorspace)1197 const char *drm_get_colorspace_name(enum drm_colorspace colorspace)
1198 {
1199 if (colorspace < ARRAY_SIZE(colorspace_names) && colorspace_names[colorspace])
1200 return colorspace_names[colorspace];
1201 else
1202 return "(null)";
1203 }
1204
1205 static const u32 hdmi_colorspaces =
1206 BIT(DRM_MODE_COLORIMETRY_SMPTE_170M_YCC) |
1207 BIT(DRM_MODE_COLORIMETRY_BT709_YCC) |
1208 BIT(DRM_MODE_COLORIMETRY_XVYCC_601) |
1209 BIT(DRM_MODE_COLORIMETRY_XVYCC_709) |
1210 BIT(DRM_MODE_COLORIMETRY_SYCC_601) |
1211 BIT(DRM_MODE_COLORIMETRY_OPYCC_601) |
1212 BIT(DRM_MODE_COLORIMETRY_OPRGB) |
1213 BIT(DRM_MODE_COLORIMETRY_BT2020_CYCC) |
1214 BIT(DRM_MODE_COLORIMETRY_BT2020_RGB) |
1215 BIT(DRM_MODE_COLORIMETRY_BT2020_YCC) |
1216 BIT(DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65) |
1217 BIT(DRM_MODE_COLORIMETRY_DCI_P3_RGB_THEATER);
1218
1219 /*
1220 * As per DP 1.4a spec, 2.2.5.7.5 VSC SDP Payload for Pixel Encoding/Colorimetry
1221 * Format Table 2-120
1222 */
1223 static const u32 dp_colorspaces =
1224 BIT(DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED) |
1225 BIT(DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT) |
1226 BIT(DRM_MODE_COLORIMETRY_OPRGB) |
1227 BIT(DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65) |
1228 BIT(DRM_MODE_COLORIMETRY_BT2020_RGB) |
1229 BIT(DRM_MODE_COLORIMETRY_BT601_YCC) |
1230 BIT(DRM_MODE_COLORIMETRY_BT709_YCC) |
1231 BIT(DRM_MODE_COLORIMETRY_XVYCC_601) |
1232 BIT(DRM_MODE_COLORIMETRY_XVYCC_709) |
1233 BIT(DRM_MODE_COLORIMETRY_SYCC_601) |
1234 BIT(DRM_MODE_COLORIMETRY_OPYCC_601) |
1235 BIT(DRM_MODE_COLORIMETRY_BT2020_CYCC) |
1236 BIT(DRM_MODE_COLORIMETRY_BT2020_YCC);
1237
1238 static const struct drm_prop_enum_list broadcast_rgb_names[] = {
1239 { DRM_HDMI_BROADCAST_RGB_AUTO, "Automatic" },
1240 { DRM_HDMI_BROADCAST_RGB_FULL, "Full" },
1241 { DRM_HDMI_BROADCAST_RGB_LIMITED, "Limited 16:235" },
1242 };
1243
1244 /*
1245 * drm_hdmi_connector_get_broadcast_rgb_name - Return a string for HDMI connector RGB broadcast selection
1246 * @broadcast_rgb: Broadcast RGB selection to compute name of
1247 *
1248 * Returns: the name of the Broadcast RGB selection, or NULL if the type
1249 * is not valid.
1250 */
1251 const char *
drm_hdmi_connector_get_broadcast_rgb_name(enum drm_hdmi_broadcast_rgb broadcast_rgb)1252 drm_hdmi_connector_get_broadcast_rgb_name(enum drm_hdmi_broadcast_rgb broadcast_rgb)
1253 {
1254 if (broadcast_rgb >= ARRAY_SIZE(broadcast_rgb_names))
1255 return NULL;
1256
1257 return broadcast_rgb_names[broadcast_rgb].name;
1258 }
1259 EXPORT_SYMBOL(drm_hdmi_connector_get_broadcast_rgb_name);
1260
1261 static const char * const output_format_str[] = {
1262 [HDMI_COLORSPACE_RGB] = "RGB",
1263 [HDMI_COLORSPACE_YUV420] = "YUV 4:2:0",
1264 [HDMI_COLORSPACE_YUV422] = "YUV 4:2:2",
1265 [HDMI_COLORSPACE_YUV444] = "YUV 4:4:4",
1266 };
1267
1268 /*
1269 * drm_hdmi_connector_get_output_format_name() - Return a string for HDMI connector output format
1270 * @fmt: Output format to compute name of
1271 *
1272 * Returns: the name of the output format, or NULL if the type is not
1273 * valid.
1274 */
1275 const char *
drm_hdmi_connector_get_output_format_name(enum hdmi_colorspace fmt)1276 drm_hdmi_connector_get_output_format_name(enum hdmi_colorspace fmt)
1277 {
1278 if (fmt >= ARRAY_SIZE(output_format_str))
1279 return NULL;
1280
1281 return output_format_str[fmt];
1282 }
1283 EXPORT_SYMBOL(drm_hdmi_connector_get_output_format_name);
1284
1285 /**
1286 * DOC: standard connector properties
1287 *
1288 * DRM connectors have a few standardized properties:
1289 *
1290 * EDID:
1291 * Blob property which contains the current EDID read from the sink. This
1292 * is useful to parse sink identification information like vendor, model
1293 * and serial. Drivers should update this property by calling
1294 * drm_connector_update_edid_property(), usually after having parsed
1295 * the EDID using drm_add_edid_modes(). Userspace cannot change this
1296 * property.
1297 *
1298 * User-space should not parse the EDID to obtain information exposed via
1299 * other KMS properties (because the kernel might apply limits, quirks or
1300 * fixups to the EDID). For instance, user-space should not try to parse
1301 * mode lists from the EDID.
1302 * DPMS:
1303 * Legacy property for setting the power state of the connector. For atomic
1304 * drivers this is only provided for backwards compatibility with existing
1305 * drivers, it remaps to controlling the "ACTIVE" property on the CRTC the
1306 * connector is linked to. Drivers should never set this property directly,
1307 * it is handled by the DRM core by calling the &drm_connector_funcs.dpms
1308 * callback. For atomic drivers the remapping to the "ACTIVE" property is
1309 * implemented in the DRM core.
1310 *
1311 * On atomic drivers any DPMS setproperty ioctl where the value does not
1312 * change is completely skipped, otherwise a full atomic commit will occur.
1313 * On legacy drivers the exact behavior is driver specific.
1314 *
1315 * Note that this property cannot be set through the MODE_ATOMIC ioctl,
1316 * userspace must use "ACTIVE" on the CRTC instead.
1317 *
1318 * WARNING:
1319 *
1320 * For userspace also running on legacy drivers the "DPMS" semantics are a
1321 * lot more complicated. First, userspace cannot rely on the "DPMS" value
1322 * returned by the GETCONNECTOR actually reflecting reality, because many
1323 * drivers fail to update it. For atomic drivers this is taken care of in
1324 * drm_atomic_helper_update_legacy_modeset_state().
1325 *
1326 * The second issue is that the DPMS state is only well-defined when the
1327 * connector is connected to a CRTC. In atomic the DRM core enforces that
1328 * "ACTIVE" is off in such a case, no such checks exists for "DPMS".
1329 *
1330 * Finally, when enabling an output using the legacy SETCONFIG ioctl then
1331 * "DPMS" is forced to ON. But see above, that might not be reflected in
1332 * the software value on legacy drivers.
1333 *
1334 * Summarizing: Only set "DPMS" when the connector is known to be enabled,
1335 * assume that a successful SETCONFIG call also sets "DPMS" to on, and
1336 * never read back the value of "DPMS" because it can be incorrect.
1337 * PATH:
1338 * Connector path property to identify how this sink is physically
1339 * connected. Used by DP MST. This should be set by calling
1340 * drm_connector_set_path_property(), in the case of DP MST with the
1341 * path property the MST manager created. Userspace cannot change this
1342 * property.
1343 *
1344 * In the case of DP MST, the property has the format
1345 * ``mst:<parent>-<ports>`` where ``<parent>`` is the KMS object ID of the
1346 * parent connector and ``<ports>`` is a hyphen-separated list of DP MST
1347 * port numbers. Note, KMS object IDs are not guaranteed to be stable
1348 * across reboots.
1349 * TILE:
1350 * Connector tile group property to indicate how a set of DRM connector
1351 * compose together into one logical screen. This is used by both high-res
1352 * external screens (often only using a single cable, but exposing multiple
1353 * DP MST sinks), or high-res integrated panels (like dual-link DSI) which
1354 * are not gen-locked. Note that for tiled panels which are genlocked, like
1355 * dual-link LVDS or dual-link DSI, the driver should try to not expose the
1356 * tiling and virtualise both &drm_crtc and &drm_plane if needed. Drivers
1357 * should update this value using drm_connector_set_tile_property().
1358 * Userspace cannot change this property.
1359 * link-status:
1360 * Connector link-status property to indicate the status of link. The
1361 * default value of link-status is "GOOD". If something fails during or
1362 * after modeset, the kernel driver may set this to "BAD" and issue a
1363 * hotplug uevent. Drivers should update this value using
1364 * drm_connector_set_link_status_property().
1365 *
1366 * When user-space receives the hotplug uevent and detects a "BAD"
1367 * link-status, the sink doesn't receive pixels anymore (e.g. the screen
1368 * becomes completely black). The list of available modes may have
1369 * changed. User-space is expected to pick a new mode if the current one
1370 * has disappeared and perform a new modeset with link-status set to
1371 * "GOOD" to re-enable the connector.
1372 *
1373 * If multiple connectors share the same CRTC and one of them gets a "BAD"
1374 * link-status, the other are unaffected (ie. the sinks still continue to
1375 * receive pixels).
1376 *
1377 * When user-space performs an atomic commit on a connector with a "BAD"
1378 * link-status without resetting the property to "GOOD", the sink may
1379 * still not receive pixels. When user-space performs an atomic commit
1380 * which resets the link-status property to "GOOD" without the
1381 * ALLOW_MODESET flag set, it might fail because a modeset is required.
1382 *
1383 * User-space can only change link-status to "GOOD", changing it to "BAD"
1384 * is a no-op.
1385 *
1386 * For backwards compatibility with non-atomic userspace the kernel
1387 * tries to automatically set the link-status back to "GOOD" in the
1388 * SETCRTC IOCTL. This might fail if the mode is no longer valid, similar
1389 * to how it might fail if a different screen has been connected in the
1390 * interim.
1391 * non_desktop:
1392 * Indicates the output should be ignored for purposes of displaying a
1393 * standard desktop environment or console. This is most likely because
1394 * the output device is not rectilinear.
1395 * Content Protection:
1396 * This property is used by userspace to request the kernel protect future
1397 * content communicated over the link. When requested, kernel will apply
1398 * the appropriate means of protection (most often HDCP), and use the
1399 * property to tell userspace the protection is active.
1400 *
1401 * Drivers can set this up by calling
1402 * drm_connector_attach_content_protection_property() on initialization.
1403 *
1404 * The value of this property can be one of the following:
1405 *
1406 * DRM_MODE_CONTENT_PROTECTION_UNDESIRED = 0
1407 * The link is not protected, content is transmitted in the clear.
1408 * DRM_MODE_CONTENT_PROTECTION_DESIRED = 1
1409 * Userspace has requested content protection, but the link is not
1410 * currently protected. When in this state, kernel should enable
1411 * Content Protection as soon as possible.
1412 * DRM_MODE_CONTENT_PROTECTION_ENABLED = 2
1413 * Userspace has requested content protection, and the link is
1414 * protected. Only the driver can set the property to this value.
1415 * If userspace attempts to set to ENABLED, kernel will return
1416 * -EINVAL.
1417 *
1418 * A few guidelines:
1419 *
1420 * - DESIRED state should be preserved until userspace de-asserts it by
1421 * setting the property to UNDESIRED. This means ENABLED should only
1422 * transition to UNDESIRED when the user explicitly requests it.
1423 * - If the state is DESIRED, kernel should attempt to re-authenticate the
1424 * link whenever possible. This includes across disable/enable, dpms,
1425 * hotplug, downstream device changes, link status failures, etc..
1426 * - Kernel sends uevent with the connector id and property id through
1427 * @drm_hdcp_update_content_protection, upon below kernel triggered
1428 * scenarios:
1429 *
1430 * - DESIRED -> ENABLED (authentication success)
1431 * - ENABLED -> DESIRED (termination of authentication)
1432 * - Please note no uevents for userspace triggered property state changes,
1433 * which can't fail such as
1434 *
1435 * - DESIRED/ENABLED -> UNDESIRED
1436 * - UNDESIRED -> DESIRED
1437 * - Userspace is responsible for polling the property or listen to uevents
1438 * to determine when the value transitions from ENABLED to DESIRED.
1439 * This signifies the link is no longer protected and userspace should
1440 * take appropriate action (whatever that might be).
1441 *
1442 * HDCP Content Type:
1443 * This Enum property is used by the userspace to declare the content type
1444 * of the display stream, to kernel. Here display stream stands for any
1445 * display content that userspace intended to display through HDCP
1446 * encryption.
1447 *
1448 * Content Type of a stream is decided by the owner of the stream, as
1449 * "HDCP Type0" or "HDCP Type1".
1450 *
1451 * The value of the property can be one of the below:
1452 * - "HDCP Type0": DRM_MODE_HDCP_CONTENT_TYPE0 = 0
1453 * - "HDCP Type1": DRM_MODE_HDCP_CONTENT_TYPE1 = 1
1454 *
1455 * When kernel starts the HDCP authentication (see "Content Protection"
1456 * for details), it uses the content type in "HDCP Content Type"
1457 * for performing the HDCP authentication with the display sink.
1458 *
1459 * Please note in HDCP spec versions, a link can be authenticated with
1460 * HDCP 2.2 for Content Type 0/Content Type 1. Where as a link can be
1461 * authenticated with HDCP1.4 only for Content Type 0(though it is implicit
1462 * in nature. As there is no reference for Content Type in HDCP1.4).
1463 *
1464 * HDCP2.2 authentication protocol itself takes the "Content Type" as a
1465 * parameter, which is a input for the DP HDCP2.2 encryption algo.
1466 *
1467 * In case of Type 0 content protection request, kernel driver can choose
1468 * either of HDCP spec versions 1.4 and 2.2. When HDCP2.2 is used for
1469 * "HDCP Type 0", a HDCP 2.2 capable repeater in the downstream can send
1470 * that content to a HDCP 1.4 authenticated HDCP sink (Type0 link).
1471 * But if the content is classified as "HDCP Type 1", above mentioned
1472 * HDCP 2.2 repeater wont send the content to the HDCP sink as it can't
1473 * authenticate the HDCP1.4 capable sink for "HDCP Type 1".
1474 *
1475 * Please note userspace can be ignorant of the HDCP versions used by the
1476 * kernel driver to achieve the "HDCP Content Type".
1477 *
1478 * At current scenario, classifying a content as Type 1 ensures that the
1479 * content will be displayed only through the HDCP2.2 encrypted link.
1480 *
1481 * Note that the HDCP Content Type property is introduced at HDCP 2.2, and
1482 * defaults to type 0. It is only exposed by drivers supporting HDCP 2.2
1483 * (hence supporting Type 0 and Type 1). Based on how next versions of
1484 * HDCP specs are defined content Type could be used for higher versions
1485 * too.
1486 *
1487 * If content type is changed when "Content Protection" is not UNDESIRED,
1488 * then kernel will disable the HDCP and re-enable with new type in the
1489 * same atomic commit. And when "Content Protection" is ENABLED, it means
1490 * that link is HDCP authenticated and encrypted, for the transmission of
1491 * the Type of stream mentioned at "HDCP Content Type".
1492 *
1493 * HDR_OUTPUT_METADATA:
1494 * Connector property to enable userspace to send HDR Metadata to
1495 * driver. This metadata is based on the composition and blending
1496 * policies decided by user, taking into account the hardware and
1497 * sink capabilities. The driver gets this metadata and creates a
1498 * Dynamic Range and Mastering Infoframe (DRM) in case of HDMI,
1499 * SDP packet (Non-audio INFOFRAME SDP v1.3) for DP. This is then
1500 * sent to sink. This notifies the sink of the upcoming frame's Color
1501 * Encoding and Luminance parameters.
1502 *
1503 * Userspace first need to detect the HDR capabilities of sink by
1504 * reading and parsing the EDID. Details of HDR metadata for HDMI
1505 * are added in CTA 861.G spec. For DP , its defined in VESA DP
1506 * Standard v1.4. It needs to then get the metadata information
1507 * of the video/game/app content which are encoded in HDR (basically
1508 * using HDR transfer functions). With this information it needs to
1509 * decide on a blending policy and compose the relevant
1510 * layers/overlays into a common format. Once this blending is done,
1511 * userspace will be aware of the metadata of the composed frame to
1512 * be send to sink. It then uses this property to communicate this
1513 * metadata to driver which then make a Infoframe packet and sends
1514 * to sink based on the type of encoder connected.
1515 *
1516 * Userspace will be responsible to do Tone mapping operation in case:
1517 * - Some layers are HDR and others are SDR
1518 * - HDR layers luminance is not same as sink
1519 *
1520 * It will even need to do colorspace conversion and get all layers
1521 * to one common colorspace for blending. It can use either GL, Media
1522 * or display engine to get this done based on the capabilities of the
1523 * associated hardware.
1524 *
1525 * Driver expects metadata to be put in &struct hdr_output_metadata
1526 * structure from userspace. This is received as blob and stored in
1527 * &drm_connector_state.hdr_output_metadata. It parses EDID and saves the
1528 * sink metadata in &struct hdr_sink_metadata, as
1529 * &drm_connector.hdr_sink_metadata. Driver uses
1530 * drm_hdmi_infoframe_set_hdr_metadata() helper to set the HDR metadata,
1531 * hdmi_drm_infoframe_pack() to pack the infoframe as per spec, in case of
1532 * HDMI encoder.
1533 *
1534 * max bpc:
1535 * This range property is used by userspace to limit the bit depth. When
1536 * used the driver would limit the bpc in accordance with the valid range
1537 * supported by the hardware and sink. Drivers to use the function
1538 * drm_connector_attach_max_bpc_property() to create and attach the
1539 * property to the connector during initialization.
1540 *
1541 * Connectors also have one standardized atomic property:
1542 *
1543 * CRTC_ID:
1544 * Mode object ID of the &drm_crtc this connector should be connected to.
1545 *
1546 * Connectors for LCD panels may also have one standardized property:
1547 *
1548 * panel orientation:
1549 * On some devices the LCD panel is mounted in the casing in such a way
1550 * that the up/top side of the panel does not match with the top side of
1551 * the device. Userspace can use this property to check for this.
1552 * Note that input coordinates from touchscreens (input devices with
1553 * INPUT_PROP_DIRECT) will still map 1:1 to the actual LCD panel
1554 * coordinates, so if userspace rotates the picture to adjust for
1555 * the orientation it must also apply the same transformation to the
1556 * touchscreen input coordinates. This property is initialized by calling
1557 * drm_connector_set_panel_orientation() or
1558 * drm_connector_set_panel_orientation_with_quirk()
1559 *
1560 * scaling mode:
1561 * This property defines how a non-native mode is upscaled to the native
1562 * mode of an LCD panel:
1563 *
1564 * None:
1565 * No upscaling happens, scaling is left to the panel. Not all
1566 * drivers expose this mode.
1567 * Full:
1568 * The output is upscaled to the full resolution of the panel,
1569 * ignoring the aspect ratio.
1570 * Center:
1571 * No upscaling happens, the output is centered within the native
1572 * resolution the panel.
1573 * Full aspect:
1574 * The output is upscaled to maximize either the width or height
1575 * while retaining the aspect ratio.
1576 *
1577 * This property should be set up by calling
1578 * drm_connector_attach_scaling_mode_property(). Note that drivers
1579 * can also expose this property to external outputs, in which case they
1580 * must support "None", which should be the default (since external screens
1581 * have a built-in scaler).
1582 *
1583 * subconnector:
1584 * This property is used by DVI-I, TVout and DisplayPort to indicate different
1585 * connector subtypes. Enum values more or less match with those from main
1586 * connector types.
1587 * For DVI-I and TVout there is also a matching property "select subconnector"
1588 * allowing to switch between signal types.
1589 * DP subconnector corresponds to a downstream port.
1590 *
1591 * privacy-screen sw-state, privacy-screen hw-state:
1592 * These 2 optional properties can be used to query the state of the
1593 * electronic privacy screen that is available on some displays; and in
1594 * some cases also control the state. If a driver implements these
1595 * properties then both properties must be present.
1596 *
1597 * "privacy-screen hw-state" is read-only and reflects the actual state
1598 * of the privacy-screen, possible values: "Enabled", "Disabled,
1599 * "Enabled-locked", "Disabled-locked". The locked states indicate
1600 * that the state cannot be changed through the DRM API. E.g. there
1601 * might be devices where the firmware-setup options, or a hardware
1602 * slider-switch, offer always on / off modes.
1603 *
1604 * "privacy-screen sw-state" can be set to change the privacy-screen state
1605 * when not locked. In this case the driver must update the hw-state
1606 * property to reflect the new state on completion of the commit of the
1607 * sw-state property. Setting the sw-state property when the hw-state is
1608 * locked must be interpreted by the driver as a request to change the
1609 * state to the set state when the hw-state becomes unlocked. E.g. if
1610 * "privacy-screen hw-state" is "Enabled-locked" and the sw-state
1611 * gets set to "Disabled" followed by the user unlocking the state by
1612 * changing the slider-switch position, then the driver must set the
1613 * state to "Disabled" upon receiving the unlock event.
1614 *
1615 * In some cases the privacy-screen's actual state might change outside of
1616 * control of the DRM code. E.g. there might be a firmware handled hotkey
1617 * which toggles the actual state, or the actual state might be changed
1618 * through another userspace API such as writing /proc/acpi/ibm/lcdshadow.
1619 * In this case the driver must update both the hw-state and the sw-state
1620 * to reflect the new value, overwriting any pending state requests in the
1621 * sw-state. Any pending sw-state requests are thus discarded.
1622 *
1623 * Note that the ability for the state to change outside of control of
1624 * the DRM master process means that userspace must not cache the value
1625 * of the sw-state. Caching the sw-state value and including it in later
1626 * atomic commits may lead to overriding a state change done through e.g.
1627 * a firmware handled hotkey. Therefor userspace must not include the
1628 * privacy-screen sw-state in an atomic commit unless it wants to change
1629 * its value.
1630 *
1631 * left margin, right margin, top margin, bottom margin:
1632 * Add margins to the connector's viewport. This is typically used to
1633 * mitigate overscan on TVs.
1634 *
1635 * The value is the size in pixels of the black border which will be
1636 * added. The attached CRTC's content will be scaled to fill the whole
1637 * area inside the margin.
1638 *
1639 * The margins configuration might be sent to the sink, e.g. via HDMI AVI
1640 * InfoFrames.
1641 *
1642 * Drivers can set up these properties by calling
1643 * drm_mode_create_tv_margin_properties().
1644 */
1645
drm_connector_create_standard_properties(struct drm_device * dev)1646 int drm_connector_create_standard_properties(struct drm_device *dev)
1647 {
1648 struct drm_property *prop;
1649
1650 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1651 DRM_MODE_PROP_IMMUTABLE,
1652 "EDID", 0);
1653 if (!prop)
1654 return -ENOMEM;
1655 dev->mode_config.edid_property = prop;
1656
1657 prop = drm_property_create_enum(dev, 0,
1658 "DPMS", drm_dpms_enum_list,
1659 ARRAY_SIZE(drm_dpms_enum_list));
1660 if (!prop)
1661 return -ENOMEM;
1662 dev->mode_config.dpms_property = prop;
1663
1664 prop = drm_property_create(dev,
1665 DRM_MODE_PROP_BLOB |
1666 DRM_MODE_PROP_IMMUTABLE,
1667 "PATH", 0);
1668 if (!prop)
1669 return -ENOMEM;
1670 dev->mode_config.path_property = prop;
1671
1672 prop = drm_property_create(dev,
1673 DRM_MODE_PROP_BLOB |
1674 DRM_MODE_PROP_IMMUTABLE,
1675 "TILE", 0);
1676 if (!prop)
1677 return -ENOMEM;
1678 dev->mode_config.tile_property = prop;
1679
1680 prop = drm_property_create_enum(dev, 0, "link-status",
1681 drm_link_status_enum_list,
1682 ARRAY_SIZE(drm_link_status_enum_list));
1683 if (!prop)
1684 return -ENOMEM;
1685 dev->mode_config.link_status_property = prop;
1686
1687 prop = drm_property_create_bool(dev, DRM_MODE_PROP_IMMUTABLE, "non-desktop");
1688 if (!prop)
1689 return -ENOMEM;
1690 dev->mode_config.non_desktop_property = prop;
1691
1692 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB,
1693 "HDR_OUTPUT_METADATA", 0);
1694 if (!prop)
1695 return -ENOMEM;
1696 dev->mode_config.hdr_output_metadata_property = prop;
1697
1698 return 0;
1699 }
1700
1701 /**
1702 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1703 * @dev: DRM device
1704 *
1705 * Called by a driver the first time a DVI-I connector is made.
1706 *
1707 * Returns: %0
1708 */
drm_mode_create_dvi_i_properties(struct drm_device * dev)1709 int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1710 {
1711 struct drm_property *dvi_i_selector;
1712 struct drm_property *dvi_i_subconnector;
1713
1714 if (dev->mode_config.dvi_i_select_subconnector_property)
1715 return 0;
1716
1717 dvi_i_selector =
1718 drm_property_create_enum(dev, 0,
1719 "select subconnector",
1720 drm_dvi_i_select_enum_list,
1721 ARRAY_SIZE(drm_dvi_i_select_enum_list));
1722 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1723
1724 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1725 "subconnector",
1726 drm_dvi_i_subconnector_enum_list,
1727 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
1728 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1729
1730 return 0;
1731 }
1732 EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1733
1734 /**
1735 * drm_connector_attach_dp_subconnector_property - create subconnector property for DP
1736 * @connector: drm_connector to attach property
1737 *
1738 * Called by a driver when DP connector is created.
1739 */
drm_connector_attach_dp_subconnector_property(struct drm_connector * connector)1740 void drm_connector_attach_dp_subconnector_property(struct drm_connector *connector)
1741 {
1742 struct drm_mode_config *mode_config = &connector->dev->mode_config;
1743
1744 if (!mode_config->dp_subconnector_property)
1745 mode_config->dp_subconnector_property =
1746 drm_property_create_enum(connector->dev,
1747 DRM_MODE_PROP_IMMUTABLE,
1748 "subconnector",
1749 drm_dp_subconnector_enum_list,
1750 ARRAY_SIZE(drm_dp_subconnector_enum_list));
1751
1752 drm_object_attach_property(&connector->base,
1753 mode_config->dp_subconnector_property,
1754 DRM_MODE_SUBCONNECTOR_Unknown);
1755 }
1756 EXPORT_SYMBOL(drm_connector_attach_dp_subconnector_property);
1757
1758 /**
1759 * DOC: HDMI connector properties
1760 *
1761 * Broadcast RGB (HDMI specific)
1762 * Indicates the Quantization Range (Full vs Limited) used. The color
1763 * processing pipeline will be adjusted to match the value of the
1764 * property, and the Infoframes will be generated and sent accordingly.
1765 *
1766 * This property is only relevant if the HDMI output format is RGB. If
1767 * it's one of the YCbCr variant, it will be ignored.
1768 *
1769 * The CRTC attached to the connector must be configured by user-space to
1770 * always produce full-range pixels.
1771 *
1772 * The value of this property can be one of the following:
1773 *
1774 * Automatic:
1775 * The quantization range is selected automatically based on the
1776 * mode according to the HDMI specifications (HDMI 1.4b - Section
1777 * 6.6 - Video Quantization Ranges).
1778 *
1779 * Full:
1780 * Full quantization range is forced.
1781 *
1782 * Limited 16:235:
1783 * Limited quantization range is forced. Unlike the name suggests,
1784 * this works for any number of bits-per-component.
1785 *
1786 * Property values other than Automatic can result in colors being off (if
1787 * limited is selected but the display expects full), or a black screen
1788 * (if full is selected but the display expects limited).
1789 *
1790 * Drivers can set up this property by calling
1791 * drm_connector_attach_broadcast_rgb_property().
1792 *
1793 * content type (HDMI specific):
1794 * Indicates content type setting to be used in HDMI infoframes to indicate
1795 * content type for the external device, so that it adjusts its display
1796 * settings accordingly.
1797 *
1798 * The value of this property can be one of the following:
1799 *
1800 * No Data:
1801 * Content type is unknown
1802 * Graphics:
1803 * Content type is graphics
1804 * Photo:
1805 * Content type is photo
1806 * Cinema:
1807 * Content type is cinema
1808 * Game:
1809 * Content type is game
1810 *
1811 * The meaning of each content type is defined in CTA-861-G table 15.
1812 *
1813 * Drivers can set up this property by calling
1814 * drm_connector_attach_content_type_property(). Decoding to
1815 * infoframe values is done through drm_hdmi_avi_infoframe_content_type().
1816 */
1817
1818 /*
1819 * TODO: Document the properties:
1820 * - brightness
1821 * - contrast
1822 * - flicker reduction
1823 * - hue
1824 * - mode
1825 * - overscan
1826 * - saturation
1827 * - select subconnector
1828 */
1829 /**
1830 * DOC: Analog TV Connector Properties
1831 *
1832 * TV Mode:
1833 * Indicates the TV Mode used on an analog TV connector. The value
1834 * of this property can be one of the following:
1835 *
1836 * NTSC:
1837 * TV Mode is CCIR System M (aka 525-lines) together with
1838 * the NTSC Color Encoding.
1839 *
1840 * NTSC-443:
1841 *
1842 * TV Mode is CCIR System M (aka 525-lines) together with
1843 * the NTSC Color Encoding, but with a color subcarrier
1844 * frequency of 4.43MHz
1845 *
1846 * NTSC-J:
1847 *
1848 * TV Mode is CCIR System M (aka 525-lines) together with
1849 * the NTSC Color Encoding, but with a black level equal to
1850 * the blanking level.
1851 *
1852 * PAL:
1853 *
1854 * TV Mode is CCIR System B (aka 625-lines) together with
1855 * the PAL Color Encoding.
1856 *
1857 * PAL-M:
1858 *
1859 * TV Mode is CCIR System M (aka 525-lines) together with
1860 * the PAL Color Encoding.
1861 *
1862 * PAL-N:
1863 *
1864 * TV Mode is CCIR System N together with the PAL Color
1865 * Encoding, a color subcarrier frequency of 3.58MHz, the
1866 * SECAM color space, and narrower channels than other PAL
1867 * variants.
1868 *
1869 * SECAM:
1870 *
1871 * TV Mode is CCIR System B (aka 625-lines) together with
1872 * the SECAM Color Encoding.
1873 *
1874 * Mono:
1875 *
1876 * Use timings appropriate to the DRM mode, including
1877 * equalizing pulses for a 525-line or 625-line mode,
1878 * with no pedestal or color encoding.
1879 *
1880 * Drivers can set up this property by calling
1881 * drm_mode_create_tv_properties().
1882 */
1883
1884 /**
1885 * drm_connector_attach_content_type_property - attach content-type property
1886 * @connector: connector to attach content type property on.
1887 *
1888 * Called by a driver the first time a HDMI connector is made.
1889 *
1890 * Returns: %0
1891 */
drm_connector_attach_content_type_property(struct drm_connector * connector)1892 int drm_connector_attach_content_type_property(struct drm_connector *connector)
1893 {
1894 if (!drm_mode_create_content_type_property(connector->dev))
1895 drm_object_attach_property(&connector->base,
1896 connector->dev->mode_config.content_type_property,
1897 DRM_MODE_CONTENT_TYPE_NO_DATA);
1898 return 0;
1899 }
1900 EXPORT_SYMBOL(drm_connector_attach_content_type_property);
1901
1902 /**
1903 * drm_connector_attach_tv_margin_properties - attach TV connector margin
1904 * properties
1905 * @connector: DRM connector
1906 *
1907 * Called by a driver when it needs to attach TV margin props to a connector.
1908 * Typically used on SDTV and HDMI connectors.
1909 */
drm_connector_attach_tv_margin_properties(struct drm_connector * connector)1910 void drm_connector_attach_tv_margin_properties(struct drm_connector *connector)
1911 {
1912 struct drm_device *dev = connector->dev;
1913
1914 drm_object_attach_property(&connector->base,
1915 dev->mode_config.tv_left_margin_property,
1916 0);
1917 drm_object_attach_property(&connector->base,
1918 dev->mode_config.tv_right_margin_property,
1919 0);
1920 drm_object_attach_property(&connector->base,
1921 dev->mode_config.tv_top_margin_property,
1922 0);
1923 drm_object_attach_property(&connector->base,
1924 dev->mode_config.tv_bottom_margin_property,
1925 0);
1926 }
1927 EXPORT_SYMBOL(drm_connector_attach_tv_margin_properties);
1928
1929 /**
1930 * drm_mode_create_tv_margin_properties - create TV connector margin properties
1931 * @dev: DRM device
1932 *
1933 * Called by a driver's HDMI connector initialization routine, this function
1934 * creates the TV margin properties for a given device. No need to call this
1935 * function for an SDTV connector, it's already called from
1936 * drm_mode_create_tv_properties_legacy().
1937 *
1938 * Returns:
1939 * 0 on success or a negative error code on failure.
1940 */
drm_mode_create_tv_margin_properties(struct drm_device * dev)1941 int drm_mode_create_tv_margin_properties(struct drm_device *dev)
1942 {
1943 if (dev->mode_config.tv_left_margin_property)
1944 return 0;
1945
1946 dev->mode_config.tv_left_margin_property =
1947 drm_property_create_range(dev, 0, "left margin", 0, 100);
1948 if (!dev->mode_config.tv_left_margin_property)
1949 return -ENOMEM;
1950
1951 dev->mode_config.tv_right_margin_property =
1952 drm_property_create_range(dev, 0, "right margin", 0, 100);
1953 if (!dev->mode_config.tv_right_margin_property)
1954 return -ENOMEM;
1955
1956 dev->mode_config.tv_top_margin_property =
1957 drm_property_create_range(dev, 0, "top margin", 0, 100);
1958 if (!dev->mode_config.tv_top_margin_property)
1959 return -ENOMEM;
1960
1961 dev->mode_config.tv_bottom_margin_property =
1962 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
1963 if (!dev->mode_config.tv_bottom_margin_property)
1964 return -ENOMEM;
1965
1966 return 0;
1967 }
1968 EXPORT_SYMBOL(drm_mode_create_tv_margin_properties);
1969
1970 /**
1971 * drm_mode_create_tv_properties_legacy - create TV specific connector properties
1972 * @dev: DRM device
1973 * @num_modes: number of different TV formats (modes) supported
1974 * @modes: array of pointers to strings containing name of each format
1975 *
1976 * Called by a driver's TV initialization routine, this function creates
1977 * the TV specific connector properties for a given device. Caller is
1978 * responsible for allocating a list of format names and passing them to
1979 * this routine.
1980 *
1981 * NOTE: This functions registers the deprecated "mode" connector
1982 * property to select the analog TV mode (ie, NTSC, PAL, etc.). New
1983 * drivers must use drm_mode_create_tv_properties() instead.
1984 *
1985 * Returns:
1986 * 0 on success or a negative error code on failure.
1987 */
drm_mode_create_tv_properties_legacy(struct drm_device * dev,unsigned int num_modes,const char * const modes[])1988 int drm_mode_create_tv_properties_legacy(struct drm_device *dev,
1989 unsigned int num_modes,
1990 const char * const modes[])
1991 {
1992 struct drm_property *tv_selector;
1993 struct drm_property *tv_subconnector;
1994 unsigned int i;
1995
1996 if (dev->mode_config.tv_select_subconnector_property)
1997 return 0;
1998
1999 /*
2000 * Basic connector properties
2001 */
2002 tv_selector = drm_property_create_enum(dev, 0,
2003 "select subconnector",
2004 drm_tv_select_enum_list,
2005 ARRAY_SIZE(drm_tv_select_enum_list));
2006 if (!tv_selector)
2007 goto nomem;
2008
2009 dev->mode_config.tv_select_subconnector_property = tv_selector;
2010
2011 tv_subconnector =
2012 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
2013 "subconnector",
2014 drm_tv_subconnector_enum_list,
2015 ARRAY_SIZE(drm_tv_subconnector_enum_list));
2016 if (!tv_subconnector)
2017 goto nomem;
2018 dev->mode_config.tv_subconnector_property = tv_subconnector;
2019
2020 /*
2021 * Other, TV specific properties: margins & TV modes.
2022 */
2023 if (drm_mode_create_tv_margin_properties(dev))
2024 goto nomem;
2025
2026 if (num_modes) {
2027 dev->mode_config.legacy_tv_mode_property =
2028 drm_property_create(dev, DRM_MODE_PROP_ENUM,
2029 "mode", num_modes);
2030 if (!dev->mode_config.legacy_tv_mode_property)
2031 goto nomem;
2032
2033 for (i = 0; i < num_modes; i++)
2034 drm_property_add_enum(dev->mode_config.legacy_tv_mode_property,
2035 i, modes[i]);
2036 }
2037
2038 dev->mode_config.tv_brightness_property =
2039 drm_property_create_range(dev, 0, "brightness", 0, 100);
2040 if (!dev->mode_config.tv_brightness_property)
2041 goto nomem;
2042
2043 dev->mode_config.tv_contrast_property =
2044 drm_property_create_range(dev, 0, "contrast", 0, 100);
2045 if (!dev->mode_config.tv_contrast_property)
2046 goto nomem;
2047
2048 dev->mode_config.tv_flicker_reduction_property =
2049 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
2050 if (!dev->mode_config.tv_flicker_reduction_property)
2051 goto nomem;
2052
2053 dev->mode_config.tv_overscan_property =
2054 drm_property_create_range(dev, 0, "overscan", 0, 100);
2055 if (!dev->mode_config.tv_overscan_property)
2056 goto nomem;
2057
2058 dev->mode_config.tv_saturation_property =
2059 drm_property_create_range(dev, 0, "saturation", 0, 100);
2060 if (!dev->mode_config.tv_saturation_property)
2061 goto nomem;
2062
2063 dev->mode_config.tv_hue_property =
2064 drm_property_create_range(dev, 0, "hue", 0, 100);
2065 if (!dev->mode_config.tv_hue_property)
2066 goto nomem;
2067
2068 return 0;
2069 nomem:
2070 return -ENOMEM;
2071 }
2072 EXPORT_SYMBOL(drm_mode_create_tv_properties_legacy);
2073
2074 /**
2075 * drm_mode_create_tv_properties - create TV specific connector properties
2076 * @dev: DRM device
2077 * @supported_tv_modes: Bitmask of TV modes supported (See DRM_MODE_TV_MODE_*)
2078 *
2079 * Called by a driver's TV initialization routine, this function creates
2080 * the TV specific connector properties for a given device.
2081 *
2082 * Returns:
2083 * 0 on success or a negative error code on failure.
2084 */
drm_mode_create_tv_properties(struct drm_device * dev,unsigned int supported_tv_modes)2085 int drm_mode_create_tv_properties(struct drm_device *dev,
2086 unsigned int supported_tv_modes)
2087 {
2088 struct drm_prop_enum_list tv_mode_list[DRM_MODE_TV_MODE_MAX];
2089 struct drm_property *tv_mode;
2090 unsigned int i, len = 0;
2091
2092 if (dev->mode_config.tv_mode_property)
2093 return 0;
2094
2095 for (i = 0; i < DRM_MODE_TV_MODE_MAX; i++) {
2096 if (!(supported_tv_modes & BIT(i)))
2097 continue;
2098
2099 tv_mode_list[len].type = i;
2100 tv_mode_list[len].name = drm_get_tv_mode_name(i);
2101 len++;
2102 }
2103
2104 tv_mode = drm_property_create_enum(dev, 0, "TV mode",
2105 tv_mode_list, len);
2106 if (!tv_mode)
2107 return -ENOMEM;
2108
2109 dev->mode_config.tv_mode_property = tv_mode;
2110
2111 return drm_mode_create_tv_properties_legacy(dev, 0, NULL);
2112 }
2113 EXPORT_SYMBOL(drm_mode_create_tv_properties);
2114
2115 /**
2116 * drm_mode_create_scaling_mode_property - create scaling mode property
2117 * @dev: DRM device
2118 *
2119 * Called by a driver the first time it's needed, must be attached to desired
2120 * connectors.
2121 *
2122 * Atomic drivers should use drm_connector_attach_scaling_mode_property()
2123 * instead to correctly assign &drm_connector_state.scaling_mode
2124 * in the atomic state.
2125 *
2126 * Returns: %0
2127 */
drm_mode_create_scaling_mode_property(struct drm_device * dev)2128 int drm_mode_create_scaling_mode_property(struct drm_device *dev)
2129 {
2130 struct drm_property *scaling_mode;
2131
2132 if (dev->mode_config.scaling_mode_property)
2133 return 0;
2134
2135 scaling_mode =
2136 drm_property_create_enum(dev, 0, "scaling mode",
2137 drm_scaling_mode_enum_list,
2138 ARRAY_SIZE(drm_scaling_mode_enum_list));
2139
2140 dev->mode_config.scaling_mode_property = scaling_mode;
2141
2142 return 0;
2143 }
2144 EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
2145
2146 /**
2147 * DOC: Variable refresh properties
2148 *
2149 * Variable refresh rate capable displays can dynamically adjust their
2150 * refresh rate by extending the duration of their vertical front porch
2151 * until page flip or timeout occurs. This can reduce or remove stuttering
2152 * and latency in scenarios where the page flip does not align with the
2153 * vblank interval.
2154 *
2155 * An example scenario would be an application flipping at a constant rate
2156 * of 48Hz on a 60Hz display. The page flip will frequently miss the vblank
2157 * interval and the same contents will be displayed twice. This can be
2158 * observed as stuttering for content with motion.
2159 *
2160 * If variable refresh rate was active on a display that supported a
2161 * variable refresh range from 35Hz to 60Hz no stuttering would be observable
2162 * for the example scenario. The minimum supported variable refresh rate of
2163 * 35Hz is below the page flip frequency and the vertical front porch can
2164 * be extended until the page flip occurs. The vblank interval will be
2165 * directly aligned to the page flip rate.
2166 *
2167 * Not all userspace content is suitable for use with variable refresh rate.
2168 * Large and frequent changes in vertical front porch duration may worsen
2169 * perceived stuttering for input sensitive applications.
2170 *
2171 * Panel brightness will also vary with vertical front porch duration. Some
2172 * panels may have noticeable differences in brightness between the minimum
2173 * vertical front porch duration and the maximum vertical front porch duration.
2174 * Large and frequent changes in vertical front porch duration may produce
2175 * observable flickering for such panels.
2176 *
2177 * Userspace control for variable refresh rate is supported via properties
2178 * on the &drm_connector and &drm_crtc objects.
2179 *
2180 * "vrr_capable":
2181 * Optional &drm_connector boolean property that drivers should attach
2182 * with drm_connector_attach_vrr_capable_property() on connectors that
2183 * could support variable refresh rates. Drivers should update the
2184 * property value by calling drm_connector_set_vrr_capable_property().
2185 *
2186 * Absence of the property should indicate absence of support.
2187 *
2188 * "VRR_ENABLED":
2189 * Default &drm_crtc boolean property that notifies the driver that the
2190 * content on the CRTC is suitable for variable refresh rate presentation.
2191 * The driver will take this property as a hint to enable variable
2192 * refresh rate support if the receiver supports it, ie. if the
2193 * "vrr_capable" property is true on the &drm_connector object. The
2194 * vertical front porch duration will be extended until page-flip or
2195 * timeout when enabled.
2196 *
2197 * The minimum vertical front porch duration is defined as the vertical
2198 * front porch duration for the current mode.
2199 *
2200 * The maximum vertical front porch duration is greater than or equal to
2201 * the minimum vertical front porch duration. The duration is derived
2202 * from the minimum supported variable refresh rate for the connector.
2203 *
2204 * The driver may place further restrictions within these minimum
2205 * and maximum bounds.
2206 */
2207
2208 /**
2209 * drm_connector_attach_vrr_capable_property - creates the
2210 * vrr_capable property
2211 * @connector: connector to create the vrr_capable property on.
2212 *
2213 * This is used by atomic drivers to add support for querying
2214 * variable refresh rate capability for a connector.
2215 *
2216 * Returns:
2217 * Zero on success, negative errno on failure.
2218 */
drm_connector_attach_vrr_capable_property(struct drm_connector * connector)2219 int drm_connector_attach_vrr_capable_property(
2220 struct drm_connector *connector)
2221 {
2222 struct drm_device *dev = connector->dev;
2223 struct drm_property *prop;
2224
2225 if (!connector->vrr_capable_property) {
2226 prop = drm_property_create_bool(dev, DRM_MODE_PROP_IMMUTABLE,
2227 "vrr_capable");
2228 if (!prop)
2229 return -ENOMEM;
2230
2231 connector->vrr_capable_property = prop;
2232 drm_object_attach_property(&connector->base, prop, 0);
2233 }
2234
2235 return 0;
2236 }
2237 EXPORT_SYMBOL(drm_connector_attach_vrr_capable_property);
2238
2239 /**
2240 * drm_connector_attach_scaling_mode_property - attach atomic scaling mode property
2241 * @connector: connector to attach scaling mode property on.
2242 * @scaling_mode_mask: or'ed mask of BIT(%DRM_MODE_SCALE_\*).
2243 *
2244 * This is used to add support for scaling mode to atomic drivers.
2245 * The scaling mode will be set to &drm_connector_state.scaling_mode
2246 * and can be used from &drm_connector_helper_funcs->atomic_check for validation.
2247 *
2248 * This is the atomic version of drm_mode_create_scaling_mode_property().
2249 *
2250 * Returns:
2251 * Zero on success, negative errno on failure.
2252 */
drm_connector_attach_scaling_mode_property(struct drm_connector * connector,u32 scaling_mode_mask)2253 int drm_connector_attach_scaling_mode_property(struct drm_connector *connector,
2254 u32 scaling_mode_mask)
2255 {
2256 struct drm_device *dev = connector->dev;
2257 struct drm_property *scaling_mode_property;
2258 int i;
2259 const unsigned valid_scaling_mode_mask =
2260 (1U << ARRAY_SIZE(drm_scaling_mode_enum_list)) - 1;
2261
2262 if (WARN_ON(hweight32(scaling_mode_mask) < 2 ||
2263 scaling_mode_mask & ~valid_scaling_mode_mask))
2264 return -EINVAL;
2265
2266 scaling_mode_property =
2267 drm_property_create(dev, DRM_MODE_PROP_ENUM, "scaling mode",
2268 hweight32(scaling_mode_mask));
2269
2270 if (!scaling_mode_property)
2271 return -ENOMEM;
2272
2273 for (i = 0; i < ARRAY_SIZE(drm_scaling_mode_enum_list); i++) {
2274 int ret;
2275
2276 if (!(BIT(i) & scaling_mode_mask))
2277 continue;
2278
2279 ret = drm_property_add_enum(scaling_mode_property,
2280 drm_scaling_mode_enum_list[i].type,
2281 drm_scaling_mode_enum_list[i].name);
2282
2283 if (ret) {
2284 drm_property_destroy(dev, scaling_mode_property);
2285
2286 return ret;
2287 }
2288 }
2289
2290 drm_object_attach_property(&connector->base,
2291 scaling_mode_property, 0);
2292
2293 connector->scaling_mode_property = scaling_mode_property;
2294
2295 return 0;
2296 }
2297 EXPORT_SYMBOL(drm_connector_attach_scaling_mode_property);
2298
2299 /**
2300 * drm_mode_create_aspect_ratio_property - create aspect ratio property
2301 * @dev: DRM device
2302 *
2303 * Called by a driver the first time it's needed, must be attached to desired
2304 * connectors.
2305 *
2306 * Returns:
2307 * Zero on success, negative errno on failure.
2308 */
drm_mode_create_aspect_ratio_property(struct drm_device * dev)2309 int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
2310 {
2311 if (dev->mode_config.aspect_ratio_property)
2312 return 0;
2313
2314 dev->mode_config.aspect_ratio_property =
2315 drm_property_create_enum(dev, 0, "aspect ratio",
2316 drm_aspect_ratio_enum_list,
2317 ARRAY_SIZE(drm_aspect_ratio_enum_list));
2318
2319 if (dev->mode_config.aspect_ratio_property == NULL)
2320 return -ENOMEM;
2321
2322 return 0;
2323 }
2324 EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
2325
2326 /**
2327 * DOC: standard connector properties
2328 *
2329 * Colorspace:
2330 * This property is used to inform the driver about the color encoding
2331 * user space configured the pixel operation properties to produce.
2332 * The variants set the colorimetry, transfer characteristics, and which
2333 * YCbCr conversion should be used when necessary.
2334 * The transfer characteristics from HDR_OUTPUT_METADATA takes precedence
2335 * over this property.
2336 * User space always configures the pixel operation properties to produce
2337 * full quantization range data (see the Broadcast RGB property).
2338 *
2339 * Drivers inform the sink about what colorimetry, transfer
2340 * characteristics, YCbCr conversion, and quantization range to expect
2341 * (this can depend on the output mode, output format and other
2342 * properties). Drivers also convert the user space provided data to what
2343 * the sink expects.
2344 *
2345 * User space has to check if the sink supports all of the possible
2346 * colorimetries that the driver is allowed to pick by parsing the EDID.
2347 *
2348 * For historical reasons this property exposes a number of variants which
2349 * result in undefined behavior.
2350 *
2351 * Default:
2352 * The behavior is driver-specific.
2353 *
2354 * BT2020_RGB:
2355 *
2356 * BT2020_YCC:
2357 * User space configures the pixel operation properties to produce
2358 * RGB content with Rec. ITU-R BT.2020 colorimetry, Rec.
2359 * ITU-R BT.2020 (Table 4, RGB) transfer characteristics and full
2360 * quantization range.
2361 * User space can use the HDR_OUTPUT_METADATA property to set the
2362 * transfer characteristics to PQ (Rec. ITU-R BT.2100 Table 4) or
2363 * HLG (Rec. ITU-R BT.2100 Table 5) in which case, user space
2364 * configures pixel operation properties to produce content with
2365 * the respective transfer characteristics.
2366 * User space has to make sure the sink supports Rec.
2367 * ITU-R BT.2020 R'G'B' and Rec. ITU-R BT.2020 Y'C'BC'R
2368 * colorimetry.
2369 * Drivers can configure the sink to use an RGB format, tell the
2370 * sink to expect Rec. ITU-R BT.2020 R'G'B' colorimetry and convert
2371 * to the appropriate quantization range.
2372 * Drivers can configure the sink to use a YCbCr format, tell the
2373 * sink to expect Rec. ITU-R BT.2020 Y'C'BC'R colorimetry, convert
2374 * to YCbCr using the Rec. ITU-R BT.2020 non-constant luminance
2375 * conversion matrix and convert to the appropriate quantization
2376 * range.
2377 * The variants BT2020_RGB and BT2020_YCC are equivalent and the
2378 * driver chooses between RGB and YCbCr on its own.
2379 *
2380 * SMPTE_170M_YCC:
2381 * BT709_YCC:
2382 * XVYCC_601:
2383 * XVYCC_709:
2384 * SYCC_601:
2385 * opYCC_601:
2386 * opRGB:
2387 * BT2020_CYCC:
2388 * DCI-P3_RGB_D65:
2389 * DCI-P3_RGB_Theater:
2390 * RGB_WIDE_FIXED:
2391 * RGB_WIDE_FLOAT:
2392 *
2393 * BT601_YCC:
2394 * The behavior is undefined.
2395 *
2396 * Because between HDMI and DP have different colorspaces,
2397 * drm_mode_create_hdmi_colorspace_property() is used for HDMI connector and
2398 * drm_mode_create_dp_colorspace_property() is used for DP connector.
2399 */
2400
drm_mode_create_colorspace_property(struct drm_connector * connector,u32 supported_colorspaces)2401 static int drm_mode_create_colorspace_property(struct drm_connector *connector,
2402 u32 supported_colorspaces)
2403 {
2404 struct drm_device *dev = connector->dev;
2405 u32 colorspaces = supported_colorspaces | BIT(DRM_MODE_COLORIMETRY_DEFAULT);
2406 struct drm_prop_enum_list enum_list[DRM_MODE_COLORIMETRY_COUNT];
2407 int i, len;
2408
2409 if (connector->colorspace_property)
2410 return 0;
2411
2412 if (!supported_colorspaces) {
2413 drm_err(dev, "No supported colorspaces provded on [CONNECTOR:%d:%s]\n",
2414 connector->base.id, connector->name);
2415 return -EINVAL;
2416 }
2417
2418 if ((supported_colorspaces & -BIT(DRM_MODE_COLORIMETRY_COUNT)) != 0) {
2419 drm_err(dev, "Unknown colorspace provded on [CONNECTOR:%d:%s]\n",
2420 connector->base.id, connector->name);
2421 return -EINVAL;
2422 }
2423
2424 len = 0;
2425 for (i = 0; i < DRM_MODE_COLORIMETRY_COUNT; i++) {
2426 if ((colorspaces & BIT(i)) == 0)
2427 continue;
2428
2429 enum_list[len].type = i;
2430 enum_list[len].name = colorspace_names[i];
2431 len++;
2432 }
2433
2434 connector->colorspace_property =
2435 drm_property_create_enum(dev, DRM_MODE_PROP_ENUM, "Colorspace",
2436 enum_list,
2437 len);
2438
2439 if (!connector->colorspace_property)
2440 return -ENOMEM;
2441
2442 return 0;
2443 }
2444
2445 /**
2446 * drm_mode_create_hdmi_colorspace_property - create hdmi colorspace property
2447 * @connector: connector to create the Colorspace property on.
2448 * @supported_colorspaces: bitmap of supported color spaces
2449 *
2450 * Called by a driver the first time it's needed, must be attached to desired
2451 * HDMI connectors.
2452 *
2453 * Returns:
2454 * Zero on success, negative errno on failure.
2455 */
drm_mode_create_hdmi_colorspace_property(struct drm_connector * connector,u32 supported_colorspaces)2456 int drm_mode_create_hdmi_colorspace_property(struct drm_connector *connector,
2457 u32 supported_colorspaces)
2458 {
2459 u32 colorspaces;
2460
2461 if (supported_colorspaces)
2462 colorspaces = supported_colorspaces & hdmi_colorspaces;
2463 else
2464 colorspaces = hdmi_colorspaces;
2465
2466 return drm_mode_create_colorspace_property(connector, colorspaces);
2467 }
2468 EXPORT_SYMBOL(drm_mode_create_hdmi_colorspace_property);
2469
2470 /**
2471 * drm_mode_create_dp_colorspace_property - create dp colorspace property
2472 * @connector: connector to create the Colorspace property on.
2473 * @supported_colorspaces: bitmap of supported color spaces
2474 *
2475 * Called by a driver the first time it's needed, must be attached to desired
2476 * DP connectors.
2477 *
2478 * Returns:
2479 * Zero on success, negative errno on failure.
2480 */
drm_mode_create_dp_colorspace_property(struct drm_connector * connector,u32 supported_colorspaces)2481 int drm_mode_create_dp_colorspace_property(struct drm_connector *connector,
2482 u32 supported_colorspaces)
2483 {
2484 u32 colorspaces;
2485
2486 if (supported_colorspaces)
2487 colorspaces = supported_colorspaces & dp_colorspaces;
2488 else
2489 colorspaces = dp_colorspaces;
2490
2491 return drm_mode_create_colorspace_property(connector, colorspaces);
2492 }
2493 EXPORT_SYMBOL(drm_mode_create_dp_colorspace_property);
2494
2495 /**
2496 * drm_mode_create_content_type_property - create content type property
2497 * @dev: DRM device
2498 *
2499 * Called by a driver the first time it's needed, must be attached to desired
2500 * connectors.
2501 *
2502 * Returns:
2503 * Zero on success, negative errno on failure.
2504 */
drm_mode_create_content_type_property(struct drm_device * dev)2505 int drm_mode_create_content_type_property(struct drm_device *dev)
2506 {
2507 if (dev->mode_config.content_type_property)
2508 return 0;
2509
2510 dev->mode_config.content_type_property =
2511 drm_property_create_enum(dev, 0, "content type",
2512 drm_content_type_enum_list,
2513 ARRAY_SIZE(drm_content_type_enum_list));
2514
2515 if (dev->mode_config.content_type_property == NULL)
2516 return -ENOMEM;
2517
2518 return 0;
2519 }
2520 EXPORT_SYMBOL(drm_mode_create_content_type_property);
2521
2522 /**
2523 * drm_mode_create_suggested_offset_properties - create suggests offset properties
2524 * @dev: DRM device
2525 *
2526 * Create the suggested x/y offset property for connectors.
2527 *
2528 * Returns:
2529 * 0 on success or a negative error code on failure.
2530 */
drm_mode_create_suggested_offset_properties(struct drm_device * dev)2531 int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
2532 {
2533 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
2534 return 0;
2535
2536 dev->mode_config.suggested_x_property =
2537 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
2538
2539 dev->mode_config.suggested_y_property =
2540 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
2541
2542 if (dev->mode_config.suggested_x_property == NULL ||
2543 dev->mode_config.suggested_y_property == NULL)
2544 return -ENOMEM;
2545 return 0;
2546 }
2547 EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
2548
2549 /**
2550 * drm_connector_set_path_property - set tile property on connector
2551 * @connector: connector to set property on.
2552 * @path: path to use for property; must not be NULL.
2553 *
2554 * This creates a property to expose to userspace to specify a
2555 * connector path. This is mainly used for DisplayPort MST where
2556 * connectors have a topology and we want to allow userspace to give
2557 * them more meaningful names.
2558 *
2559 * Returns:
2560 * Zero on success, negative errno on failure.
2561 */
drm_connector_set_path_property(struct drm_connector * connector,const char * path)2562 int drm_connector_set_path_property(struct drm_connector *connector,
2563 const char *path)
2564 {
2565 struct drm_device *dev = connector->dev;
2566 int ret;
2567
2568 ret = drm_property_replace_global_blob(dev,
2569 &connector->path_blob_ptr,
2570 strlen(path) + 1,
2571 path,
2572 &connector->base,
2573 dev->mode_config.path_property);
2574 return ret;
2575 }
2576 EXPORT_SYMBOL(drm_connector_set_path_property);
2577
2578 /**
2579 * drm_connector_set_tile_property - set tile property on connector
2580 * @connector: connector to set property on.
2581 *
2582 * This looks up the tile information for a connector, and creates a
2583 * property for userspace to parse if it exists. The property is of
2584 * the form of 8 integers using ':' as a separator.
2585 * This is used for dual port tiled displays with DisplayPort SST
2586 * or DisplayPort MST connectors.
2587 *
2588 * Returns:
2589 * Zero on success, errno on failure.
2590 */
drm_connector_set_tile_property(struct drm_connector * connector)2591 int drm_connector_set_tile_property(struct drm_connector *connector)
2592 {
2593 struct drm_device *dev = connector->dev;
2594 char tile[256];
2595 int ret;
2596
2597 if (!connector->has_tile) {
2598 ret = drm_property_replace_global_blob(dev,
2599 &connector->tile_blob_ptr,
2600 0,
2601 NULL,
2602 &connector->base,
2603 dev->mode_config.tile_property);
2604 return ret;
2605 }
2606
2607 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
2608 connector->tile_group->id, connector->tile_is_single_monitor,
2609 connector->num_h_tile, connector->num_v_tile,
2610 connector->tile_h_loc, connector->tile_v_loc,
2611 connector->tile_h_size, connector->tile_v_size);
2612
2613 ret = drm_property_replace_global_blob(dev,
2614 &connector->tile_blob_ptr,
2615 strlen(tile) + 1,
2616 tile,
2617 &connector->base,
2618 dev->mode_config.tile_property);
2619 return ret;
2620 }
2621 EXPORT_SYMBOL(drm_connector_set_tile_property);
2622
2623 /**
2624 * drm_connector_set_link_status_property - Set link status property of a connector
2625 * @connector: drm connector
2626 * @link_status: new value of link status property (0: Good, 1: Bad)
2627 *
2628 * In usual working scenario, this link status property will always be set to
2629 * "GOOD". If something fails during or after a mode set, the kernel driver
2630 * may set this link status property to "BAD". The caller then needs to send a
2631 * hotplug uevent for userspace to re-check the valid modes through
2632 * GET_CONNECTOR_IOCTL and retry modeset.
2633 *
2634 * Note: Drivers cannot rely on userspace to support this property and
2635 * issue a modeset. As such, they may choose to handle issues (like
2636 * re-training a link) without userspace's intervention.
2637 *
2638 * The reason for adding this property is to handle link training failures, but
2639 * it is not limited to DP or link training. For example, if we implement
2640 * asynchronous setcrtc, this property can be used to report any failures in that.
2641 */
drm_connector_set_link_status_property(struct drm_connector * connector,uint64_t link_status)2642 void drm_connector_set_link_status_property(struct drm_connector *connector,
2643 uint64_t link_status)
2644 {
2645 struct drm_device *dev = connector->dev;
2646
2647 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
2648 connector->state->link_status = link_status;
2649 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2650 }
2651 EXPORT_SYMBOL(drm_connector_set_link_status_property);
2652
2653 /**
2654 * drm_connector_attach_max_bpc_property - attach "max bpc" property
2655 * @connector: connector to attach max bpc property on.
2656 * @min: The minimum bit depth supported by the connector.
2657 * @max: The maximum bit depth supported by the connector.
2658 *
2659 * This is used to add support for limiting the bit depth on a connector.
2660 *
2661 * Returns:
2662 * Zero on success, negative errno on failure.
2663 */
drm_connector_attach_max_bpc_property(struct drm_connector * connector,int min,int max)2664 int drm_connector_attach_max_bpc_property(struct drm_connector *connector,
2665 int min, int max)
2666 {
2667 struct drm_device *dev = connector->dev;
2668 struct drm_property *prop;
2669
2670 prop = connector->max_bpc_property;
2671 if (!prop) {
2672 prop = drm_property_create_range(dev, 0, "max bpc", min, max);
2673 if (!prop)
2674 return -ENOMEM;
2675
2676 connector->max_bpc_property = prop;
2677 }
2678
2679 drm_object_attach_property(&connector->base, prop, max);
2680 connector->state->max_requested_bpc = max;
2681 connector->state->max_bpc = max;
2682
2683 return 0;
2684 }
2685 EXPORT_SYMBOL(drm_connector_attach_max_bpc_property);
2686
2687 /**
2688 * drm_connector_attach_hdr_output_metadata_property - attach "HDR_OUTPUT_METADA" property
2689 * @connector: connector to attach the property on.
2690 *
2691 * This is used to allow the userspace to send HDR Metadata to the
2692 * driver.
2693 *
2694 * Returns:
2695 * Zero on success, negative errno on failure.
2696 */
drm_connector_attach_hdr_output_metadata_property(struct drm_connector * connector)2697 int drm_connector_attach_hdr_output_metadata_property(struct drm_connector *connector)
2698 {
2699 struct drm_device *dev = connector->dev;
2700 struct drm_property *prop = dev->mode_config.hdr_output_metadata_property;
2701
2702 drm_object_attach_property(&connector->base, prop, 0);
2703
2704 return 0;
2705 }
2706 EXPORT_SYMBOL(drm_connector_attach_hdr_output_metadata_property);
2707
2708 /**
2709 * drm_connector_attach_broadcast_rgb_property - attach "Broadcast RGB" property
2710 * @connector: connector to attach the property on.
2711 *
2712 * This is used to add support for forcing the RGB range on a connector
2713 *
2714 * Returns:
2715 * Zero on success, negative errno on failure.
2716 */
drm_connector_attach_broadcast_rgb_property(struct drm_connector * connector)2717 int drm_connector_attach_broadcast_rgb_property(struct drm_connector *connector)
2718 {
2719 struct drm_device *dev = connector->dev;
2720 struct drm_property *prop;
2721
2722 prop = connector->broadcast_rgb_property;
2723 if (!prop) {
2724 prop = drm_property_create_enum(dev, DRM_MODE_PROP_ENUM,
2725 "Broadcast RGB",
2726 broadcast_rgb_names,
2727 ARRAY_SIZE(broadcast_rgb_names));
2728 if (!prop)
2729 return -EINVAL;
2730
2731 connector->broadcast_rgb_property = prop;
2732 }
2733
2734 drm_object_attach_property(&connector->base, prop,
2735 DRM_HDMI_BROADCAST_RGB_AUTO);
2736
2737 return 0;
2738 }
2739 EXPORT_SYMBOL(drm_connector_attach_broadcast_rgb_property);
2740
2741 /**
2742 * drm_connector_attach_colorspace_property - attach "Colorspace" property
2743 * @connector: connector to attach the property on.
2744 *
2745 * This is used to allow the userspace to signal the output colorspace
2746 * to the driver.
2747 *
2748 * Returns:
2749 * Zero on success, negative errno on failure.
2750 */
drm_connector_attach_colorspace_property(struct drm_connector * connector)2751 int drm_connector_attach_colorspace_property(struct drm_connector *connector)
2752 {
2753 struct drm_property *prop = connector->colorspace_property;
2754
2755 drm_object_attach_property(&connector->base, prop, DRM_MODE_COLORIMETRY_DEFAULT);
2756
2757 return 0;
2758 }
2759 EXPORT_SYMBOL(drm_connector_attach_colorspace_property);
2760
2761 /**
2762 * drm_connector_atomic_hdr_metadata_equal - checks if the hdr metadata changed
2763 * @old_state: old connector state to compare
2764 * @new_state: new connector state to compare
2765 *
2766 * This is used by HDR-enabled drivers to test whether the HDR metadata
2767 * have changed between two different connector state (and thus probably
2768 * requires a full blown mode change).
2769 *
2770 * Returns:
2771 * True if the metadata are equal, False otherwise
2772 */
drm_connector_atomic_hdr_metadata_equal(struct drm_connector_state * old_state,struct drm_connector_state * new_state)2773 bool drm_connector_atomic_hdr_metadata_equal(struct drm_connector_state *old_state,
2774 struct drm_connector_state *new_state)
2775 {
2776 struct drm_property_blob *old_blob = old_state->hdr_output_metadata;
2777 struct drm_property_blob *new_blob = new_state->hdr_output_metadata;
2778
2779 if (!old_blob || !new_blob)
2780 return old_blob == new_blob;
2781
2782 if (old_blob->length != new_blob->length)
2783 return false;
2784
2785 return !memcmp(old_blob->data, new_blob->data, old_blob->length);
2786 }
2787 EXPORT_SYMBOL(drm_connector_atomic_hdr_metadata_equal);
2788
2789 /**
2790 * drm_connector_set_vrr_capable_property - sets the variable refresh rate
2791 * capable property for a connector
2792 * @connector: drm connector
2793 * @capable: True if the connector is variable refresh rate capable
2794 *
2795 * Should be used by atomic drivers to update the indicated support for
2796 * variable refresh rate over a connector.
2797 */
drm_connector_set_vrr_capable_property(struct drm_connector * connector,bool capable)2798 void drm_connector_set_vrr_capable_property(
2799 struct drm_connector *connector, bool capable)
2800 {
2801 if (!connector->vrr_capable_property)
2802 return;
2803
2804 drm_object_property_set_value(&connector->base,
2805 connector->vrr_capable_property,
2806 capable);
2807 }
2808 EXPORT_SYMBOL(drm_connector_set_vrr_capable_property);
2809
2810 /**
2811 * drm_connector_set_panel_orientation - sets the connector's panel_orientation
2812 * @connector: connector for which to set the panel-orientation property.
2813 * @panel_orientation: drm_panel_orientation value to set
2814 *
2815 * This function sets the connector's panel_orientation and attaches
2816 * a "panel orientation" property to the connector.
2817 *
2818 * Calling this function on a connector where the panel_orientation has
2819 * already been set is a no-op (e.g. the orientation has been overridden with
2820 * a kernel commandline option).
2821 *
2822 * It is allowed to call this function with a panel_orientation of
2823 * DRM_MODE_PANEL_ORIENTATION_UNKNOWN, in which case it is a no-op.
2824 *
2825 * The function shouldn't be called in panel after drm is registered (i.e.
2826 * drm_dev_register() is called in drm).
2827 *
2828 * Returns:
2829 * Zero on success, negative errno on failure.
2830 */
drm_connector_set_panel_orientation(struct drm_connector * connector,enum drm_panel_orientation panel_orientation)2831 int drm_connector_set_panel_orientation(
2832 struct drm_connector *connector,
2833 enum drm_panel_orientation panel_orientation)
2834 {
2835 struct drm_device *dev = connector->dev;
2836 struct drm_display_info *info = &connector->display_info;
2837 struct drm_property *prop;
2838
2839 /* Already set? */
2840 if (info->panel_orientation != DRM_MODE_PANEL_ORIENTATION_UNKNOWN)
2841 return 0;
2842
2843 /* Don't attach the property if the orientation is unknown */
2844 if (panel_orientation == DRM_MODE_PANEL_ORIENTATION_UNKNOWN)
2845 return 0;
2846
2847 info->panel_orientation = panel_orientation;
2848
2849 prop = dev->mode_config.panel_orientation_property;
2850 if (!prop) {
2851 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
2852 "panel orientation",
2853 drm_panel_orientation_enum_list,
2854 ARRAY_SIZE(drm_panel_orientation_enum_list));
2855 if (!prop)
2856 return -ENOMEM;
2857
2858 dev->mode_config.panel_orientation_property = prop;
2859 }
2860
2861 drm_object_attach_property(&connector->base, prop,
2862 info->panel_orientation);
2863 return 0;
2864 }
2865 EXPORT_SYMBOL(drm_connector_set_panel_orientation);
2866
2867 /**
2868 * drm_connector_set_panel_orientation_with_quirk - set the
2869 * connector's panel_orientation after checking for quirks
2870 * @connector: connector for which to init the panel-orientation property.
2871 * @panel_orientation: drm_panel_orientation value to set
2872 * @width: width in pixels of the panel, used for panel quirk detection
2873 * @height: height in pixels of the panel, used for panel quirk detection
2874 *
2875 * Like drm_connector_set_panel_orientation(), but with a check for platform
2876 * specific (e.g. DMI based) quirks overriding the passed in panel_orientation.
2877 *
2878 * Returns:
2879 * Zero on success, negative errno on failure.
2880 */
drm_connector_set_panel_orientation_with_quirk(struct drm_connector * connector,enum drm_panel_orientation panel_orientation,int width,int height)2881 int drm_connector_set_panel_orientation_with_quirk(
2882 struct drm_connector *connector,
2883 enum drm_panel_orientation panel_orientation,
2884 int width, int height)
2885 {
2886 int orientation_quirk;
2887
2888 orientation_quirk = drm_get_panel_orientation_quirk(width, height);
2889 if (orientation_quirk != DRM_MODE_PANEL_ORIENTATION_UNKNOWN)
2890 panel_orientation = orientation_quirk;
2891
2892 return drm_connector_set_panel_orientation(connector,
2893 panel_orientation);
2894 }
2895 EXPORT_SYMBOL(drm_connector_set_panel_orientation_with_quirk);
2896
2897 /**
2898 * drm_connector_set_orientation_from_panel -
2899 * set the connector's panel_orientation from panel's callback.
2900 * @connector: connector for which to init the panel-orientation property.
2901 * @panel: panel that can provide orientation information.
2902 *
2903 * Drm drivers should call this function before drm_dev_register().
2904 * Orientation is obtained from panel's .get_orientation() callback.
2905 *
2906 * Returns:
2907 * Zero on success, negative errno on failure.
2908 */
drm_connector_set_orientation_from_panel(struct drm_connector * connector,struct drm_panel * panel)2909 int drm_connector_set_orientation_from_panel(
2910 struct drm_connector *connector,
2911 struct drm_panel *panel)
2912 {
2913 enum drm_panel_orientation orientation;
2914
2915 if (panel && panel->funcs && panel->funcs->get_orientation)
2916 orientation = panel->funcs->get_orientation(panel);
2917 else
2918 orientation = DRM_MODE_PANEL_ORIENTATION_UNKNOWN;
2919
2920 return drm_connector_set_panel_orientation(connector, orientation);
2921 }
2922 EXPORT_SYMBOL(drm_connector_set_orientation_from_panel);
2923
2924 static const struct drm_prop_enum_list privacy_screen_enum[] = {
2925 { PRIVACY_SCREEN_DISABLED, "Disabled" },
2926 { PRIVACY_SCREEN_ENABLED, "Enabled" },
2927 { PRIVACY_SCREEN_DISABLED_LOCKED, "Disabled-locked" },
2928 { PRIVACY_SCREEN_ENABLED_LOCKED, "Enabled-locked" },
2929 };
2930
2931 /**
2932 * drm_connector_create_privacy_screen_properties - create the drm connecter's
2933 * privacy-screen properties.
2934 * @connector: connector for which to create the privacy-screen properties
2935 *
2936 * This function creates the "privacy-screen sw-state" and "privacy-screen
2937 * hw-state" properties for the connector. They are not attached.
2938 */
2939 void
drm_connector_create_privacy_screen_properties(struct drm_connector * connector)2940 drm_connector_create_privacy_screen_properties(struct drm_connector *connector)
2941 {
2942 if (connector->privacy_screen_sw_state_property)
2943 return;
2944
2945 /* Note sw-state only supports the first 2 values of the enum */
2946 connector->privacy_screen_sw_state_property =
2947 drm_property_create_enum(connector->dev, DRM_MODE_PROP_ENUM,
2948 "privacy-screen sw-state",
2949 privacy_screen_enum, 2);
2950
2951 connector->privacy_screen_hw_state_property =
2952 drm_property_create_enum(connector->dev,
2953 DRM_MODE_PROP_IMMUTABLE | DRM_MODE_PROP_ENUM,
2954 "privacy-screen hw-state",
2955 privacy_screen_enum,
2956 ARRAY_SIZE(privacy_screen_enum));
2957 }
2958 EXPORT_SYMBOL(drm_connector_create_privacy_screen_properties);
2959
2960 /**
2961 * drm_connector_attach_privacy_screen_properties - attach the drm connecter's
2962 * privacy-screen properties.
2963 * @connector: connector on which to attach the privacy-screen properties
2964 *
2965 * This function attaches the "privacy-screen sw-state" and "privacy-screen
2966 * hw-state" properties to the connector. The initial state of both is set
2967 * to "Disabled".
2968 */
2969 void
drm_connector_attach_privacy_screen_properties(struct drm_connector * connector)2970 drm_connector_attach_privacy_screen_properties(struct drm_connector *connector)
2971 {
2972 if (!connector->privacy_screen_sw_state_property)
2973 return;
2974
2975 drm_object_attach_property(&connector->base,
2976 connector->privacy_screen_sw_state_property,
2977 PRIVACY_SCREEN_DISABLED);
2978
2979 drm_object_attach_property(&connector->base,
2980 connector->privacy_screen_hw_state_property,
2981 PRIVACY_SCREEN_DISABLED);
2982 }
2983 EXPORT_SYMBOL(drm_connector_attach_privacy_screen_properties);
2984
drm_connector_update_privacy_screen_properties(struct drm_connector * connector,bool set_sw_state)2985 static void drm_connector_update_privacy_screen_properties(
2986 struct drm_connector *connector, bool set_sw_state)
2987 {
2988 enum drm_privacy_screen_status sw_state, hw_state;
2989
2990 drm_privacy_screen_get_state(connector->privacy_screen,
2991 &sw_state, &hw_state);
2992
2993 if (set_sw_state)
2994 connector->state->privacy_screen_sw_state = sw_state;
2995 drm_object_property_set_value(&connector->base,
2996 connector->privacy_screen_hw_state_property, hw_state);
2997 }
2998
drm_connector_privacy_screen_notifier(struct notifier_block * nb,unsigned long action,void * data)2999 static int drm_connector_privacy_screen_notifier(
3000 struct notifier_block *nb, unsigned long action, void *data)
3001 {
3002 struct drm_connector *connector =
3003 container_of(nb, struct drm_connector, privacy_screen_notifier);
3004 struct drm_device *dev = connector->dev;
3005
3006 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
3007 drm_connector_update_privacy_screen_properties(connector, true);
3008 drm_modeset_unlock(&dev->mode_config.connection_mutex);
3009
3010 drm_sysfs_connector_property_event(connector,
3011 connector->privacy_screen_sw_state_property);
3012 drm_sysfs_connector_property_event(connector,
3013 connector->privacy_screen_hw_state_property);
3014
3015 return NOTIFY_DONE;
3016 }
3017
3018 /**
3019 * drm_connector_attach_privacy_screen_provider - attach a privacy-screen to
3020 * the connector
3021 * @connector: connector to attach the privacy-screen to
3022 * @priv: drm_privacy_screen to attach
3023 *
3024 * Create and attach the standard privacy-screen properties and register
3025 * a generic notifier for generating sysfs-connector-status-events
3026 * on external changes to the privacy-screen status.
3027 * This function takes ownership of the passed in drm_privacy_screen and will
3028 * call drm_privacy_screen_put() on it when the connector is destroyed.
3029 */
drm_connector_attach_privacy_screen_provider(struct drm_connector * connector,struct drm_privacy_screen * priv)3030 void drm_connector_attach_privacy_screen_provider(
3031 struct drm_connector *connector, struct drm_privacy_screen *priv)
3032 {
3033 connector->privacy_screen = priv;
3034 connector->privacy_screen_notifier.notifier_call =
3035 drm_connector_privacy_screen_notifier;
3036
3037 drm_connector_create_privacy_screen_properties(connector);
3038 drm_connector_update_privacy_screen_properties(connector, true);
3039 drm_connector_attach_privacy_screen_properties(connector);
3040 }
3041 EXPORT_SYMBOL(drm_connector_attach_privacy_screen_provider);
3042
3043 /**
3044 * drm_connector_update_privacy_screen - update connector's privacy-screen sw-state
3045 * @connector_state: connector-state to update the privacy-screen for
3046 *
3047 * This function calls drm_privacy_screen_set_sw_state() on the connector's
3048 * privacy-screen.
3049 *
3050 * If the connector has no privacy-screen, then this is a no-op.
3051 */
drm_connector_update_privacy_screen(const struct drm_connector_state * connector_state)3052 void drm_connector_update_privacy_screen(const struct drm_connector_state *connector_state)
3053 {
3054 struct drm_connector *connector = connector_state->connector;
3055 int ret;
3056
3057 if (!connector->privacy_screen)
3058 return;
3059
3060 ret = drm_privacy_screen_set_sw_state(connector->privacy_screen,
3061 connector_state->privacy_screen_sw_state);
3062 if (ret) {
3063 drm_err(connector->dev, "Error updating privacy-screen sw_state\n");
3064 return;
3065 }
3066
3067 /* The hw_state property value may have changed, update it. */
3068 drm_connector_update_privacy_screen_properties(connector, false);
3069 }
3070 EXPORT_SYMBOL(drm_connector_update_privacy_screen);
3071
drm_connector_set_obj_prop(struct drm_mode_object * obj,struct drm_property * property,uint64_t value)3072 int drm_connector_set_obj_prop(struct drm_mode_object *obj,
3073 struct drm_property *property,
3074 uint64_t value)
3075 {
3076 int ret = -EINVAL;
3077 struct drm_connector *connector = obj_to_connector(obj);
3078
3079 /* Do DPMS ourselves */
3080 if (property == connector->dev->mode_config.dpms_property) {
3081 ret = (*connector->funcs->dpms)(connector, (int)value);
3082 } else if (connector->funcs->set_property)
3083 ret = connector->funcs->set_property(connector, property, value);
3084
3085 if (!ret)
3086 drm_object_property_set_value(&connector->base, property, value);
3087 return ret;
3088 }
3089
drm_connector_property_set_ioctl(struct drm_device * dev,void * data,struct drm_file * file_priv)3090 int drm_connector_property_set_ioctl(struct drm_device *dev,
3091 void *data, struct drm_file *file_priv)
3092 {
3093 struct drm_mode_connector_set_property *conn_set_prop = data;
3094 struct drm_mode_obj_set_property obj_set_prop = {
3095 .value = conn_set_prop->value,
3096 .prop_id = conn_set_prop->prop_id,
3097 .obj_id = conn_set_prop->connector_id,
3098 .obj_type = DRM_MODE_OBJECT_CONNECTOR
3099 };
3100
3101 /* It does all the locking and checking we need */
3102 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
3103 }
3104
drm_connector_get_encoder(struct drm_connector * connector)3105 static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
3106 {
3107 /* For atomic drivers only state objects are synchronously updated and
3108 * protected by modeset locks, so check those first.
3109 */
3110 if (connector->state)
3111 return connector->state->best_encoder;
3112 return connector->encoder;
3113 }
3114
3115 static bool
drm_mode_expose_to_userspace(const struct drm_display_mode * mode,const struct list_head * modes,const struct drm_file * file_priv)3116 drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
3117 const struct list_head *modes,
3118 const struct drm_file *file_priv)
3119 {
3120 /*
3121 * If user-space hasn't configured the driver to expose the stereo 3D
3122 * modes, don't expose them.
3123 */
3124 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
3125 return false;
3126 /*
3127 * If user-space hasn't configured the driver to expose the modes
3128 * with aspect-ratio, don't expose them. However if such a mode
3129 * is unique, let it be exposed, but reset the aspect-ratio flags
3130 * while preparing the list of user-modes.
3131 */
3132 if (!file_priv->aspect_ratio_allowed) {
3133 const struct drm_display_mode *mode_itr;
3134
3135 list_for_each_entry(mode_itr, modes, head) {
3136 if (mode_itr->expose_to_userspace &&
3137 drm_mode_match(mode_itr, mode,
3138 DRM_MODE_MATCH_TIMINGS |
3139 DRM_MODE_MATCH_CLOCK |
3140 DRM_MODE_MATCH_FLAGS |
3141 DRM_MODE_MATCH_3D_FLAGS))
3142 return false;
3143 }
3144 }
3145
3146 return true;
3147 }
3148
drm_mode_getconnector(struct drm_device * dev,void * data,struct drm_file * file_priv)3149 int drm_mode_getconnector(struct drm_device *dev, void *data,
3150 struct drm_file *file_priv)
3151 {
3152 struct drm_mode_get_connector *out_resp = data;
3153 struct drm_connector *connector;
3154 struct drm_encoder *encoder;
3155 struct drm_display_mode *mode;
3156 int mode_count = 0;
3157 int encoders_count = 0;
3158 int ret = 0;
3159 int copied = 0;
3160 struct drm_mode_modeinfo u_mode;
3161 struct drm_mode_modeinfo __user *mode_ptr;
3162 uint32_t __user *encoder_ptr;
3163 bool is_current_master;
3164
3165 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3166 return -EOPNOTSUPP;
3167
3168 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
3169
3170 connector = drm_connector_lookup(dev, file_priv, out_resp->connector_id);
3171 if (!connector)
3172 return -ENOENT;
3173
3174 encoders_count = hweight32(connector->possible_encoders);
3175
3176 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
3177 copied = 0;
3178 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
3179
3180 drm_connector_for_each_possible_encoder(connector, encoder) {
3181 if (put_user(encoder->base.id, encoder_ptr + copied)) {
3182 ret = -EFAULT;
3183 goto out;
3184 }
3185 copied++;
3186 }
3187 }
3188 out_resp->count_encoders = encoders_count;
3189
3190 out_resp->connector_id = connector->base.id;
3191 out_resp->connector_type = connector->connector_type;
3192 out_resp->connector_type_id = connector->connector_type_id;
3193
3194 is_current_master = drm_is_current_master(file_priv);
3195
3196 mutex_lock(&dev->mode_config.mutex);
3197 if (out_resp->count_modes == 0) {
3198 if (is_current_master)
3199 connector->funcs->fill_modes(connector,
3200 dev->mode_config.max_width,
3201 dev->mode_config.max_height);
3202 else
3203 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\n",
3204 connector->base.id, connector->name);
3205 }
3206
3207 out_resp->mm_width = connector->display_info.width_mm;
3208 out_resp->mm_height = connector->display_info.height_mm;
3209 out_resp->subpixel = connector->display_info.subpixel_order;
3210 out_resp->connection = connector->status;
3211
3212 /* delayed so we get modes regardless of pre-fill_modes state */
3213 list_for_each_entry(mode, &connector->modes, head) {
3214 WARN_ON(mode->expose_to_userspace);
3215
3216 if (drm_mode_expose_to_userspace(mode, &connector->modes,
3217 file_priv)) {
3218 mode->expose_to_userspace = true;
3219 mode_count++;
3220 }
3221 }
3222
3223 /*
3224 * This ioctl is called twice, once to determine how much space is
3225 * needed, and the 2nd time to fill it.
3226 */
3227 if ((out_resp->count_modes >= mode_count) && mode_count) {
3228 copied = 0;
3229 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
3230 list_for_each_entry(mode, &connector->modes, head) {
3231 if (!mode->expose_to_userspace)
3232 continue;
3233
3234 /* Clear the tag for the next time around */
3235 mode->expose_to_userspace = false;
3236
3237 drm_mode_convert_to_umode(&u_mode, mode);
3238 /*
3239 * Reset aspect ratio flags of user-mode, if modes with
3240 * aspect-ratio are not supported.
3241 */
3242 if (!file_priv->aspect_ratio_allowed)
3243 u_mode.flags &= ~DRM_MODE_FLAG_PIC_AR_MASK;
3244 if (copy_to_user(mode_ptr + copied,
3245 &u_mode, sizeof(u_mode))) {
3246 ret = -EFAULT;
3247
3248 /*
3249 * Clear the tag for the rest of
3250 * the modes for the next time around.
3251 */
3252 list_for_each_entry_continue(mode, &connector->modes, head)
3253 mode->expose_to_userspace = false;
3254
3255 mutex_unlock(&dev->mode_config.mutex);
3256
3257 goto out;
3258 }
3259 copied++;
3260 }
3261 } else {
3262 /* Clear the tag for the next time around */
3263 list_for_each_entry(mode, &connector->modes, head)
3264 mode->expose_to_userspace = false;
3265 }
3266
3267 out_resp->count_modes = mode_count;
3268 mutex_unlock(&dev->mode_config.mutex);
3269
3270 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
3271 encoder = drm_connector_get_encoder(connector);
3272 if (encoder)
3273 out_resp->encoder_id = encoder->base.id;
3274 else
3275 out_resp->encoder_id = 0;
3276
3277 /* Only grab properties after probing, to make sure EDID and other
3278 * properties reflect the latest status.
3279 */
3280 ret = drm_mode_object_get_properties(&connector->base, file_priv->atomic,
3281 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
3282 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
3283 &out_resp->count_props);
3284 drm_modeset_unlock(&dev->mode_config.connection_mutex);
3285
3286 out:
3287 drm_connector_put(connector);
3288
3289 return ret;
3290 }
3291
3292 /**
3293 * drm_connector_find_by_fwnode - Find a connector based on the associated fwnode
3294 * @fwnode: fwnode for which to find the matching drm_connector
3295 *
3296 * This functions looks up a drm_connector based on its associated fwnode. When
3297 * a connector is found a reference to the connector is returned. The caller must
3298 * call drm_connector_put() to release this reference when it is done with the
3299 * connector.
3300 *
3301 * Returns: A reference to the found connector or an ERR_PTR().
3302 */
drm_connector_find_by_fwnode(struct fwnode_handle * fwnode)3303 struct drm_connector *drm_connector_find_by_fwnode(struct fwnode_handle *fwnode)
3304 {
3305 struct drm_connector *connector, *found = ERR_PTR(-ENODEV);
3306
3307 if (!fwnode)
3308 return ERR_PTR(-ENODEV);
3309
3310 mutex_lock(&connector_list_lock);
3311
3312 list_for_each_entry(connector, &connector_list, global_connector_list_entry) {
3313 if (connector->fwnode == fwnode ||
3314 (connector->fwnode && connector->fwnode->secondary == fwnode)) {
3315 drm_connector_get(connector);
3316 found = connector;
3317 break;
3318 }
3319 }
3320
3321 mutex_unlock(&connector_list_lock);
3322
3323 return found;
3324 }
3325
3326 /**
3327 * drm_connector_oob_hotplug_event - Report out-of-band hotplug event to connector
3328 * @connector_fwnode: fwnode_handle to report the event on
3329 * @status: hot plug detect logical state
3330 *
3331 * On some hardware a hotplug event notification may come from outside the display
3332 * driver / device. An example of this is some USB Type-C setups where the hardware
3333 * muxes the DisplayPort data and aux-lines but does not pass the altmode HPD
3334 * status bit to the GPU's DP HPD pin.
3335 *
3336 * This function can be used to report these out-of-band events after obtaining
3337 * a drm_connector reference through calling drm_connector_find_by_fwnode().
3338 */
drm_connector_oob_hotplug_event(struct fwnode_handle * connector_fwnode,enum drm_connector_status status)3339 void drm_connector_oob_hotplug_event(struct fwnode_handle *connector_fwnode,
3340 enum drm_connector_status status)
3341 {
3342 struct drm_connector *connector;
3343
3344 connector = drm_connector_find_by_fwnode(connector_fwnode);
3345 if (IS_ERR(connector))
3346 return;
3347
3348 if (connector->funcs->oob_hotplug_event)
3349 connector->funcs->oob_hotplug_event(connector, status);
3350
3351 drm_connector_put(connector);
3352 }
3353 EXPORT_SYMBOL(drm_connector_oob_hotplug_event);
3354
3355
3356 /**
3357 * DOC: Tile group
3358 *
3359 * Tile groups are used to represent tiled monitors with a unique integer
3360 * identifier. Tiled monitors using DisplayID v1.3 have a unique 8-byte handle,
3361 * we store this in a tile group, so we have a common identifier for all tiles
3362 * in a monitor group. The property is called "TILE". Drivers can manage tile
3363 * groups using drm_mode_create_tile_group(), drm_mode_put_tile_group() and
3364 * drm_mode_get_tile_group(). But this is only needed for internal panels where
3365 * the tile group information is exposed through a non-standard way.
3366 */
3367
drm_tile_group_free(struct kref * kref)3368 static void drm_tile_group_free(struct kref *kref)
3369 {
3370 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
3371 struct drm_device *dev = tg->dev;
3372
3373 mutex_lock(&dev->mode_config.idr_mutex);
3374 idr_remove(&dev->mode_config.tile_idr, tg->id);
3375 mutex_unlock(&dev->mode_config.idr_mutex);
3376 kfree(tg);
3377 }
3378
3379 /**
3380 * drm_mode_put_tile_group - drop a reference to a tile group.
3381 * @dev: DRM device
3382 * @tg: tile group to drop reference to.
3383 *
3384 * drop reference to tile group and free if 0.
3385 */
drm_mode_put_tile_group(struct drm_device * dev,struct drm_tile_group * tg)3386 void drm_mode_put_tile_group(struct drm_device *dev,
3387 struct drm_tile_group *tg)
3388 {
3389 kref_put(&tg->refcount, drm_tile_group_free);
3390 }
3391 EXPORT_SYMBOL(drm_mode_put_tile_group);
3392
3393 /**
3394 * drm_mode_get_tile_group - get a reference to an existing tile group
3395 * @dev: DRM device
3396 * @topology: 8-bytes unique per monitor.
3397 *
3398 * Use the unique bytes to get a reference to an existing tile group.
3399 *
3400 * RETURNS:
3401 * tile group or NULL if not found.
3402 */
drm_mode_get_tile_group(struct drm_device * dev,const char topology[8])3403 struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
3404 const char topology[8])
3405 {
3406 struct drm_tile_group *tg;
3407 int id;
3408
3409 mutex_lock(&dev->mode_config.idr_mutex);
3410 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
3411 if (!memcmp(tg->group_data, topology, 8)) {
3412 if (!kref_get_unless_zero(&tg->refcount))
3413 tg = NULL;
3414 mutex_unlock(&dev->mode_config.idr_mutex);
3415 return tg;
3416 }
3417 }
3418 mutex_unlock(&dev->mode_config.idr_mutex);
3419 return NULL;
3420 }
3421 EXPORT_SYMBOL(drm_mode_get_tile_group);
3422
3423 /**
3424 * drm_mode_create_tile_group - create a tile group from a displayid description
3425 * @dev: DRM device
3426 * @topology: 8-bytes unique per monitor.
3427 *
3428 * Create a tile group for the unique monitor, and get a unique
3429 * identifier for the tile group.
3430 *
3431 * RETURNS:
3432 * new tile group or NULL.
3433 */
drm_mode_create_tile_group(struct drm_device * dev,const char topology[8])3434 struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
3435 const char topology[8])
3436 {
3437 struct drm_tile_group *tg;
3438 int ret;
3439
3440 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
3441 if (!tg)
3442 return NULL;
3443
3444 kref_init(&tg->refcount);
3445 memcpy(tg->group_data, topology, 8);
3446 tg->dev = dev;
3447
3448 mutex_lock(&dev->mode_config.idr_mutex);
3449 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
3450 if (ret >= 0) {
3451 tg->id = ret;
3452 } else {
3453 kfree(tg);
3454 tg = NULL;
3455 }
3456
3457 mutex_unlock(&dev->mode_config.idr_mutex);
3458 return tg;
3459 }
3460 EXPORT_SYMBOL(drm_mode_create_tile_group);
3461