2 * Copyright (c) 2016 Intel Corporation
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24 #include <drm/drm_connector.h>
25 #include <drm/drm_edid.h>
27 #include "drm_crtc_internal.h"
28 #include "drm_internal.h"
33 * In DRM connectors are the general abstraction for display sinks, and include
34 * als fixed panels or anything else that can display pixels in some form. As
35 * opposed to all other KMS objects representing hardware (like CRTC, encoder or
36 * plane abstractions) connectors can be hotplugged and unplugged at runtime.
37 * Hence they are reference-counted using drm_connector_reference() and
38 * drm_connector_unreference().
40 * KMS driver must create, initialize, register and attach at a struct
41 * &drm_connector for each such sink. The instance is created as other KMS
42 * objects and initialized by setting the following fields.
44 * The connector is then registered with a call to drm_connector_init() with a
45 * pointer to the connector functions and a connector type, and exposed through
46 * sysfs with a call to drm_connector_register().
48 * Connectors must be attached to an encoder to be used. For devices that map
49 * connectors to encoders 1:1, the connector should be attached at
50 * initialization time with a call to drm_mode_connector_attach_encoder(). The
51 * driver must also set the struct &drm_connector encoder field to point to the
54 * For connectors which are not fixed (like built-in panels) the driver needs to
55 * support hotplug notifications. The simplest way to do that is by using the
56 * probe helpers, see drm_kms_helper_poll_init() for connectors which don't have
57 * hardware support for hotplug interrupts. Connectors with hardware hotplug
58 * support can instead use e.g. drm_helper_hpd_irq_event().
61 struct drm_conn_prop_enum_list
{
68 * Connector and encoder types.
70 static struct drm_conn_prop_enum_list drm_connector_enum_list
[] = {
71 { DRM_MODE_CONNECTOR_Unknown
, "Unknown" },
72 { DRM_MODE_CONNECTOR_VGA
, "VGA" },
73 { DRM_MODE_CONNECTOR_DVII
, "DVI-I" },
74 { DRM_MODE_CONNECTOR_DVID
, "DVI-D" },
75 { DRM_MODE_CONNECTOR_DVIA
, "DVI-A" },
76 { DRM_MODE_CONNECTOR_Composite
, "Composite" },
77 { DRM_MODE_CONNECTOR_SVIDEO
, "SVIDEO" },
78 { DRM_MODE_CONNECTOR_LVDS
, "LVDS" },
79 { DRM_MODE_CONNECTOR_Component
, "Component" },
80 { DRM_MODE_CONNECTOR_9PinDIN
, "DIN" },
81 { DRM_MODE_CONNECTOR_DisplayPort
, "DP" },
82 { DRM_MODE_CONNECTOR_HDMIA
, "HDMI-A" },
83 { DRM_MODE_CONNECTOR_HDMIB
, "HDMI-B" },
84 { DRM_MODE_CONNECTOR_TV
, "TV" },
85 { DRM_MODE_CONNECTOR_eDP
, "eDP" },
86 { DRM_MODE_CONNECTOR_VIRTUAL
, "Virtual" },
87 { DRM_MODE_CONNECTOR_DSI
, "DSI" },
88 { DRM_MODE_CONNECTOR_DPI
, "DPI" },
91 void drm_connector_ida_init(void)
95 for (i
= 0; i
< ARRAY_SIZE(drm_connector_enum_list
); i
++)
96 ida_init(&drm_connector_enum_list
[i
].ida
);
99 void drm_connector_ida_destroy(void)
103 for (i
= 0; i
< ARRAY_SIZE(drm_connector_enum_list
); i
++)
104 ida_destroy(&drm_connector_enum_list
[i
].ida
);
108 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
109 * @connector: connector to quwery
111 * The kernel supports per-connector configuration of its consoles through
112 * use of the video= parameter. This function parses that option and
113 * extracts the user's specified mode (or enable/disable status) for a
114 * particular connector. This is typically only used during the early fbdev
117 static void drm_connector_get_cmdline_mode(struct drm_connector
*connector
)
119 struct drm_cmdline_mode
*mode
= &connector
->cmdline_mode
;
122 if (fb_get_options(connector
->name
, &option
))
125 if (!drm_mode_parse_command_line_for_connector(option
,
133 switch (mode
->force
) {
137 case DRM_FORCE_ON_DIGITAL
:
146 DRM_INFO("forcing %s connector %s\n", connector
->name
, s
);
147 connector
->force
= mode
->force
;
150 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
152 mode
->xres
, mode
->yres
,
153 mode
->refresh_specified
? mode
->refresh
: 60,
154 mode
->rb
? " reduced blanking" : "",
155 mode
->margins
? " with margins" : "",
156 mode
->interlace
? " interlaced" : "");
159 static void drm_connector_free(struct kref
*kref
)
161 struct drm_connector
*connector
=
162 container_of(kref
, struct drm_connector
, base
.refcount
);
163 struct drm_device
*dev
= connector
->dev
;
165 drm_mode_object_unregister(dev
, &connector
->base
);
166 connector
->funcs
->destroy(connector
);
170 * drm_connector_init - Init a preallocated connector
172 * @connector: the connector to init
173 * @funcs: callbacks for this connector
174 * @connector_type: user visible type of the connector
176 * Initialises a preallocated connector. Connectors should be
177 * subclassed as part of driver connector objects.
180 * Zero on success, error code on failure.
182 int drm_connector_init(struct drm_device
*dev
,
183 struct drm_connector
*connector
,
184 const struct drm_connector_funcs
*funcs
,
187 struct drm_mode_config
*config
= &dev
->mode_config
;
189 struct ida
*connector_ida
=
190 &drm_connector_enum_list
[connector_type
].ida
;
192 drm_modeset_lock_all(dev
);
194 ret
= drm_mode_object_get_reg(dev
, &connector
->base
,
195 DRM_MODE_OBJECT_CONNECTOR
,
196 false, drm_connector_free
);
200 connector
->base
.properties
= &connector
->properties
;
201 connector
->dev
= dev
;
202 connector
->funcs
= funcs
;
204 ret
= ida_simple_get(&config
->connector_ida
, 0, 0, GFP_KERNEL
);
207 connector
->index
= ret
;
210 connector
->connector_type
= connector_type
;
211 connector
->connector_type_id
=
212 ida_simple_get(connector_ida
, 1, 0, GFP_KERNEL
);
213 if (connector
->connector_type_id
< 0) {
214 ret
= connector
->connector_type_id
;
218 kasprintf(GFP_KERNEL
, "%s-%d",
219 drm_connector_enum_list
[connector_type
].name
,
220 connector
->connector_type_id
);
221 if (!connector
->name
) {
223 goto out_put_type_id
;
226 INIT_LIST_HEAD(&connector
->probed_modes
);
227 INIT_LIST_HEAD(&connector
->modes
);
228 connector
->edid_blob_ptr
= NULL
;
229 connector
->status
= connector_status_unknown
;
231 drm_connector_get_cmdline_mode(connector
);
233 /* We should add connectors at the end to avoid upsetting the connector
235 list_add_tail(&connector
->head
, &config
->connector_list
);
236 config
->num_connector
++;
238 if (connector_type
!= DRM_MODE_CONNECTOR_VIRTUAL
)
239 drm_object_attach_property(&connector
->base
,
240 config
->edid_property
,
243 drm_object_attach_property(&connector
->base
,
244 config
->dpms_property
, 0);
246 if (drm_core_check_feature(dev
, DRIVER_ATOMIC
)) {
247 drm_object_attach_property(&connector
->base
, config
->prop_crtc_id
, 0);
250 connector
->debugfs_entry
= NULL
;
253 ida_simple_remove(connector_ida
, connector
->connector_type_id
);
256 ida_simple_remove(&config
->connector_ida
, connector
->index
);
259 drm_mode_object_unregister(dev
, &connector
->base
);
262 drm_modeset_unlock_all(dev
);
266 EXPORT_SYMBOL(drm_connector_init
);
269 * drm_mode_connector_attach_encoder - attach a connector to an encoder
270 * @connector: connector to attach
271 * @encoder: encoder to attach @connector to
273 * This function links up a connector to an encoder. Note that the routing
274 * restrictions between encoders and crtcs are exposed to userspace through the
275 * possible_clones and possible_crtcs bitmasks.
278 * Zero on success, negative errno on failure.
280 int drm_mode_connector_attach_encoder(struct drm_connector
*connector
,
281 struct drm_encoder
*encoder
)
286 * In the past, drivers have attempted to model the static association
287 * of connector to encoder in simple connector/encoder devices using a
288 * direct assignment of connector->encoder = encoder. This connection
289 * is a logical one and the responsibility of the core, so drivers are
290 * expected not to mess with this.
292 * Note that the error return should've been enough here, but a large
293 * majority of drivers ignores the return value, so add in a big WARN
294 * to get people's attention.
296 if (WARN_ON(connector
->encoder
))
299 for (i
= 0; i
< DRM_CONNECTOR_MAX_ENCODER
; i
++) {
300 if (connector
->encoder_ids
[i
] == 0) {
301 connector
->encoder_ids
[i
] = encoder
->base
.id
;
307 EXPORT_SYMBOL(drm_mode_connector_attach_encoder
);
309 static void drm_mode_remove(struct drm_connector
*connector
,
310 struct drm_display_mode
*mode
)
312 list_del(&mode
->head
);
313 drm_mode_destroy(connector
->dev
, mode
);
317 * drm_connector_cleanup - cleans up an initialised connector
318 * @connector: connector to cleanup
320 * Cleans up the connector but doesn't free the object.
322 void drm_connector_cleanup(struct drm_connector
*connector
)
324 struct drm_device
*dev
= connector
->dev
;
325 struct drm_display_mode
*mode
, *t
;
327 /* The connector should have been removed from userspace long before
328 * it is finally destroyed.
330 if (WARN_ON(connector
->registered
))
331 drm_connector_unregister(connector
);
333 if (connector
->tile_group
) {
334 drm_mode_put_tile_group(dev
, connector
->tile_group
);
335 connector
->tile_group
= NULL
;
338 list_for_each_entry_safe(mode
, t
, &connector
->probed_modes
, head
)
339 drm_mode_remove(connector
, mode
);
341 list_for_each_entry_safe(mode
, t
, &connector
->modes
, head
)
342 drm_mode_remove(connector
, mode
);
344 ida_simple_remove(&drm_connector_enum_list
[connector
->connector_type
].ida
,
345 connector
->connector_type_id
);
347 ida_simple_remove(&dev
->mode_config
.connector_ida
,
350 kfree(connector
->display_info
.bus_formats
);
351 drm_mode_object_unregister(dev
, &connector
->base
);
352 kfree(connector
->name
);
353 connector
->name
= NULL
;
354 list_del(&connector
->head
);
355 dev
->mode_config
.num_connector
--;
357 WARN_ON(connector
->state
&& !connector
->funcs
->atomic_destroy_state
);
358 if (connector
->state
&& connector
->funcs
->atomic_destroy_state
)
359 connector
->funcs
->atomic_destroy_state(connector
,
362 memset(connector
, 0, sizeof(*connector
));
364 EXPORT_SYMBOL(drm_connector_cleanup
);
367 * drm_connector_register - register a connector
368 * @connector: the connector to register
370 * Register userspace interfaces for a connector
373 * Zero on success, error code on failure.
375 int drm_connector_register(struct drm_connector
*connector
)
379 if (connector
->registered
)
382 ret
= drm_sysfs_connector_add(connector
);
386 ret
= drm_debugfs_connector_add(connector
);
391 if (connector
->funcs
->late_register
) {
392 ret
= connector
->funcs
->late_register(connector
);
397 drm_mode_object_register(connector
->dev
, &connector
->base
);
399 connector
->registered
= true;
403 drm_debugfs_connector_remove(connector
);
405 drm_sysfs_connector_remove(connector
);
408 EXPORT_SYMBOL(drm_connector_register
);
411 * drm_connector_unregister - unregister a connector
412 * @connector: the connector to unregister
414 * Unregister userspace interfaces for a connector
416 void drm_connector_unregister(struct drm_connector
*connector
)
418 if (!connector
->registered
)
421 if (connector
->funcs
->early_unregister
)
422 connector
->funcs
->early_unregister(connector
);
424 drm_sysfs_connector_remove(connector
);
425 drm_debugfs_connector_remove(connector
);
427 connector
->registered
= false;
429 EXPORT_SYMBOL(drm_connector_unregister
);
431 void drm_connector_unregister_all(struct drm_device
*dev
)
433 struct drm_connector
*connector
;
435 /* FIXME: taking the mode config mutex ends up in a clash with sysfs */
436 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
)
437 drm_connector_unregister(connector
);
440 int drm_connector_register_all(struct drm_device
*dev
)
442 struct drm_connector
*connector
;
445 /* FIXME: taking the mode config mutex ends up in a clash with
446 * fbcon/backlight registration */
447 list_for_each_entry(connector
, &dev
->mode_config
.connector_list
, head
) {
448 ret
= drm_connector_register(connector
);
456 mutex_unlock(&dev
->mode_config
.mutex
);
457 drm_connector_unregister_all(dev
);
462 * drm_get_connector_status_name - return a string for connector status
463 * @status: connector status to compute name of
465 * In contrast to the other drm_get_*_name functions this one here returns a
466 * const pointer and hence is threadsafe.
468 const char *drm_get_connector_status_name(enum drm_connector_status status
)
470 if (status
== connector_status_connected
)
472 else if (status
== connector_status_disconnected
)
473 return "disconnected";
477 EXPORT_SYMBOL(drm_get_connector_status_name
);
479 static const struct drm_prop_enum_list drm_subpixel_enum_list
[] = {
480 { SubPixelUnknown
, "Unknown" },
481 { SubPixelHorizontalRGB
, "Horizontal RGB" },
482 { SubPixelHorizontalBGR
, "Horizontal BGR" },
483 { SubPixelVerticalRGB
, "Vertical RGB" },
484 { SubPixelVerticalBGR
, "Vertical BGR" },
485 { SubPixelNone
, "None" },
489 * drm_get_subpixel_order_name - return a string for a given subpixel enum
490 * @order: enum of subpixel_order
492 * Note you could abuse this and return something out of bounds, but that
493 * would be a caller error. No unscrubbed user data should make it here.
495 const char *drm_get_subpixel_order_name(enum subpixel_order order
)
497 return drm_subpixel_enum_list
[order
].name
;
499 EXPORT_SYMBOL(drm_get_subpixel_order_name
);
501 static const struct drm_prop_enum_list drm_dpms_enum_list
[] = {
502 { DRM_MODE_DPMS_ON
, "On" },
503 { DRM_MODE_DPMS_STANDBY
, "Standby" },
504 { DRM_MODE_DPMS_SUSPEND
, "Suspend" },
505 { DRM_MODE_DPMS_OFF
, "Off" }
507 DRM_ENUM_NAME_FN(drm_get_dpms_name
, drm_dpms_enum_list
)
510 * drm_display_info_set_bus_formats - set the supported bus formats
511 * @info: display info to store bus formats in
512 * @formats: array containing the supported bus formats
513 * @num_formats: the number of entries in the fmts array
515 * Store the supported bus formats in display info structure.
516 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
517 * a full list of available formats.
519 int drm_display_info_set_bus_formats(struct drm_display_info
*info
,
521 unsigned int num_formats
)
525 if (!formats
&& num_formats
)
528 if (formats
&& num_formats
) {
529 fmts
= kmemdup(formats
, sizeof(*formats
) * num_formats
,
535 kfree(info
->bus_formats
);
536 info
->bus_formats
= fmts
;
537 info
->num_bus_formats
= num_formats
;
541 EXPORT_SYMBOL(drm_display_info_set_bus_formats
);
543 /* Optional connector properties. */
544 static const struct drm_prop_enum_list drm_scaling_mode_enum_list
[] = {
545 { DRM_MODE_SCALE_NONE
, "None" },
546 { DRM_MODE_SCALE_FULLSCREEN
, "Full" },
547 { DRM_MODE_SCALE_CENTER
, "Center" },
548 { DRM_MODE_SCALE_ASPECT
, "Full aspect" },
551 static const struct drm_prop_enum_list drm_aspect_ratio_enum_list
[] = {
552 { DRM_MODE_PICTURE_ASPECT_NONE
, "Automatic" },
553 { DRM_MODE_PICTURE_ASPECT_4_3
, "4:3" },
554 { DRM_MODE_PICTURE_ASPECT_16_9
, "16:9" },
557 static const struct drm_prop_enum_list drm_dvi_i_select_enum_list
[] = {
558 { DRM_MODE_SUBCONNECTOR_Automatic
, "Automatic" }, /* DVI-I and TV-out */
559 { DRM_MODE_SUBCONNECTOR_DVID
, "DVI-D" }, /* DVI-I */
560 { DRM_MODE_SUBCONNECTOR_DVIA
, "DVI-A" }, /* DVI-I */
562 DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name
, drm_dvi_i_select_enum_list
)
564 static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list
[] = {
565 { DRM_MODE_SUBCONNECTOR_Unknown
, "Unknown" }, /* DVI-I and TV-out */
566 { DRM_MODE_SUBCONNECTOR_DVID
, "DVI-D" }, /* DVI-I */
567 { DRM_MODE_SUBCONNECTOR_DVIA
, "DVI-A" }, /* DVI-I */
569 DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name
,
570 drm_dvi_i_subconnector_enum_list
)
572 static const struct drm_prop_enum_list drm_tv_select_enum_list
[] = {
573 { DRM_MODE_SUBCONNECTOR_Automatic
, "Automatic" }, /* DVI-I and TV-out */
574 { DRM_MODE_SUBCONNECTOR_Composite
, "Composite" }, /* TV-out */
575 { DRM_MODE_SUBCONNECTOR_SVIDEO
, "SVIDEO" }, /* TV-out */
576 { DRM_MODE_SUBCONNECTOR_Component
, "Component" }, /* TV-out */
577 { DRM_MODE_SUBCONNECTOR_SCART
, "SCART" }, /* TV-out */
579 DRM_ENUM_NAME_FN(drm_get_tv_select_name
, drm_tv_select_enum_list
)
581 static const struct drm_prop_enum_list drm_tv_subconnector_enum_list
[] = {
582 { DRM_MODE_SUBCONNECTOR_Unknown
, "Unknown" }, /* DVI-I and TV-out */
583 { DRM_MODE_SUBCONNECTOR_Composite
, "Composite" }, /* TV-out */
584 { DRM_MODE_SUBCONNECTOR_SVIDEO
, "SVIDEO" }, /* TV-out */
585 { DRM_MODE_SUBCONNECTOR_Component
, "Component" }, /* TV-out */
586 { DRM_MODE_SUBCONNECTOR_SCART
, "SCART" }, /* TV-out */
588 DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name
,
589 drm_tv_subconnector_enum_list
)
591 int drm_connector_create_standard_properties(struct drm_device
*dev
)
593 struct drm_property
*prop
;
595 prop
= drm_property_create(dev
, DRM_MODE_PROP_BLOB
|
596 DRM_MODE_PROP_IMMUTABLE
,
600 dev
->mode_config
.edid_property
= prop
;
602 prop
= drm_property_create_enum(dev
, 0,
603 "DPMS", drm_dpms_enum_list
,
604 ARRAY_SIZE(drm_dpms_enum_list
));
607 dev
->mode_config
.dpms_property
= prop
;
609 prop
= drm_property_create(dev
,
611 DRM_MODE_PROP_IMMUTABLE
,
615 dev
->mode_config
.path_property
= prop
;
617 prop
= drm_property_create(dev
,
619 DRM_MODE_PROP_IMMUTABLE
,
623 dev
->mode_config
.tile_property
= prop
;
629 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
632 * Called by a driver the first time a DVI-I connector is made.
634 int drm_mode_create_dvi_i_properties(struct drm_device
*dev
)
636 struct drm_property
*dvi_i_selector
;
637 struct drm_property
*dvi_i_subconnector
;
639 if (dev
->mode_config
.dvi_i_select_subconnector_property
)
643 drm_property_create_enum(dev
, 0,
644 "select subconnector",
645 drm_dvi_i_select_enum_list
,
646 ARRAY_SIZE(drm_dvi_i_select_enum_list
));
647 dev
->mode_config
.dvi_i_select_subconnector_property
= dvi_i_selector
;
649 dvi_i_subconnector
= drm_property_create_enum(dev
, DRM_MODE_PROP_IMMUTABLE
,
651 drm_dvi_i_subconnector_enum_list
,
652 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list
));
653 dev
->mode_config
.dvi_i_subconnector_property
= dvi_i_subconnector
;
657 EXPORT_SYMBOL(drm_mode_create_dvi_i_properties
);
660 * drm_create_tv_properties - create TV specific connector properties
662 * @num_modes: number of different TV formats (modes) supported
663 * @modes: array of pointers to strings containing name of each format
665 * Called by a driver's TV initialization routine, this function creates
666 * the TV specific connector properties for a given device. Caller is
667 * responsible for allocating a list of format names and passing them to
670 int drm_mode_create_tv_properties(struct drm_device
*dev
,
671 unsigned int num_modes
,
672 const char * const modes
[])
674 struct drm_property
*tv_selector
;
675 struct drm_property
*tv_subconnector
;
678 if (dev
->mode_config
.tv_select_subconnector_property
)
682 * Basic connector properties
684 tv_selector
= drm_property_create_enum(dev
, 0,
685 "select subconnector",
686 drm_tv_select_enum_list
,
687 ARRAY_SIZE(drm_tv_select_enum_list
));
691 dev
->mode_config
.tv_select_subconnector_property
= tv_selector
;
694 drm_property_create_enum(dev
, DRM_MODE_PROP_IMMUTABLE
,
696 drm_tv_subconnector_enum_list
,
697 ARRAY_SIZE(drm_tv_subconnector_enum_list
));
698 if (!tv_subconnector
)
700 dev
->mode_config
.tv_subconnector_property
= tv_subconnector
;
703 * Other, TV specific properties: margins & TV modes.
705 dev
->mode_config
.tv_left_margin_property
=
706 drm_property_create_range(dev
, 0, "left margin", 0, 100);
707 if (!dev
->mode_config
.tv_left_margin_property
)
710 dev
->mode_config
.tv_right_margin_property
=
711 drm_property_create_range(dev
, 0, "right margin", 0, 100);
712 if (!dev
->mode_config
.tv_right_margin_property
)
715 dev
->mode_config
.tv_top_margin_property
=
716 drm_property_create_range(dev
, 0, "top margin", 0, 100);
717 if (!dev
->mode_config
.tv_top_margin_property
)
720 dev
->mode_config
.tv_bottom_margin_property
=
721 drm_property_create_range(dev
, 0, "bottom margin", 0, 100);
722 if (!dev
->mode_config
.tv_bottom_margin_property
)
725 dev
->mode_config
.tv_mode_property
=
726 drm_property_create(dev
, DRM_MODE_PROP_ENUM
,
728 if (!dev
->mode_config
.tv_mode_property
)
731 for (i
= 0; i
< num_modes
; i
++)
732 drm_property_add_enum(dev
->mode_config
.tv_mode_property
, i
,
735 dev
->mode_config
.tv_brightness_property
=
736 drm_property_create_range(dev
, 0, "brightness", 0, 100);
737 if (!dev
->mode_config
.tv_brightness_property
)
740 dev
->mode_config
.tv_contrast_property
=
741 drm_property_create_range(dev
, 0, "contrast", 0, 100);
742 if (!dev
->mode_config
.tv_contrast_property
)
745 dev
->mode_config
.tv_flicker_reduction_property
=
746 drm_property_create_range(dev
, 0, "flicker reduction", 0, 100);
747 if (!dev
->mode_config
.tv_flicker_reduction_property
)
750 dev
->mode_config
.tv_overscan_property
=
751 drm_property_create_range(dev
, 0, "overscan", 0, 100);
752 if (!dev
->mode_config
.tv_overscan_property
)
755 dev
->mode_config
.tv_saturation_property
=
756 drm_property_create_range(dev
, 0, "saturation", 0, 100);
757 if (!dev
->mode_config
.tv_saturation_property
)
760 dev
->mode_config
.tv_hue_property
=
761 drm_property_create_range(dev
, 0, "hue", 0, 100);
762 if (!dev
->mode_config
.tv_hue_property
)
769 EXPORT_SYMBOL(drm_mode_create_tv_properties
);
772 * drm_mode_create_scaling_mode_property - create scaling mode property
775 * Called by a driver the first time it's needed, must be attached to desired
778 int drm_mode_create_scaling_mode_property(struct drm_device
*dev
)
780 struct drm_property
*scaling_mode
;
782 if (dev
->mode_config
.scaling_mode_property
)
786 drm_property_create_enum(dev
, 0, "scaling mode",
787 drm_scaling_mode_enum_list
,
788 ARRAY_SIZE(drm_scaling_mode_enum_list
));
790 dev
->mode_config
.scaling_mode_property
= scaling_mode
;
794 EXPORT_SYMBOL(drm_mode_create_scaling_mode_property
);
797 * drm_mode_create_aspect_ratio_property - create aspect ratio property
800 * Called by a driver the first time it's needed, must be attached to desired
804 * Zero on success, negative errno on failure.
806 int drm_mode_create_aspect_ratio_property(struct drm_device
*dev
)
808 if (dev
->mode_config
.aspect_ratio_property
)
811 dev
->mode_config
.aspect_ratio_property
=
812 drm_property_create_enum(dev
, 0, "aspect ratio",
813 drm_aspect_ratio_enum_list
,
814 ARRAY_SIZE(drm_aspect_ratio_enum_list
));
816 if (dev
->mode_config
.aspect_ratio_property
== NULL
)
821 EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property
);
824 * drm_mode_create_suggested_offset_properties - create suggests offset properties
827 * Create the the suggested x/y offset property for connectors.
829 int drm_mode_create_suggested_offset_properties(struct drm_device
*dev
)
831 if (dev
->mode_config
.suggested_x_property
&& dev
->mode_config
.suggested_y_property
)
834 dev
->mode_config
.suggested_x_property
=
835 drm_property_create_range(dev
, DRM_MODE_PROP_IMMUTABLE
, "suggested X", 0, 0xffffffff);
837 dev
->mode_config
.suggested_y_property
=
838 drm_property_create_range(dev
, DRM_MODE_PROP_IMMUTABLE
, "suggested Y", 0, 0xffffffff);
840 if (dev
->mode_config
.suggested_x_property
== NULL
||
841 dev
->mode_config
.suggested_y_property
== NULL
)
845 EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties
);
848 * drm_mode_connector_set_path_property - set tile property on connector
849 * @connector: connector to set property on.
850 * @path: path to use for property; must not be NULL.
852 * This creates a property to expose to userspace to specify a
853 * connector path. This is mainly used for DisplayPort MST where
854 * connectors have a topology and we want to allow userspace to give
855 * them more meaningful names.
858 * Zero on success, negative errno on failure.
860 int drm_mode_connector_set_path_property(struct drm_connector
*connector
,
863 struct drm_device
*dev
= connector
->dev
;
866 ret
= drm_property_replace_global_blob(dev
,
867 &connector
->path_blob_ptr
,
871 dev
->mode_config
.path_property
);
874 EXPORT_SYMBOL(drm_mode_connector_set_path_property
);
877 * drm_mode_connector_set_tile_property - set tile property on connector
878 * @connector: connector to set property on.
880 * This looks up the tile information for a connector, and creates a
881 * property for userspace to parse if it exists. The property is of
882 * the form of 8 integers using ':' as a separator.
885 * Zero on success, errno on failure.
887 int drm_mode_connector_set_tile_property(struct drm_connector
*connector
)
889 struct drm_device
*dev
= connector
->dev
;
893 if (!connector
->has_tile
) {
894 ret
= drm_property_replace_global_blob(dev
,
895 &connector
->tile_blob_ptr
,
899 dev
->mode_config
.tile_property
);
903 snprintf(tile
, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
904 connector
->tile_group
->id
, connector
->tile_is_single_monitor
,
905 connector
->num_h_tile
, connector
->num_v_tile
,
906 connector
->tile_h_loc
, connector
->tile_v_loc
,
907 connector
->tile_h_size
, connector
->tile_v_size
);
909 ret
= drm_property_replace_global_blob(dev
,
910 &connector
->tile_blob_ptr
,
914 dev
->mode_config
.tile_property
);
917 EXPORT_SYMBOL(drm_mode_connector_set_tile_property
);
920 * drm_mode_connector_update_edid_property - update the edid property of a connector
921 * @connector: drm connector
922 * @edid: new value of the edid property
924 * This function creates a new blob modeset object and assigns its id to the
925 * connector's edid property.
928 * Zero on success, negative errno on failure.
930 int drm_mode_connector_update_edid_property(struct drm_connector
*connector
,
931 const struct edid
*edid
)
933 struct drm_device
*dev
= connector
->dev
;
937 /* ignore requests to set edid when overridden */
938 if (connector
->override_edid
)
942 size
= EDID_LENGTH
* (1 + edid
->extensions
);
944 ret
= drm_property_replace_global_blob(dev
,
945 &connector
->edid_blob_ptr
,
949 dev
->mode_config
.edid_property
);
952 EXPORT_SYMBOL(drm_mode_connector_update_edid_property
);
954 int drm_mode_connector_set_obj_prop(struct drm_mode_object
*obj
,
955 struct drm_property
*property
,
959 struct drm_connector
*connector
= obj_to_connector(obj
);
961 /* Do DPMS ourselves */
962 if (property
== connector
->dev
->mode_config
.dpms_property
) {
963 ret
= (*connector
->funcs
->dpms
)(connector
, (int)value
);
964 } else if (connector
->funcs
->set_property
)
965 ret
= connector
->funcs
->set_property(connector
, property
, value
);
967 /* store the property value if successful */
969 drm_object_property_set_value(&connector
->base
, property
, value
);
973 int drm_mode_connector_property_set_ioctl(struct drm_device
*dev
,
974 void *data
, struct drm_file
*file_priv
)
976 struct drm_mode_connector_set_property
*conn_set_prop
= data
;
977 struct drm_mode_obj_set_property obj_set_prop
= {
978 .value
= conn_set_prop
->value
,
979 .prop_id
= conn_set_prop
->prop_id
,
980 .obj_id
= conn_set_prop
->connector_id
,
981 .obj_type
= DRM_MODE_OBJECT_CONNECTOR
984 /* It does all the locking and checking we need */
985 return drm_mode_obj_set_property_ioctl(dev
, &obj_set_prop
, file_priv
);
988 static struct drm_encoder
*drm_connector_get_encoder(struct drm_connector
*connector
)
990 /* For atomic drivers only state objects are synchronously updated and
991 * protected by modeset locks, so check those first. */
992 if (connector
->state
)
993 return connector
->state
->best_encoder
;
994 return connector
->encoder
;
997 static bool drm_mode_expose_to_userspace(const struct drm_display_mode
*mode
,
998 const struct drm_file
*file_priv
)
1001 * If user-space hasn't configured the driver to expose the stereo 3D
1002 * modes, don't expose them.
1004 if (!file_priv
->stereo_allowed
&& drm_mode_is_stereo(mode
))
1010 int drm_mode_getconnector(struct drm_device
*dev
, void *data
,
1011 struct drm_file
*file_priv
)
1013 struct drm_mode_get_connector
*out_resp
= data
;
1014 struct drm_connector
*connector
;
1015 struct drm_encoder
*encoder
;
1016 struct drm_display_mode
*mode
;
1018 int encoders_count
= 0;
1022 struct drm_mode_modeinfo u_mode
;
1023 struct drm_mode_modeinfo __user
*mode_ptr
;
1024 uint32_t __user
*encoder_ptr
;
1026 if (!drm_core_check_feature(dev
, DRIVER_MODESET
))
1029 memset(&u_mode
, 0, sizeof(struct drm_mode_modeinfo
));
1031 mutex_lock(&dev
->mode_config
.mutex
);
1033 connector
= drm_connector_lookup(dev
, out_resp
->connector_id
);
1039 for (i
= 0; i
< DRM_CONNECTOR_MAX_ENCODER
; i
++)
1040 if (connector
->encoder_ids
[i
] != 0)
1043 if (out_resp
->count_modes
== 0) {
1044 connector
->funcs
->fill_modes(connector
,
1045 dev
->mode_config
.max_width
,
1046 dev
->mode_config
.max_height
);
1049 /* delayed so we get modes regardless of pre-fill_modes state */
1050 list_for_each_entry(mode
, &connector
->modes
, head
)
1051 if (drm_mode_expose_to_userspace(mode
, file_priv
))
1054 out_resp
->connector_id
= connector
->base
.id
;
1055 out_resp
->connector_type
= connector
->connector_type
;
1056 out_resp
->connector_type_id
= connector
->connector_type_id
;
1057 out_resp
->mm_width
= connector
->display_info
.width_mm
;
1058 out_resp
->mm_height
= connector
->display_info
.height_mm
;
1059 out_resp
->subpixel
= connector
->display_info
.subpixel_order
;
1060 out_resp
->connection
= connector
->status
;
1062 drm_modeset_lock(&dev
->mode_config
.connection_mutex
, NULL
);
1063 encoder
= drm_connector_get_encoder(connector
);
1065 out_resp
->encoder_id
= encoder
->base
.id
;
1067 out_resp
->encoder_id
= 0;
1070 * This ioctl is called twice, once to determine how much space is
1071 * needed, and the 2nd time to fill it.
1073 if ((out_resp
->count_modes
>= mode_count
) && mode_count
) {
1075 mode_ptr
= (struct drm_mode_modeinfo __user
*)(unsigned long)out_resp
->modes_ptr
;
1076 list_for_each_entry(mode
, &connector
->modes
, head
) {
1077 if (!drm_mode_expose_to_userspace(mode
, file_priv
))
1080 drm_mode_convert_to_umode(&u_mode
, mode
);
1081 if (copy_to_user(mode_ptr
+ copied
,
1082 &u_mode
, sizeof(u_mode
))) {
1089 out_resp
->count_modes
= mode_count
;
1091 ret
= drm_mode_object_get_properties(&connector
->base
, file_priv
->atomic
,
1092 (uint32_t __user
*)(unsigned long)(out_resp
->props_ptr
),
1093 (uint64_t __user
*)(unsigned long)(out_resp
->prop_values_ptr
),
1094 &out_resp
->count_props
);
1098 if ((out_resp
->count_encoders
>= encoders_count
) && encoders_count
) {
1100 encoder_ptr
= (uint32_t __user
*)(unsigned long)(out_resp
->encoders_ptr
);
1101 for (i
= 0; i
< DRM_CONNECTOR_MAX_ENCODER
; i
++) {
1102 if (connector
->encoder_ids
[i
] != 0) {
1103 if (put_user(connector
->encoder_ids
[i
],
1104 encoder_ptr
+ copied
)) {
1112 out_resp
->count_encoders
= encoders_count
;
1115 drm_modeset_unlock(&dev
->mode_config
.connection_mutex
);
1117 drm_connector_unreference(connector
);
1119 mutex_unlock(&dev
->mode_config
.mutex
);