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