blob: 526619f963e542dea513283b77ad78a6a0c60785 [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 */
382 if (WARN_ON(connector->registered))
383 drm_connector_unregister(connector);
384
385 if (connector->tile_group) {
386 drm_mode_put_tile_group(dev, connector->tile_group);
387 connector->tile_group = NULL;
388 }
389
390 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
391 drm_mode_remove(connector, mode);
392
393 list_for_each_entry_safe(mode, t, &connector->modes, head)
394 drm_mode_remove(connector, mode);
395
Christophe JAILLET9a47dba2016-10-07 09:27:41 +0200396 ida_simple_remove(&drm_connector_enum_list[connector->connector_type].ida,
397 connector->connector_type_id);
Daniel Vetter52217192016-08-12 22:48:50 +0200398
Christophe JAILLET9a47dba2016-10-07 09:27:41 +0200399 ida_simple_remove(&dev->mode_config.connector_ida,
400 connector->index);
Daniel Vetter52217192016-08-12 22:48:50 +0200401
402 kfree(connector->display_info.bus_formats);
403 drm_mode_object_unregister(dev, &connector->base);
404 kfree(connector->name);
405 connector->name = NULL;
Daniel Vetter613051d2016-12-14 00:08:06 +0100406 spin_lock_irq(&dev->mode_config.connector_list_lock);
Daniel Vetter52217192016-08-12 22:48:50 +0200407 list_del(&connector->head);
408 dev->mode_config.num_connector--;
Daniel Vetter613051d2016-12-14 00:08:06 +0100409 spin_unlock_irq(&dev->mode_config.connector_list_lock);
Daniel Vetter52217192016-08-12 22:48:50 +0200410
411 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
412 if (connector->state && connector->funcs->atomic_destroy_state)
413 connector->funcs->atomic_destroy_state(connector,
414 connector->state);
415
Daniel Vettere73ab002016-12-18 14:35:45 +0100416 mutex_destroy(&connector->mutex);
417
Daniel Vetter52217192016-08-12 22:48:50 +0200418 memset(connector, 0, sizeof(*connector));
419}
420EXPORT_SYMBOL(drm_connector_cleanup);
421
422/**
423 * drm_connector_register - register a connector
424 * @connector: the connector to register
425 *
426 * Register userspace interfaces for a connector
427 *
428 * Returns:
429 * Zero on success, error code on failure.
430 */
431int drm_connector_register(struct drm_connector *connector)
432{
Daniel Vettere73ab002016-12-18 14:35:45 +0100433 int ret = 0;
Daniel Vetter52217192016-08-12 22:48:50 +0200434
Daniel Vettere6e7b482017-01-12 17:15:56 +0100435 if (!connector->dev->registered)
436 return 0;
437
Daniel Vettere73ab002016-12-18 14:35:45 +0100438 mutex_lock(&connector->mutex);
Daniel Vetter52217192016-08-12 22:48:50 +0200439 if (connector->registered)
Daniel Vettere73ab002016-12-18 14:35:45 +0100440 goto unlock;
Daniel Vetter52217192016-08-12 22:48:50 +0200441
442 ret = drm_sysfs_connector_add(connector);
443 if (ret)
Daniel Vettere73ab002016-12-18 14:35:45 +0100444 goto unlock;
Daniel Vetter52217192016-08-12 22:48:50 +0200445
446 ret = drm_debugfs_connector_add(connector);
447 if (ret) {
448 goto err_sysfs;
449 }
450
451 if (connector->funcs->late_register) {
452 ret = connector->funcs->late_register(connector);
453 if (ret)
454 goto err_debugfs;
455 }
456
457 drm_mode_object_register(connector->dev, &connector->base);
458
459 connector->registered = true;
Daniel Vettere73ab002016-12-18 14:35:45 +0100460 goto unlock;
Daniel Vetter52217192016-08-12 22:48:50 +0200461
462err_debugfs:
463 drm_debugfs_connector_remove(connector);
464err_sysfs:
465 drm_sysfs_connector_remove(connector);
Daniel Vettere73ab002016-12-18 14:35:45 +0100466unlock:
467 mutex_unlock(&connector->mutex);
Daniel Vetter52217192016-08-12 22:48:50 +0200468 return ret;
469}
470EXPORT_SYMBOL(drm_connector_register);
471
472/**
473 * drm_connector_unregister - unregister a connector
474 * @connector: the connector to unregister
475 *
476 * Unregister userspace interfaces for a connector
477 */
478void drm_connector_unregister(struct drm_connector *connector)
479{
Daniel Vettere73ab002016-12-18 14:35:45 +0100480 mutex_lock(&connector->mutex);
481 if (!connector->registered) {
482 mutex_unlock(&connector->mutex);
Daniel Vetter52217192016-08-12 22:48:50 +0200483 return;
Daniel Vettere73ab002016-12-18 14:35:45 +0100484 }
Daniel Vetter52217192016-08-12 22:48:50 +0200485
486 if (connector->funcs->early_unregister)
487 connector->funcs->early_unregister(connector);
488
489 drm_sysfs_connector_remove(connector);
490 drm_debugfs_connector_remove(connector);
491
492 connector->registered = false;
Daniel Vettere73ab002016-12-18 14:35:45 +0100493 mutex_unlock(&connector->mutex);
Daniel Vetter52217192016-08-12 22:48:50 +0200494}
495EXPORT_SYMBOL(drm_connector_unregister);
496
497void drm_connector_unregister_all(struct drm_device *dev)
498{
499 struct drm_connector *connector;
Daniel Vetter613051d2016-12-14 00:08:06 +0100500 struct drm_connector_list_iter conn_iter;
Daniel Vetter52217192016-08-12 22:48:50 +0200501
Thierry Redingb982dab2017-02-28 15:46:43 +0100502 drm_connector_list_iter_begin(dev, &conn_iter);
Daniel Vetter613051d2016-12-14 00:08:06 +0100503 drm_for_each_connector_iter(connector, &conn_iter)
Daniel Vetter52217192016-08-12 22:48:50 +0200504 drm_connector_unregister(connector);
Thierry Redingb982dab2017-02-28 15:46:43 +0100505 drm_connector_list_iter_end(&conn_iter);
Daniel Vetter52217192016-08-12 22:48:50 +0200506}
507
508int drm_connector_register_all(struct drm_device *dev)
509{
510 struct drm_connector *connector;
Daniel Vetter613051d2016-12-14 00:08:06 +0100511 struct drm_connector_list_iter conn_iter;
512 int ret = 0;
Daniel Vetter52217192016-08-12 22:48:50 +0200513
Thierry Redingb982dab2017-02-28 15:46:43 +0100514 drm_connector_list_iter_begin(dev, &conn_iter);
Daniel Vetter613051d2016-12-14 00:08:06 +0100515 drm_for_each_connector_iter(connector, &conn_iter) {
Daniel Vetter52217192016-08-12 22:48:50 +0200516 ret = drm_connector_register(connector);
517 if (ret)
Daniel Vetter613051d2016-12-14 00:08:06 +0100518 break;
Daniel Vetter52217192016-08-12 22:48:50 +0200519 }
Thierry Redingb982dab2017-02-28 15:46:43 +0100520 drm_connector_list_iter_end(&conn_iter);
Daniel Vetter52217192016-08-12 22:48:50 +0200521
Daniel Vetter613051d2016-12-14 00:08:06 +0100522 if (ret)
523 drm_connector_unregister_all(dev);
Daniel Vetter52217192016-08-12 22:48:50 +0200524 return ret;
525}
526
527/**
528 * drm_get_connector_status_name - return a string for connector status
529 * @status: connector status to compute name of
530 *
531 * In contrast to the other drm_get_*_name functions this one here returns a
532 * const pointer and hence is threadsafe.
533 */
534const char *drm_get_connector_status_name(enum drm_connector_status status)
535{
536 if (status == connector_status_connected)
537 return "connected";
538 else if (status == connector_status_disconnected)
539 return "disconnected";
540 else
541 return "unknown";
542}
543EXPORT_SYMBOL(drm_get_connector_status_name);
544
Jani Nikula6140cf22017-02-20 10:51:48 +0200545/**
546 * drm_get_connector_force_name - return a string for connector force
547 * @force: connector force to get name of
548 *
549 * Returns: const pointer to name.
550 */
551const char *drm_get_connector_force_name(enum drm_connector_force force)
552{
553 switch (force) {
554 case DRM_FORCE_UNSPECIFIED:
555 return "unspecified";
556 case DRM_FORCE_OFF:
557 return "off";
558 case DRM_FORCE_ON:
559 return "on";
560 case DRM_FORCE_ON_DIGITAL:
561 return "digital";
562 default:
563 return "unknown";
564 }
565}
566
Daniel Vetter613051d2016-12-14 00:08:06 +0100567#ifdef CONFIG_LOCKDEP
568static struct lockdep_map connector_list_iter_dep_map = {
569 .name = "drm_connector_list_iter"
570};
571#endif
572
573/**
Thierry Redingb982dab2017-02-28 15:46:43 +0100574 * drm_connector_list_iter_begin - initialize a connector_list iterator
Daniel Vetter613051d2016-12-14 00:08:06 +0100575 * @dev: DRM device
576 * @iter: connector_list iterator
577 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100578 * Sets @iter up to walk the &drm_mode_config.connector_list of @dev. @iter
Thierry Redingb982dab2017-02-28 15:46:43 +0100579 * must always be cleaned up again by calling drm_connector_list_iter_end().
Daniel Vetter613051d2016-12-14 00:08:06 +0100580 * Iteration itself happens using drm_connector_list_iter_next() or
581 * drm_for_each_connector_iter().
582 */
Thierry Redingb982dab2017-02-28 15:46:43 +0100583void drm_connector_list_iter_begin(struct drm_device *dev,
584 struct drm_connector_list_iter *iter)
Daniel Vetter613051d2016-12-14 00:08:06 +0100585{
586 iter->dev = dev;
587 iter->conn = NULL;
588 lock_acquire_shared_recursive(&connector_list_iter_dep_map, 0, 1, NULL, _RET_IP_);
589}
Thierry Redingb982dab2017-02-28 15:46:43 +0100590EXPORT_SYMBOL(drm_connector_list_iter_begin);
Daniel Vetter613051d2016-12-14 00:08:06 +0100591
Daniel Vettera703c552017-12-04 21:48:18 +0100592/*
593 * Extra-safe connector put function that works in any context. Should only be
594 * used from the connector_iter functions, where we never really expect to
595 * actually release the connector when dropping our final reference.
596 */
597static void
Daniel Vetterea497bb2017-12-13 13:49:36 +0100598__drm_connector_put_safe(struct drm_connector *conn)
Daniel Vettera703c552017-12-04 21:48:18 +0100599{
Daniel Vetterea497bb2017-12-13 13:49:36 +0100600 struct drm_mode_config *config = &conn->dev->mode_config;
601
602 lockdep_assert_held(&config->connector_list_lock);
603
604 if (!refcount_dec_and_test(&conn->base.refcount.refcount))
605 return;
606
607 llist_add(&conn->free_node, &config->connector_free_list);
608 schedule_work(&config->connector_free_work);
Daniel Vettera703c552017-12-04 21:48:18 +0100609}
610
Daniel Vetter613051d2016-12-14 00:08:06 +0100611/**
612 * drm_connector_list_iter_next - return next connector
Lyude Paul4f45c772018-07-16 13:17:11 -0400613 * @iter: connector_list iterator
Daniel Vetter613051d2016-12-14 00:08:06 +0100614 *
615 * Returns the next connector for @iter, or NULL when the list walk has
616 * completed.
617 */
618struct drm_connector *
619drm_connector_list_iter_next(struct drm_connector_list_iter *iter)
620{
621 struct drm_connector *old_conn = iter->conn;
622 struct drm_mode_config *config = &iter->dev->mode_config;
623 struct list_head *lhead;
624 unsigned long flags;
625
626 spin_lock_irqsave(&config->connector_list_lock, flags);
627 lhead = old_conn ? &old_conn->head : &config->connector_list;
628
629 do {
630 if (lhead->next == &config->connector_list) {
631 iter->conn = NULL;
632 break;
633 }
634
635 lhead = lhead->next;
636 iter->conn = list_entry(lhead, struct drm_connector, head);
637
638 /* loop until it's not a zombie connector */
639 } while (!kref_get_unless_zero(&iter->conn->base.refcount));
Daniel Vetter613051d2016-12-14 00:08:06 +0100640
641 if (old_conn)
Daniel Vetterea497bb2017-12-13 13:49:36 +0100642 __drm_connector_put_safe(old_conn);
643 spin_unlock_irqrestore(&config->connector_list_lock, flags);
Daniel Vetter613051d2016-12-14 00:08:06 +0100644
645 return iter->conn;
646}
647EXPORT_SYMBOL(drm_connector_list_iter_next);
648
649/**
Thierry Redingb982dab2017-02-28 15:46:43 +0100650 * drm_connector_list_iter_end - tear down a connector_list iterator
Daniel Vetter613051d2016-12-14 00:08:06 +0100651 * @iter: connector_list iterator
652 *
653 * Tears down @iter and releases any resources (like &drm_connector references)
654 * acquired while walking the list. This must always be called, both when the
655 * iteration completes fully or when it was aborted without walking the entire
656 * list.
657 */
Thierry Redingb982dab2017-02-28 15:46:43 +0100658void drm_connector_list_iter_end(struct drm_connector_list_iter *iter)
Daniel Vetter613051d2016-12-14 00:08:06 +0100659{
Daniel Vetterea497bb2017-12-13 13:49:36 +0100660 struct drm_mode_config *config = &iter->dev->mode_config;
661 unsigned long flags;
662
Daniel Vetter613051d2016-12-14 00:08:06 +0100663 iter->dev = NULL;
Daniel Vetterea497bb2017-12-13 13:49:36 +0100664 if (iter->conn) {
665 spin_lock_irqsave(&config->connector_list_lock, flags);
666 __drm_connector_put_safe(iter->conn);
667 spin_unlock_irqrestore(&config->connector_list_lock, flags);
668 }
Daniel Vetter613051d2016-12-14 00:08:06 +0100669 lock_release(&connector_list_iter_dep_map, 0, _RET_IP_);
670}
Thierry Redingb982dab2017-02-28 15:46:43 +0100671EXPORT_SYMBOL(drm_connector_list_iter_end);
Daniel Vetter613051d2016-12-14 00:08:06 +0100672
Daniel Vetter52217192016-08-12 22:48:50 +0200673static const struct drm_prop_enum_list drm_subpixel_enum_list[] = {
674 { SubPixelUnknown, "Unknown" },
675 { SubPixelHorizontalRGB, "Horizontal RGB" },
676 { SubPixelHorizontalBGR, "Horizontal BGR" },
677 { SubPixelVerticalRGB, "Vertical RGB" },
678 { SubPixelVerticalBGR, "Vertical BGR" },
679 { SubPixelNone, "None" },
680};
681
682/**
683 * drm_get_subpixel_order_name - return a string for a given subpixel enum
684 * @order: enum of subpixel_order
685 *
686 * Note you could abuse this and return something out of bounds, but that
687 * would be a caller error. No unscrubbed user data should make it here.
688 */
689const char *drm_get_subpixel_order_name(enum subpixel_order order)
690{
691 return drm_subpixel_enum_list[order].name;
692}
693EXPORT_SYMBOL(drm_get_subpixel_order_name);
694
695static const struct drm_prop_enum_list drm_dpms_enum_list[] = {
696 { DRM_MODE_DPMS_ON, "On" },
697 { DRM_MODE_DPMS_STANDBY, "Standby" },
698 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
699 { DRM_MODE_DPMS_OFF, "Off" }
700};
701DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
702
Manasi Navare40ee6fb2016-12-16 12:29:06 +0200703static const struct drm_prop_enum_list drm_link_status_enum_list[] = {
704 { DRM_MODE_LINK_STATUS_GOOD, "Good" },
705 { DRM_MODE_LINK_STATUS_BAD, "Bad" },
706};
Manasi Navare40ee6fb2016-12-16 12:29:06 +0200707
Daniel Vetterb3c6c8b2016-08-12 22:48:55 +0200708/**
709 * drm_display_info_set_bus_formats - set the supported bus formats
710 * @info: display info to store bus formats in
711 * @formats: array containing the supported bus formats
712 * @num_formats: the number of entries in the fmts array
713 *
714 * Store the supported bus formats in display info structure.
715 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
716 * a full list of available formats.
717 */
718int drm_display_info_set_bus_formats(struct drm_display_info *info,
719 const u32 *formats,
720 unsigned int num_formats)
721{
722 u32 *fmts = NULL;
723
724 if (!formats && num_formats)
725 return -EINVAL;
726
727 if (formats && num_formats) {
728 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
729 GFP_KERNEL);
730 if (!fmts)
731 return -ENOMEM;
732 }
733
734 kfree(info->bus_formats);
735 info->bus_formats = fmts;
736 info->num_bus_formats = num_formats;
737
738 return 0;
739}
740EXPORT_SYMBOL(drm_display_info_set_bus_formats);
741
Daniel Vetter52217192016-08-12 22:48:50 +0200742/* Optional connector properties. */
743static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = {
744 { DRM_MODE_SCALE_NONE, "None" },
745 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
746 { DRM_MODE_SCALE_CENTER, "Center" },
747 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
748};
749
750static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
751 { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
752 { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
753 { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
754};
755
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +0300756static const struct drm_prop_enum_list drm_content_type_enum_list[] = {
757 { DRM_MODE_CONTENT_TYPE_NO_DATA, "No Data" },
758 { DRM_MODE_CONTENT_TYPE_GRAPHICS, "Graphics" },
759 { DRM_MODE_CONTENT_TYPE_PHOTO, "Photo" },
760 { DRM_MODE_CONTENT_TYPE_CINEMA, "Cinema" },
761 { DRM_MODE_CONTENT_TYPE_GAME, "Game" },
762};
763
Hans de Goede8d70f392017-11-25 20:35:49 +0100764static const struct drm_prop_enum_list drm_panel_orientation_enum_list[] = {
765 { DRM_MODE_PANEL_ORIENTATION_NORMAL, "Normal" },
766 { DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP, "Upside Down" },
767 { DRM_MODE_PANEL_ORIENTATION_LEFT_UP, "Left Side Up" },
768 { DRM_MODE_PANEL_ORIENTATION_RIGHT_UP, "Right Side Up" },
769};
770
Daniel Vetter52217192016-08-12 22:48:50 +0200771static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = {
772 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
773 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
774 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
775};
776DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
777
778static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = {
779 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
780 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
781 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
782};
783DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
784 drm_dvi_i_subconnector_enum_list)
785
786static const struct drm_prop_enum_list drm_tv_select_enum_list[] = {
787 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
788 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
789 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
790 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
791 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
792};
793DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
794
795static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = {
796 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
797 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
798 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
799 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
800 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
801};
802DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
803 drm_tv_subconnector_enum_list)
804
Sean Paul24557862018-01-08 14:55:37 -0500805static struct drm_prop_enum_list drm_cp_enum_list[] = {
806 { DRM_MODE_CONTENT_PROTECTION_UNDESIRED, "Undesired" },
807 { DRM_MODE_CONTENT_PROTECTION_DESIRED, "Desired" },
808 { DRM_MODE_CONTENT_PROTECTION_ENABLED, "Enabled" },
809};
810DRM_ENUM_NAME_FN(drm_get_content_protection_name, drm_cp_enum_list)
811
Daniel Vetter4ada6f22016-11-17 09:56:48 +0100812/**
813 * DOC: standard connector properties
814 *
815 * DRM connectors have a few standardized properties:
816 *
817 * EDID:
818 * Blob property which contains the current EDID read from the sink. This
819 * is useful to parse sink identification information like vendor, model
820 * and serial. Drivers should update this property by calling
Daniel Vetterc555f022018-07-09 10:40:06 +0200821 * drm_connector_update_edid_property(), usually after having parsed
Daniel Vetter4ada6f22016-11-17 09:56:48 +0100822 * the EDID using drm_add_edid_modes(). Userspace cannot change this
823 * property.
824 * DPMS:
825 * Legacy property for setting the power state of the connector. For atomic
826 * drivers this is only provided for backwards compatibility with existing
827 * drivers, it remaps to controlling the "ACTIVE" property on the CRTC the
828 * connector is linked to. Drivers should never set this property directly,
Daniel Vetterd5745282017-01-25 07:26:45 +0100829 * it is handled by the DRM core by calling the &drm_connector_funcs.dpms
Daniel Vetter144a7992017-07-25 14:02:04 +0200830 * callback. For atomic drivers the remapping to the "ACTIVE" property is
831 * implemented in the DRM core. This is the only standard connector
832 * property that userspace can change.
Daniel Vetterd0d1aee52017-09-21 00:59:57 +0200833 *
834 * Note that this property cannot be set through the MODE_ATOMIC ioctl,
835 * userspace must use "ACTIVE" on the CRTC instead.
836 *
837 * WARNING:
838 *
839 * For userspace also running on legacy drivers the "DPMS" semantics are a
840 * lot more complicated. First, userspace cannot rely on the "DPMS" value
841 * returned by the GETCONNECTOR actually reflecting reality, because many
842 * drivers fail to update it. For atomic drivers this is taken care of in
843 * drm_atomic_helper_update_legacy_modeset_state().
844 *
845 * The second issue is that the DPMS state is only well-defined when the
846 * connector is connected to a CRTC. In atomic the DRM core enforces that
847 * "ACTIVE" is off in such a case, no such checks exists for "DPMS".
848 *
849 * Finally, when enabling an output using the legacy SETCONFIG ioctl then
850 * "DPMS" is forced to ON. But see above, that might not be reflected in
851 * the software value on legacy drivers.
852 *
853 * Summarizing: Only set "DPMS" when the connector is known to be enabled,
854 * assume that a successful SETCONFIG call also sets "DPMS" to on, and
855 * never read back the value of "DPMS" because it can be incorrect.
Daniel Vetter4ada6f22016-11-17 09:56:48 +0100856 * PATH:
857 * Connector path property to identify how this sink is physically
858 * connected. Used by DP MST. This should be set by calling
Daniel Vetter97e14fb2018-07-09 10:40:08 +0200859 * drm_connector_set_path_property(), in the case of DP MST with the
Daniel Vetter4ada6f22016-11-17 09:56:48 +0100860 * path property the MST manager created. Userspace cannot change this
861 * property.
862 * TILE:
863 * Connector tile group property to indicate how a set of DRM connector
864 * compose together into one logical screen. This is used by both high-res
865 * external screens (often only using a single cable, but exposing multiple
866 * DP MST sinks), or high-res integrated panels (like dual-link DSI) which
867 * are not gen-locked. Note that for tiled panels which are genlocked, like
868 * dual-link LVDS or dual-link DSI, the driver should try to not expose the
869 * tiling and virtualize both &drm_crtc and &drm_plane if needed. Drivers
Daniel Vetter97e14fb2018-07-09 10:40:08 +0200870 * should update this value using drm_connector_set_tile_property().
Daniel Vetter4ada6f22016-11-17 09:56:48 +0100871 * Userspace cannot change this property.
Manasi Navare40ee6fb2016-12-16 12:29:06 +0200872 * link-status:
Sean Paul716719a2018-01-08 14:55:35 -0500873 * Connector link-status property to indicate the status of link. The
874 * default value of link-status is "GOOD". If something fails during or
875 * after modeset, the kernel driver may set this to "BAD" and issue a
876 * hotplug uevent. Drivers should update this value using
Daniel Vetter97e14fb2018-07-09 10:40:08 +0200877 * drm_connector_set_link_status_property().
Dave Airlie66660d42017-10-16 05:08:09 +0100878 * non_desktop:
879 * Indicates the output should be ignored for purposes of displaying a
880 * standard desktop environment or console. This is most likely because
881 * the output device is not rectilinear.
Sean Paul24557862018-01-08 14:55:37 -0500882 * Content Protection:
883 * This property is used by userspace to request the kernel protect future
884 * content communicated over the link. When requested, kernel will apply
885 * the appropriate means of protection (most often HDCP), and use the
886 * property to tell userspace the protection is active.
887 *
888 * Drivers can set this up by calling
889 * drm_connector_attach_content_protection_property() on initialization.
890 *
891 * The value of this property can be one of the following:
892 *
Daniel Vetterbbeba092018-02-19 23:53:54 +0100893 * DRM_MODE_CONTENT_PROTECTION_UNDESIRED = 0
Sean Paul24557862018-01-08 14:55:37 -0500894 * The link is not protected, content is transmitted in the clear.
Daniel Vetterbbeba092018-02-19 23:53:54 +0100895 * DRM_MODE_CONTENT_PROTECTION_DESIRED = 1
Sean Paul24557862018-01-08 14:55:37 -0500896 * Userspace has requested content protection, but the link is not
897 * currently protected. When in this state, kernel should enable
898 * Content Protection as soon as possible.
Daniel Vetterbbeba092018-02-19 23:53:54 +0100899 * DRM_MODE_CONTENT_PROTECTION_ENABLED = 2
Sean Paul24557862018-01-08 14:55:37 -0500900 * Userspace has requested content protection, and the link is
901 * protected. Only the driver can set the property to this value.
902 * If userspace attempts to set to ENABLED, kernel will return
903 * -EINVAL.
904 *
905 * A few guidelines:
906 *
907 * - DESIRED state should be preserved until userspace de-asserts it by
908 * setting the property to UNDESIRED. This means ENABLED should only
909 * transition to UNDESIRED when the user explicitly requests it.
910 * - If the state is DESIRED, kernel should attempt to re-authenticate the
911 * link whenever possible. This includes across disable/enable, dpms,
912 * hotplug, downstream device changes, link status failures, etc..
913 * - Userspace is responsible for polling the property to determine when
914 * the value transitions from ENABLED to DESIRED. This signifies the link
915 * is no longer protected and userspace should take appropriate action
916 * (whatever that might be).
Daniel Vetter4ada6f22016-11-17 09:56:48 +0100917 *
918 * Connectors also have one standardized atomic property:
919 *
920 * CRTC_ID:
921 * Mode object ID of the &drm_crtc this connector should be connected to.
Hans de Goede8d70f392017-11-25 20:35:49 +0100922 *
923 * Connectors for LCD panels may also have one standardized property:
924 *
925 * panel orientation:
926 * On some devices the LCD panel is mounted in the casing in such a way
927 * that the up/top side of the panel does not match with the top side of
928 * the device. Userspace can use this property to check for this.
929 * Note that input coordinates from touchscreens (input devices with
930 * INPUT_PROP_DIRECT) will still map 1:1 to the actual LCD panel
931 * coordinates, so if userspace rotates the picture to adjust for
932 * the orientation it must also apply the same transformation to the
Daniel Vetterbbeba092018-02-19 23:53:54 +0100933 * touchscreen input coordinates. This property is initialized by calling
934 * drm_connector_init_panel_orientation_property().
935 *
936 * scaling mode:
937 * This property defines how a non-native mode is upscaled to the native
938 * mode of an LCD panel:
939 *
940 * None:
941 * No upscaling happens, scaling is left to the panel. Not all
942 * drivers expose this mode.
943 * Full:
944 * The output is upscaled to the full resolution of the panel,
945 * ignoring the aspect ratio.
946 * Center:
947 * No upscaling happens, the output is centered within the native
948 * resolution the panel.
949 * Full aspect:
950 * The output is upscaled to maximize either the width or height
951 * while retaining the aspect ratio.
952 *
953 * This property should be set up by calling
954 * drm_connector_attach_scaling_mode_property(). Note that drivers
955 * can also expose this property to external outputs, in which case they
956 * must support "None", which should be the default (since external screens
957 * have a built-in scaler).
Daniel Vetter4ada6f22016-11-17 09:56:48 +0100958 */
959
Daniel Vetter52217192016-08-12 22:48:50 +0200960int drm_connector_create_standard_properties(struct drm_device *dev)
961{
962 struct drm_property *prop;
963
964 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
965 DRM_MODE_PROP_IMMUTABLE,
966 "EDID", 0);
967 if (!prop)
968 return -ENOMEM;
969 dev->mode_config.edid_property = prop;
970
971 prop = drm_property_create_enum(dev, 0,
972 "DPMS", drm_dpms_enum_list,
973 ARRAY_SIZE(drm_dpms_enum_list));
974 if (!prop)
975 return -ENOMEM;
976 dev->mode_config.dpms_property = prop;
977
978 prop = drm_property_create(dev,
979 DRM_MODE_PROP_BLOB |
980 DRM_MODE_PROP_IMMUTABLE,
981 "PATH", 0);
982 if (!prop)
983 return -ENOMEM;
984 dev->mode_config.path_property = prop;
985
986 prop = drm_property_create(dev,
987 DRM_MODE_PROP_BLOB |
988 DRM_MODE_PROP_IMMUTABLE,
989 "TILE", 0);
990 if (!prop)
991 return -ENOMEM;
992 dev->mode_config.tile_property = prop;
993
Manasi Navare40ee6fb2016-12-16 12:29:06 +0200994 prop = drm_property_create_enum(dev, 0, "link-status",
995 drm_link_status_enum_list,
996 ARRAY_SIZE(drm_link_status_enum_list));
997 if (!prop)
998 return -ENOMEM;
999 dev->mode_config.link_status_property = prop;
1000
Dave Airlie66660d42017-10-16 05:08:09 +01001001 prop = drm_property_create_bool(dev, DRM_MODE_PROP_IMMUTABLE, "non-desktop");
1002 if (!prop)
1003 return -ENOMEM;
1004 dev->mode_config.non_desktop_property = prop;
1005
Daniel Vetter52217192016-08-12 22:48:50 +02001006 return 0;
1007}
1008
1009/**
1010 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1011 * @dev: DRM device
1012 *
1013 * Called by a driver the first time a DVI-I connector is made.
1014 */
1015int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1016{
1017 struct drm_property *dvi_i_selector;
1018 struct drm_property *dvi_i_subconnector;
1019
1020 if (dev->mode_config.dvi_i_select_subconnector_property)
1021 return 0;
1022
1023 dvi_i_selector =
1024 drm_property_create_enum(dev, 0,
1025 "select subconnector",
1026 drm_dvi_i_select_enum_list,
1027 ARRAY_SIZE(drm_dvi_i_select_enum_list));
1028 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1029
1030 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1031 "subconnector",
1032 drm_dvi_i_subconnector_enum_list,
1033 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
1034 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1035
1036 return 0;
1037}
1038EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1039
1040/**
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +03001041 * DOC: HDMI connector properties
1042 *
1043 * content type (HDMI specific):
1044 * Indicates content type setting to be used in HDMI infoframes to indicate
1045 * content type for the external device, so that it adjusts it's display
1046 * settings accordingly.
1047 *
1048 * The value of this property can be one of the following:
1049 *
1050 * No Data:
1051 * Content type is unknown
1052 * Graphics:
1053 * Content type is graphics
1054 * Photo:
1055 * Content type is photo
1056 * Cinema:
1057 * Content type is cinema
1058 * Game:
1059 * Content type is game
1060 *
1061 * Drivers can set up this property by calling
1062 * drm_connector_attach_content_type_property(). Decoding to
Daniel Vetterba609632018-07-02 11:10:23 +02001063 * infoframe values is done through drm_hdmi_avi_infoframe_content_type().
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +03001064 */
1065
1066/**
1067 * drm_connector_attach_content_type_property - attach content-type property
1068 * @connector: connector to attach content type property on.
1069 *
1070 * Called by a driver the first time a HDMI connector is made.
1071 */
1072int drm_connector_attach_content_type_property(struct drm_connector *connector)
1073{
1074 if (!drm_mode_create_content_type_property(connector->dev))
1075 drm_object_attach_property(&connector->base,
1076 connector->dev->mode_config.content_type_property,
1077 DRM_MODE_CONTENT_TYPE_NO_DATA);
1078 return 0;
1079}
1080EXPORT_SYMBOL(drm_connector_attach_content_type_property);
1081
1082
1083/**
1084 * drm_hdmi_avi_infoframe_content_type() - fill the HDMI AVI infoframe
1085 * content type information, based
1086 * on correspondent DRM property.
1087 * @frame: HDMI AVI infoframe
1088 * @conn_state: DRM display connector state
1089 *
1090 */
1091void drm_hdmi_avi_infoframe_content_type(struct hdmi_avi_infoframe *frame,
1092 const struct drm_connector_state *conn_state)
1093{
1094 switch (conn_state->content_type) {
1095 case DRM_MODE_CONTENT_TYPE_GRAPHICS:
1096 frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS;
1097 break;
1098 case DRM_MODE_CONTENT_TYPE_CINEMA:
1099 frame->content_type = HDMI_CONTENT_TYPE_CINEMA;
1100 break;
1101 case DRM_MODE_CONTENT_TYPE_GAME:
1102 frame->content_type = HDMI_CONTENT_TYPE_GAME;
1103 break;
1104 case DRM_MODE_CONTENT_TYPE_PHOTO:
1105 frame->content_type = HDMI_CONTENT_TYPE_PHOTO;
1106 break;
1107 default:
1108 /* Graphics is the default(0) */
1109 frame->content_type = HDMI_CONTENT_TYPE_GRAPHICS;
1110 }
1111
1112 frame->itc = conn_state->content_type != DRM_MODE_CONTENT_TYPE_NO_DATA;
1113}
1114EXPORT_SYMBOL(drm_hdmi_avi_infoframe_content_type);
1115
1116/**
Daniel Vetter52217192016-08-12 22:48:50 +02001117 * drm_create_tv_properties - create TV specific connector properties
1118 * @dev: DRM device
1119 * @num_modes: number of different TV formats (modes) supported
1120 * @modes: array of pointers to strings containing name of each format
1121 *
1122 * Called by a driver's TV initialization routine, this function creates
1123 * the TV specific connector properties for a given device. Caller is
1124 * responsible for allocating a list of format names and passing them to
1125 * this routine.
1126 */
1127int drm_mode_create_tv_properties(struct drm_device *dev,
1128 unsigned int num_modes,
1129 const char * const modes[])
1130{
1131 struct drm_property *tv_selector;
1132 struct drm_property *tv_subconnector;
1133 unsigned int i;
1134
1135 if (dev->mode_config.tv_select_subconnector_property)
1136 return 0;
1137
1138 /*
1139 * Basic connector properties
1140 */
1141 tv_selector = drm_property_create_enum(dev, 0,
1142 "select subconnector",
1143 drm_tv_select_enum_list,
1144 ARRAY_SIZE(drm_tv_select_enum_list));
1145 if (!tv_selector)
1146 goto nomem;
1147
1148 dev->mode_config.tv_select_subconnector_property = tv_selector;
1149
1150 tv_subconnector =
1151 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1152 "subconnector",
1153 drm_tv_subconnector_enum_list,
1154 ARRAY_SIZE(drm_tv_subconnector_enum_list));
1155 if (!tv_subconnector)
1156 goto nomem;
1157 dev->mode_config.tv_subconnector_property = tv_subconnector;
1158
1159 /*
1160 * Other, TV specific properties: margins & TV modes.
1161 */
1162 dev->mode_config.tv_left_margin_property =
1163 drm_property_create_range(dev, 0, "left margin", 0, 100);
1164 if (!dev->mode_config.tv_left_margin_property)
1165 goto nomem;
1166
1167 dev->mode_config.tv_right_margin_property =
1168 drm_property_create_range(dev, 0, "right margin", 0, 100);
1169 if (!dev->mode_config.tv_right_margin_property)
1170 goto nomem;
1171
1172 dev->mode_config.tv_top_margin_property =
1173 drm_property_create_range(dev, 0, "top margin", 0, 100);
1174 if (!dev->mode_config.tv_top_margin_property)
1175 goto nomem;
1176
1177 dev->mode_config.tv_bottom_margin_property =
1178 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
1179 if (!dev->mode_config.tv_bottom_margin_property)
1180 goto nomem;
1181
1182 dev->mode_config.tv_mode_property =
1183 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1184 "mode", num_modes);
1185 if (!dev->mode_config.tv_mode_property)
1186 goto nomem;
1187
1188 for (i = 0; i < num_modes; i++)
Ville Syrjälä30e9db6d2018-03-16 21:04:20 +02001189 drm_property_add_enum(dev->mode_config.tv_mode_property,
Daniel Vetter52217192016-08-12 22:48:50 +02001190 i, modes[i]);
1191
1192 dev->mode_config.tv_brightness_property =
1193 drm_property_create_range(dev, 0, "brightness", 0, 100);
1194 if (!dev->mode_config.tv_brightness_property)
1195 goto nomem;
1196
1197 dev->mode_config.tv_contrast_property =
1198 drm_property_create_range(dev, 0, "contrast", 0, 100);
1199 if (!dev->mode_config.tv_contrast_property)
1200 goto nomem;
1201
1202 dev->mode_config.tv_flicker_reduction_property =
1203 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
1204 if (!dev->mode_config.tv_flicker_reduction_property)
1205 goto nomem;
1206
1207 dev->mode_config.tv_overscan_property =
1208 drm_property_create_range(dev, 0, "overscan", 0, 100);
1209 if (!dev->mode_config.tv_overscan_property)
1210 goto nomem;
1211
1212 dev->mode_config.tv_saturation_property =
1213 drm_property_create_range(dev, 0, "saturation", 0, 100);
1214 if (!dev->mode_config.tv_saturation_property)
1215 goto nomem;
1216
1217 dev->mode_config.tv_hue_property =
1218 drm_property_create_range(dev, 0, "hue", 0, 100);
1219 if (!dev->mode_config.tv_hue_property)
1220 goto nomem;
1221
1222 return 0;
1223nomem:
1224 return -ENOMEM;
1225}
1226EXPORT_SYMBOL(drm_mode_create_tv_properties);
1227
1228/**
1229 * drm_mode_create_scaling_mode_property - create scaling mode property
1230 * @dev: DRM device
1231 *
1232 * Called by a driver the first time it's needed, must be attached to desired
1233 * connectors.
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +02001234 *
1235 * Atomic drivers should use drm_connector_attach_scaling_mode_property()
1236 * instead to correctly assign &drm_connector_state.picture_aspect_ratio
1237 * in the atomic state.
Daniel Vetter52217192016-08-12 22:48:50 +02001238 */
1239int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1240{
1241 struct drm_property *scaling_mode;
1242
1243 if (dev->mode_config.scaling_mode_property)
1244 return 0;
1245
1246 scaling_mode =
1247 drm_property_create_enum(dev, 0, "scaling mode",
1248 drm_scaling_mode_enum_list,
1249 ARRAY_SIZE(drm_scaling_mode_enum_list));
1250
1251 dev->mode_config.scaling_mode_property = scaling_mode;
1252
1253 return 0;
1254}
1255EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1256
1257/**
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +02001258 * drm_connector_attach_scaling_mode_property - attach atomic scaling mode property
1259 * @connector: connector to attach scaling mode property on.
1260 * @scaling_mode_mask: or'ed mask of BIT(%DRM_MODE_SCALE_\*).
1261 *
1262 * This is used to add support for scaling mode to atomic drivers.
1263 * The scaling mode will be set to &drm_connector_state.picture_aspect_ratio
1264 * and can be used from &drm_connector_helper_funcs->atomic_check for validation.
1265 *
1266 * This is the atomic version of drm_mode_create_scaling_mode_property().
1267 *
1268 * Returns:
1269 * Zero on success, negative errno on failure.
1270 */
1271int drm_connector_attach_scaling_mode_property(struct drm_connector *connector,
1272 u32 scaling_mode_mask)
1273{
1274 struct drm_device *dev = connector->dev;
1275 struct drm_property *scaling_mode_property;
Ville Syrjälä30e9db6d2018-03-16 21:04:20 +02001276 int i;
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +02001277 const unsigned valid_scaling_mode_mask =
1278 (1U << ARRAY_SIZE(drm_scaling_mode_enum_list)) - 1;
1279
1280 if (WARN_ON(hweight32(scaling_mode_mask) < 2 ||
1281 scaling_mode_mask & ~valid_scaling_mode_mask))
1282 return -EINVAL;
1283
1284 scaling_mode_property =
1285 drm_property_create(dev, DRM_MODE_PROP_ENUM, "scaling mode",
1286 hweight32(scaling_mode_mask));
1287
1288 if (!scaling_mode_property)
1289 return -ENOMEM;
1290
1291 for (i = 0; i < ARRAY_SIZE(drm_scaling_mode_enum_list); i++) {
1292 int ret;
1293
1294 if (!(BIT(i) & scaling_mode_mask))
1295 continue;
1296
Ville Syrjälä30e9db6d2018-03-16 21:04:20 +02001297 ret = drm_property_add_enum(scaling_mode_property,
Maarten Lankhorst8f6e1e22017-05-01 15:37:54 +02001298 drm_scaling_mode_enum_list[i].type,
1299 drm_scaling_mode_enum_list[i].name);
1300
1301 if (ret) {
1302 drm_property_destroy(dev, scaling_mode_property);
1303
1304 return ret;
1305 }
1306 }
1307
1308 drm_object_attach_property(&connector->base,
1309 scaling_mode_property, 0);
1310
1311 connector->scaling_mode_property = scaling_mode_property;
1312
1313 return 0;
1314}
1315EXPORT_SYMBOL(drm_connector_attach_scaling_mode_property);
1316
1317/**
Sean Paul24557862018-01-08 14:55:37 -05001318 * drm_connector_attach_content_protection_property - attach content protection
1319 * property
1320 *
1321 * @connector: connector to attach CP property on.
1322 *
1323 * This is used to add support for content protection on select connectors.
1324 * Content Protection is intentionally vague to allow for different underlying
1325 * technologies, however it is most implemented by HDCP.
1326 *
1327 * The content protection will be set to &drm_connector_state.content_protection
1328 *
1329 * Returns:
1330 * Zero on success, negative errno on failure.
1331 */
1332int drm_connector_attach_content_protection_property(
1333 struct drm_connector *connector)
1334{
1335 struct drm_device *dev = connector->dev;
1336 struct drm_property *prop;
1337
1338 prop = drm_property_create_enum(dev, 0, "Content Protection",
1339 drm_cp_enum_list,
1340 ARRAY_SIZE(drm_cp_enum_list));
1341 if (!prop)
1342 return -ENOMEM;
1343
1344 drm_object_attach_property(&connector->base, prop,
1345 DRM_MODE_CONTENT_PROTECTION_UNDESIRED);
1346
1347 connector->content_protection_property = prop;
1348
1349 return 0;
1350}
1351EXPORT_SYMBOL(drm_connector_attach_content_protection_property);
1352
1353/**
Daniel Vetter52217192016-08-12 22:48:50 +02001354 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1355 * @dev: DRM device
1356 *
1357 * Called by a driver the first time it's needed, must be attached to desired
1358 * connectors.
1359 *
1360 * Returns:
1361 * Zero on success, negative errno on failure.
1362 */
1363int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1364{
1365 if (dev->mode_config.aspect_ratio_property)
1366 return 0;
1367
1368 dev->mode_config.aspect_ratio_property =
1369 drm_property_create_enum(dev, 0, "aspect ratio",
1370 drm_aspect_ratio_enum_list,
1371 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1372
1373 if (dev->mode_config.aspect_ratio_property == NULL)
1374 return -ENOMEM;
1375
1376 return 0;
1377}
1378EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1379
1380/**
Stanislav Lisovskiy50525c32018-05-15 16:59:27 +03001381 * drm_mode_create_content_type_property - create content type property
1382 * @dev: DRM device
1383 *
1384 * Called by a driver the first time it's needed, must be attached to desired
1385 * connectors.
1386 *
1387 * Returns:
1388 * Zero on success, negative errno on failure.
1389 */
1390int drm_mode_create_content_type_property(struct drm_device *dev)
1391{
1392 if (dev->mode_config.content_type_property)
1393 return 0;
1394
1395 dev->mode_config.content_type_property =
1396 drm_property_create_enum(dev, 0, "content type",
1397 drm_content_type_enum_list,
1398 ARRAY_SIZE(drm_content_type_enum_list));
1399
1400 if (dev->mode_config.content_type_property == NULL)
1401 return -ENOMEM;
1402
1403 return 0;
1404}
1405EXPORT_SYMBOL(drm_mode_create_content_type_property);
1406
1407/**
Daniel Vetter52217192016-08-12 22:48:50 +02001408 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1409 * @dev: DRM device
1410 *
1411 * Create the the suggested x/y offset property for connectors.
1412 */
1413int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1414{
1415 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1416 return 0;
1417
1418 dev->mode_config.suggested_x_property =
1419 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1420
1421 dev->mode_config.suggested_y_property =
1422 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1423
1424 if (dev->mode_config.suggested_x_property == NULL ||
1425 dev->mode_config.suggested_y_property == NULL)
1426 return -ENOMEM;
1427 return 0;
1428}
1429EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1430
1431/**
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001432 * drm_connector_set_path_property - set tile property on connector
Daniel Vetter52217192016-08-12 22:48:50 +02001433 * @connector: connector to set property on.
1434 * @path: path to use for property; must not be NULL.
1435 *
1436 * This creates a property to expose to userspace to specify a
1437 * connector path. This is mainly used for DisplayPort MST where
1438 * connectors have a topology and we want to allow userspace to give
1439 * them more meaningful names.
1440 *
1441 * Returns:
1442 * Zero on success, negative errno on failure.
1443 */
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001444int drm_connector_set_path_property(struct drm_connector *connector,
1445 const char *path)
Daniel Vetter52217192016-08-12 22:48:50 +02001446{
1447 struct drm_device *dev = connector->dev;
1448 int ret;
1449
1450 ret = drm_property_replace_global_blob(dev,
1451 &connector->path_blob_ptr,
1452 strlen(path) + 1,
1453 path,
1454 &connector->base,
1455 dev->mode_config.path_property);
1456 return ret;
1457}
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001458EXPORT_SYMBOL(drm_connector_set_path_property);
Daniel Vetter52217192016-08-12 22:48:50 +02001459
1460/**
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001461 * drm_connector_set_tile_property - set tile property on connector
Daniel Vetter52217192016-08-12 22:48:50 +02001462 * @connector: connector to set property on.
1463 *
1464 * This looks up the tile information for a connector, and creates a
1465 * property for userspace to parse if it exists. The property is of
1466 * the form of 8 integers using ':' as a separator.
1467 *
1468 * Returns:
1469 * Zero on success, errno on failure.
1470 */
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001471int drm_connector_set_tile_property(struct drm_connector *connector)
Daniel Vetter52217192016-08-12 22:48:50 +02001472{
1473 struct drm_device *dev = connector->dev;
1474 char tile[256];
1475 int ret;
1476
1477 if (!connector->has_tile) {
1478 ret = drm_property_replace_global_blob(dev,
1479 &connector->tile_blob_ptr,
1480 0,
1481 NULL,
1482 &connector->base,
1483 dev->mode_config.tile_property);
1484 return ret;
1485 }
1486
1487 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
1488 connector->tile_group->id, connector->tile_is_single_monitor,
1489 connector->num_h_tile, connector->num_v_tile,
1490 connector->tile_h_loc, connector->tile_v_loc,
1491 connector->tile_h_size, connector->tile_v_size);
1492
1493 ret = drm_property_replace_global_blob(dev,
1494 &connector->tile_blob_ptr,
1495 strlen(tile) + 1,
1496 tile,
1497 &connector->base,
1498 dev->mode_config.tile_property);
1499 return ret;
1500}
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001501EXPORT_SYMBOL(drm_connector_set_tile_property);
Daniel Vetter52217192016-08-12 22:48:50 +02001502
1503/**
Daniel Vetterc555f022018-07-09 10:40:06 +02001504 * drm_connector_update_edid_property - update the edid property of a connector
Daniel Vetter52217192016-08-12 22:48:50 +02001505 * @connector: drm connector
1506 * @edid: new value of the edid property
1507 *
1508 * This function creates a new blob modeset object and assigns its id to the
1509 * connector's edid property.
1510 *
1511 * Returns:
1512 * Zero on success, negative errno on failure.
1513 */
Daniel Vetterc555f022018-07-09 10:40:06 +02001514int drm_connector_update_edid_property(struct drm_connector *connector,
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001515 const struct edid *edid)
Daniel Vetter52217192016-08-12 22:48:50 +02001516{
1517 struct drm_device *dev = connector->dev;
1518 size_t size = 0;
1519 int ret;
1520
1521 /* ignore requests to set edid when overridden */
1522 if (connector->override_edid)
1523 return 0;
1524
1525 if (edid)
1526 size = EDID_LENGTH * (1 + edid->extensions);
1527
Keith Packard170178f2017-12-13 00:44:26 -08001528 /* Set the display info, using edid if available, otherwise
1529 * reseting the values to defaults. This duplicates the work
1530 * done in drm_add_edid_modes, but that function is not
1531 * consistently called before this one in all drivers and the
1532 * computation is cheap enough that it seems better to
1533 * duplicate it rather than attempt to ensure some arbitrary
1534 * ordering of calls.
1535 */
1536 if (edid)
1537 drm_add_display_info(connector, edid);
1538 else
1539 drm_reset_display_info(connector);
1540
Dave Airlie66660d42017-10-16 05:08:09 +01001541 drm_object_property_set_value(&connector->base,
1542 dev->mode_config.non_desktop_property,
1543 connector->display_info.non_desktop);
1544
Daniel Vetter52217192016-08-12 22:48:50 +02001545 ret = drm_property_replace_global_blob(dev,
1546 &connector->edid_blob_ptr,
1547 size,
1548 edid,
1549 &connector->base,
1550 dev->mode_config.edid_property);
1551 return ret;
1552}
Daniel Vetterc555f022018-07-09 10:40:06 +02001553EXPORT_SYMBOL(drm_connector_update_edid_property);
Daniel Vetter52217192016-08-12 22:48:50 +02001554
Manasi Navare40ee6fb2016-12-16 12:29:06 +02001555/**
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001556 * drm_connector_set_link_status_property - Set link status property of a connector
Manasi Navare40ee6fb2016-12-16 12:29:06 +02001557 * @connector: drm connector
1558 * @link_status: new value of link status property (0: Good, 1: Bad)
1559 *
1560 * In usual working scenario, this link status property will always be set to
1561 * "GOOD". If something fails during or after a mode set, the kernel driver
1562 * may set this link status property to "BAD". The caller then needs to send a
1563 * hotplug uevent for userspace to re-check the valid modes through
1564 * GET_CONNECTOR_IOCTL and retry modeset.
1565 *
1566 * Note: Drivers cannot rely on userspace to support this property and
1567 * issue a modeset. As such, they may choose to handle issues (like
1568 * re-training a link) without userspace's intervention.
1569 *
1570 * The reason for adding this property is to handle link training failures, but
1571 * it is not limited to DP or link training. For example, if we implement
1572 * asynchronous setcrtc, this property can be used to report any failures in that.
1573 */
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001574void drm_connector_set_link_status_property(struct drm_connector *connector,
1575 uint64_t link_status)
Manasi Navare40ee6fb2016-12-16 12:29:06 +02001576{
1577 struct drm_device *dev = connector->dev;
1578
1579 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
1580 connector->state->link_status = link_status;
1581 drm_modeset_unlock(&dev->mode_config.connection_mutex);
1582}
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001583EXPORT_SYMBOL(drm_connector_set_link_status_property);
Manasi Navare40ee6fb2016-12-16 12:29:06 +02001584
Hans de Goede8d70f392017-11-25 20:35:49 +01001585/**
1586 * drm_connector_init_panel_orientation_property -
1587 * initialize the connecters panel_orientation property
1588 * @connector: connector for which to init the panel-orientation property.
1589 * @width: width in pixels of the panel, used for panel quirk detection
1590 * @height: height in pixels of the panel, used for panel quirk detection
1591 *
1592 * This function should only be called for built-in panels, after setting
1593 * connector->display_info.panel_orientation first (if known).
1594 *
1595 * This function will check for platform specific (e.g. DMI based) quirks
1596 * overriding display_info.panel_orientation first, then if panel_orientation
1597 * is not DRM_MODE_PANEL_ORIENTATION_UNKNOWN it will attach the
1598 * "panel orientation" property to the connector.
1599 *
1600 * Returns:
1601 * Zero on success, negative errno on failure.
1602 */
1603int drm_connector_init_panel_orientation_property(
1604 struct drm_connector *connector, int width, int height)
1605{
1606 struct drm_device *dev = connector->dev;
1607 struct drm_display_info *info = &connector->display_info;
1608 struct drm_property *prop;
1609 int orientation_quirk;
1610
1611 orientation_quirk = drm_get_panel_orientation_quirk(width, height);
1612 if (orientation_quirk != DRM_MODE_PANEL_ORIENTATION_UNKNOWN)
1613 info->panel_orientation = orientation_quirk;
1614
1615 if (info->panel_orientation == DRM_MODE_PANEL_ORIENTATION_UNKNOWN)
1616 return 0;
1617
1618 prop = dev->mode_config.panel_orientation_property;
1619 if (!prop) {
1620 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1621 "panel orientation",
1622 drm_panel_orientation_enum_list,
1623 ARRAY_SIZE(drm_panel_orientation_enum_list));
1624 if (!prop)
1625 return -ENOMEM;
1626
1627 dev->mode_config.panel_orientation_property = prop;
1628 }
1629
1630 drm_object_attach_property(&connector->base, prop,
1631 info->panel_orientation);
1632 return 0;
1633}
1634EXPORT_SYMBOL(drm_connector_init_panel_orientation_property);
1635
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001636int drm_connector_set_obj_prop(struct drm_mode_object *obj,
Daniel Vetter52217192016-08-12 22:48:50 +02001637 struct drm_property *property,
1638 uint64_t value)
1639{
1640 int ret = -EINVAL;
1641 struct drm_connector *connector = obj_to_connector(obj);
1642
1643 /* Do DPMS ourselves */
1644 if (property == connector->dev->mode_config.dpms_property) {
1645 ret = (*connector->funcs->dpms)(connector, (int)value);
1646 } else if (connector->funcs->set_property)
1647 ret = connector->funcs->set_property(connector, property, value);
1648
Daniel Vetter144a7992017-07-25 14:02:04 +02001649 if (!ret)
Daniel Vetter52217192016-08-12 22:48:50 +02001650 drm_object_property_set_value(&connector->base, property, value);
1651 return ret;
1652}
1653
Daniel Vetter97e14fb2018-07-09 10:40:08 +02001654int drm_connector_property_set_ioctl(struct drm_device *dev,
1655 void *data, struct drm_file *file_priv)
Daniel Vetter52217192016-08-12 22:48:50 +02001656{
1657 struct drm_mode_connector_set_property *conn_set_prop = data;
1658 struct drm_mode_obj_set_property obj_set_prop = {
1659 .value = conn_set_prop->value,
1660 .prop_id = conn_set_prop->prop_id,
1661 .obj_id = conn_set_prop->connector_id,
1662 .obj_type = DRM_MODE_OBJECT_CONNECTOR
1663 };
1664
1665 /* It does all the locking and checking we need */
1666 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
1667}
1668
1669static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
1670{
1671 /* For atomic drivers only state objects are synchronously updated and
1672 * protected by modeset locks, so check those first. */
1673 if (connector->state)
1674 return connector->state->best_encoder;
1675 return connector->encoder;
1676}
1677
Ankit Nautiyalc3ff0cd2018-05-08 16:39:43 +05301678static bool
1679drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1680 const struct list_head *export_list,
1681 const struct drm_file *file_priv)
Daniel Vetter52217192016-08-12 22:48:50 +02001682{
1683 /*
1684 * If user-space hasn't configured the driver to expose the stereo 3D
1685 * modes, don't expose them.
1686 */
1687 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1688 return false;
Ankit Nautiyalc3ff0cd2018-05-08 16:39:43 +05301689 /*
1690 * If user-space hasn't configured the driver to expose the modes
1691 * with aspect-ratio, don't expose them. However if such a mode
1692 * is unique, let it be exposed, but reset the aspect-ratio flags
1693 * while preparing the list of user-modes.
1694 */
1695 if (!file_priv->aspect_ratio_allowed) {
1696 struct drm_display_mode *mode_itr;
1697
1698 list_for_each_entry(mode_itr, export_list, export_head)
1699 if (drm_mode_match(mode_itr, mode,
1700 DRM_MODE_MATCH_TIMINGS |
1701 DRM_MODE_MATCH_CLOCK |
1702 DRM_MODE_MATCH_FLAGS |
1703 DRM_MODE_MATCH_3D_FLAGS))
1704 return false;
1705 }
Daniel Vetter52217192016-08-12 22:48:50 +02001706
1707 return true;
1708}
1709
1710int drm_mode_getconnector(struct drm_device *dev, void *data,
1711 struct drm_file *file_priv)
1712{
1713 struct drm_mode_get_connector *out_resp = data;
1714 struct drm_connector *connector;
1715 struct drm_encoder *encoder;
1716 struct drm_display_mode *mode;
1717 int mode_count = 0;
1718 int encoders_count = 0;
1719 int ret = 0;
1720 int copied = 0;
1721 int i;
1722 struct drm_mode_modeinfo u_mode;
1723 struct drm_mode_modeinfo __user *mode_ptr;
1724 uint32_t __user *encoder_ptr;
Ankit Nautiyalc3ff0cd2018-05-08 16:39:43 +05301725 LIST_HEAD(export_list);
Daniel Vetter52217192016-08-12 22:48:50 +02001726
1727 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1728 return -EINVAL;
1729
1730 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1731
Keith Packard418da172017-03-14 23:25:07 -07001732 connector = drm_connector_lookup(dev, file_priv, out_resp->connector_id);
Daniel Vetter91eefc02016-12-14 00:08:10 +01001733 if (!connector)
1734 return -ENOENT;
Daniel Vetter52217192016-08-12 22:48:50 +02001735
Ville Syrjälä83aefbb2018-06-28 16:13:09 +03001736 drm_connector_for_each_possible_encoder(connector, encoder, i)
1737 encoders_count++;
Daniel Vetter91eefc02016-12-14 00:08:10 +01001738
1739 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
1740 copied = 0;
1741 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Ville Syrjälä83aefbb2018-06-28 16:13:09 +03001742
1743 drm_connector_for_each_possible_encoder(connector, encoder, i) {
1744 if (put_user(encoder->base.id, encoder_ptr + copied)) {
1745 ret = -EFAULT;
1746 goto out;
Daniel Vetter91eefc02016-12-14 00:08:10 +01001747 }
Ville Syrjälä83aefbb2018-06-28 16:13:09 +03001748 copied++;
Daniel Vetter91eefc02016-12-14 00:08:10 +01001749 }
1750 }
1751 out_resp->count_encoders = encoders_count;
1752
1753 out_resp->connector_id = connector->base.id;
1754 out_resp->connector_type = connector->connector_type;
1755 out_resp->connector_type_id = connector->connector_type_id;
1756
1757 mutex_lock(&dev->mode_config.mutex);
1758 if (out_resp->count_modes == 0) {
1759 connector->funcs->fill_modes(connector,
1760 dev->mode_config.max_width,
1761 dev->mode_config.max_height);
1762 }
1763
1764 out_resp->mm_width = connector->display_info.width_mm;
1765 out_resp->mm_height = connector->display_info.height_mm;
1766 out_resp->subpixel = connector->display_info.subpixel_order;
1767 out_resp->connection = connector->status;
1768
1769 /* delayed so we get modes regardless of pre-fill_modes state */
1770 list_for_each_entry(mode, &connector->modes, head)
Ankit Nautiyalc3ff0cd2018-05-08 16:39:43 +05301771 if (drm_mode_expose_to_userspace(mode, &export_list,
1772 file_priv)) {
1773 list_add_tail(&mode->export_head, &export_list);
Daniel Vetter91eefc02016-12-14 00:08:10 +01001774 mode_count++;
Ankit Nautiyalc3ff0cd2018-05-08 16:39:43 +05301775 }
Daniel Vetter91eefc02016-12-14 00:08:10 +01001776
Daniel Vetter52217192016-08-12 22:48:50 +02001777 /*
1778 * This ioctl is called twice, once to determine how much space is
1779 * needed, and the 2nd time to fill it.
Ankit Nautiyalc3ff0cd2018-05-08 16:39:43 +05301780 * The modes that need to be exposed to the user are maintained in the
1781 * 'export_list'. When the ioctl is called first time to determine the,
1782 * space, the export_list gets filled, to find the no.of modes. In the
1783 * 2nd time, the user modes are filled, one by one from the export_list.
Daniel Vetter52217192016-08-12 22:48:50 +02001784 */
1785 if ((out_resp->count_modes >= mode_count) && mode_count) {
1786 copied = 0;
1787 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Ankit Nautiyalc3ff0cd2018-05-08 16:39:43 +05301788 list_for_each_entry(mode, &export_list, export_head) {
Daniel Vetter52217192016-08-12 22:48:50 +02001789 drm_mode_convert_to_umode(&u_mode, mode);
Ankit Nautiyalc3ff0cd2018-05-08 16:39:43 +05301790 /*
1791 * Reset aspect ratio flags of user-mode, if modes with
1792 * aspect-ratio are not supported.
1793 */
1794 if (!file_priv->aspect_ratio_allowed)
1795 u_mode.flags &= ~DRM_MODE_FLAG_PIC_AR_MASK;
Daniel Vetter52217192016-08-12 22:48:50 +02001796 if (copy_to_user(mode_ptr + copied,
1797 &u_mode, sizeof(u_mode))) {
1798 ret = -EFAULT;
Daniel Vettere94ac352017-06-20 22:28:37 +02001799 mutex_unlock(&dev->mode_config.mutex);
1800
Daniel Vetter52217192016-08-12 22:48:50 +02001801 goto out;
1802 }
1803 copied++;
1804 }
1805 }
1806 out_resp->count_modes = mode_count;
Daniel Vetter52217192016-08-12 22:48:50 +02001807 mutex_unlock(&dev->mode_config.mutex);
Daniel Vettere94ac352017-06-20 22:28:37 +02001808
1809 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
1810 encoder = drm_connector_get_encoder(connector);
1811 if (encoder)
1812 out_resp->encoder_id = encoder->base.id;
1813 else
1814 out_resp->encoder_id = 0;
1815
1816 /* Only grab properties after probing, to make sure EDID and other
1817 * properties reflect the latest status. */
1818 ret = drm_mode_object_get_properties(&connector->base, file_priv->atomic,
1819 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
1820 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
1821 &out_resp->count_props);
1822 drm_modeset_unlock(&dev->mode_config.connection_mutex);
1823
1824out:
Thierry Redingad093602017-02-28 15:46:39 +01001825 drm_connector_put(connector);
Daniel Vetter52217192016-08-12 22:48:50 +02001826
1827 return ret;
1828}
1829
Daniel Vetter9498c192016-11-14 12:58:24 +01001830
1831/**
1832 * DOC: Tile group
1833 *
1834 * Tile groups are used to represent tiled monitors with a unique integer
1835 * identifier. Tiled monitors using DisplayID v1.3 have a unique 8-byte handle,
1836 * we store this in a tile group, so we have a common identifier for all tiles
1837 * in a monitor group. The property is called "TILE". Drivers can manage tile
1838 * groups using drm_mode_create_tile_group(), drm_mode_put_tile_group() and
1839 * drm_mode_get_tile_group(). But this is only needed for internal panels where
1840 * the tile group information is exposed through a non-standard way.
1841 */
1842
1843static void drm_tile_group_free(struct kref *kref)
1844{
1845 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
1846 struct drm_device *dev = tg->dev;
1847 mutex_lock(&dev->mode_config.idr_mutex);
1848 idr_remove(&dev->mode_config.tile_idr, tg->id);
1849 mutex_unlock(&dev->mode_config.idr_mutex);
1850 kfree(tg);
1851}
1852
1853/**
1854 * drm_mode_put_tile_group - drop a reference to a tile group.
1855 * @dev: DRM device
1856 * @tg: tile group to drop reference to.
1857 *
1858 * drop reference to tile group and free if 0.
1859 */
1860void drm_mode_put_tile_group(struct drm_device *dev,
1861 struct drm_tile_group *tg)
1862{
1863 kref_put(&tg->refcount, drm_tile_group_free);
1864}
1865EXPORT_SYMBOL(drm_mode_put_tile_group);
1866
1867/**
1868 * drm_mode_get_tile_group - get a reference to an existing tile group
1869 * @dev: DRM device
1870 * @topology: 8-bytes unique per monitor.
1871 *
1872 * Use the unique bytes to get a reference to an existing tile group.
1873 *
1874 * RETURNS:
1875 * tile group or NULL if not found.
1876 */
1877struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
1878 char topology[8])
1879{
1880 struct drm_tile_group *tg;
1881 int id;
1882 mutex_lock(&dev->mode_config.idr_mutex);
1883 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
1884 if (!memcmp(tg->group_data, topology, 8)) {
1885 if (!kref_get_unless_zero(&tg->refcount))
1886 tg = NULL;
1887 mutex_unlock(&dev->mode_config.idr_mutex);
1888 return tg;
1889 }
1890 }
1891 mutex_unlock(&dev->mode_config.idr_mutex);
1892 return NULL;
1893}
1894EXPORT_SYMBOL(drm_mode_get_tile_group);
1895
1896/**
1897 * drm_mode_create_tile_group - create a tile group from a displayid description
1898 * @dev: DRM device
1899 * @topology: 8-bytes unique per monitor.
1900 *
1901 * Create a tile group for the unique monitor, and get a unique
1902 * identifier for the tile group.
1903 *
1904 * RETURNS:
1905 * new tile group or error.
1906 */
1907struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
1908 char topology[8])
1909{
1910 struct drm_tile_group *tg;
1911 int ret;
1912
1913 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
1914 if (!tg)
1915 return ERR_PTR(-ENOMEM);
1916
1917 kref_init(&tg->refcount);
1918 memcpy(tg->group_data, topology, 8);
1919 tg->dev = dev;
1920
1921 mutex_lock(&dev->mode_config.idr_mutex);
1922 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
1923 if (ret >= 0) {
1924 tg->id = ret;
1925 } else {
1926 kfree(tg);
1927 tg = ERR_PTR(ret);
1928 }
1929
1930 mutex_unlock(&dev->mode_config.idr_mutex);
1931 return tg;
1932}
1933EXPORT_SYMBOL(drm_mode_create_tile_group);