]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/drm_connector.c
drm/nouveau: s/mem/reg/ for struct ttm_mem_reg variables
[karo-tx-linux.git] / drivers / gpu / drm / drm_connector.c
1 /*
2  * Copyright (c) 2016 Intel Corporation
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that copyright
7  * notice and this permission notice appear in supporting documentation, and
8  * that the name of the copyright holders not be used in advertising or
9  * publicity pertaining to distribution of the software without specific,
10  * written prior permission.  The copyright holders make no representations
11  * about the suitability of this software for any purpose.  It is provided "as
12  * is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20  * OF THIS SOFTWARE.
21  */
22
23 #include <drm/drmP.h>
24 #include <drm/drm_connector.h>
25 #include <drm/drm_edid.h>
26 #include <drm/drm_encoder.h>
27
28 #include "drm_crtc_internal.h"
29 #include "drm_internal.h"
30
31 /**
32  * DOC: overview
33  *
34  * In DRM connectors are the general abstraction for display sinks, and include
35  * als fixed panels or anything else that can display pixels in some form. As
36  * opposed to all other KMS objects representing hardware (like CRTC, encoder or
37  * plane abstractions) connectors can be hotplugged and unplugged at runtime.
38  * Hence they are reference-counted using drm_connector_reference() and
39  * drm_connector_unreference().
40  *
41  * KMS driver must create, initialize, register and attach at a &struct
42  * drm_connector for each such sink. The instance is created as other KMS
43  * objects and initialized by setting the following fields. The connector is
44  * initialized with a call to drm_connector_init() with a pointer to the
45  * &struct drm_connector_funcs and a connector type, and then exposed to
46  * userspace with a call to drm_connector_register().
47  *
48  * Connectors must be attached to an encoder to be used. For devices that map
49  * connectors to encoders 1:1, the connector should be attached at
50  * initialization time with a call to drm_mode_connector_attach_encoder(). The
51  * driver must also set the &drm_connector.encoder field to point to the
52  * attached encoder.
53  *
54  * For connectors which are not fixed (like built-in panels) the driver needs to
55  * support hotplug notifications. The simplest way to do that is by using the
56  * probe helpers, see drm_kms_helper_poll_init() for connectors which don't have
57  * hardware support for hotplug interrupts. Connectors with hardware hotplug
58  * support can instead use e.g. drm_helper_hpd_irq_event().
59  */
60
61 struct drm_conn_prop_enum_list {
62         int type;
63         const char *name;
64         struct ida ida;
65 };
66
67 /*
68  * Connector and encoder types.
69  */
70 static struct drm_conn_prop_enum_list drm_connector_enum_list[] = {
71         { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
72         { DRM_MODE_CONNECTOR_VGA, "VGA" },
73         { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
74         { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
75         { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
76         { DRM_MODE_CONNECTOR_Composite, "Composite" },
77         { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
78         { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
79         { DRM_MODE_CONNECTOR_Component, "Component" },
80         { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
81         { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
82         { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
83         { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
84         { DRM_MODE_CONNECTOR_TV, "TV" },
85         { DRM_MODE_CONNECTOR_eDP, "eDP" },
86         { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
87         { DRM_MODE_CONNECTOR_DSI, "DSI" },
88         { DRM_MODE_CONNECTOR_DPI, "DPI" },
89 };
90
91 void drm_connector_ida_init(void)
92 {
93         int i;
94
95         for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
96                 ida_init(&drm_connector_enum_list[i].ida);
97 }
98
99 void drm_connector_ida_destroy(void)
100 {
101         int i;
102
103         for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
104                 ida_destroy(&drm_connector_enum_list[i].ida);
105 }
106
107 /**
108  * drm_connector_get_cmdline_mode - reads the user's cmdline mode
109  * @connector: connector to quwery
110  *
111  * The kernel supports per-connector configuration of its consoles through
112  * use of the video= parameter. This function parses that option and
113  * extracts the user's specified mode (or enable/disable status) for a
114  * particular connector. This is typically only used during the early fbdev
115  * setup.
116  */
117 static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
118 {
119         struct drm_cmdline_mode *mode = &connector->cmdline_mode;
120         char *option = NULL;
121
122         if (fb_get_options(connector->name, &option))
123                 return;
124
125         if (!drm_mode_parse_command_line_for_connector(option,
126                                                        connector,
127                                                        mode))
128                 return;
129
130         if (mode->force) {
131                 const char *s;
132
133                 switch (mode->force) {
134                 case DRM_FORCE_OFF:
135                         s = "OFF";
136                         break;
137                 case DRM_FORCE_ON_DIGITAL:
138                         s = "ON - dig";
139                         break;
140                 default:
141                 case DRM_FORCE_ON:
142                         s = "ON";
143                         break;
144                 }
145
146                 DRM_INFO("forcing %s connector %s\n", connector->name, s);
147                 connector->force = mode->force;
148         }
149
150         DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
151                       connector->name,
152                       mode->xres, mode->yres,
153                       mode->refresh_specified ? mode->refresh : 60,
154                       mode->rb ? " reduced blanking" : "",
155                       mode->margins ? " with margins" : "",
156                       mode->interlace ?  " interlaced" : "");
157 }
158
159 static void drm_connector_free(struct kref *kref)
160 {
161         struct drm_connector *connector =
162                 container_of(kref, struct drm_connector, base.refcount);
163         struct drm_device *dev = connector->dev;
164
165         drm_mode_object_unregister(dev, &connector->base);
166         connector->funcs->destroy(connector);
167 }
168
169 /**
170  * drm_connector_init - Init a preallocated connector
171  * @dev: DRM device
172  * @connector: the connector to init
173  * @funcs: callbacks for this connector
174  * @connector_type: user visible type of the connector
175  *
176  * Initialises a preallocated connector. Connectors should be
177  * subclassed as part of driver connector objects.
178  *
179  * Returns:
180  * Zero on success, error code on failure.
181  */
182 int drm_connector_init(struct drm_device *dev,
183                        struct drm_connector *connector,
184                        const struct drm_connector_funcs *funcs,
185                        int connector_type)
186 {
187         struct drm_mode_config *config = &dev->mode_config;
188         int ret;
189         struct ida *connector_ida =
190                 &drm_connector_enum_list[connector_type].ida;
191
192         ret = drm_mode_object_get_reg(dev, &connector->base,
193                                       DRM_MODE_OBJECT_CONNECTOR,
194                                       false, drm_connector_free);
195         if (ret)
196                 return ret;
197
198         connector->base.properties = &connector->properties;
199         connector->dev = dev;
200         connector->funcs = funcs;
201
202         ret = ida_simple_get(&config->connector_ida, 0, 0, GFP_KERNEL);
203         if (ret < 0)
204                 goto out_put;
205         connector->index = ret;
206         ret = 0;
207
208         connector->connector_type = connector_type;
209         connector->connector_type_id =
210                 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
211         if (connector->connector_type_id < 0) {
212                 ret = connector->connector_type_id;
213                 goto out_put_id;
214         }
215         connector->name =
216                 kasprintf(GFP_KERNEL, "%s-%d",
217                           drm_connector_enum_list[connector_type].name,
218                           connector->connector_type_id);
219         if (!connector->name) {
220                 ret = -ENOMEM;
221                 goto out_put_type_id;
222         }
223
224         INIT_LIST_HEAD(&connector->probed_modes);
225         INIT_LIST_HEAD(&connector->modes);
226         mutex_init(&connector->mutex);
227         connector->edid_blob_ptr = NULL;
228         connector->status = connector_status_unknown;
229
230         drm_connector_get_cmdline_mode(connector);
231
232         /* We should add connectors at the end to avoid upsetting the connector
233          * index too much. */
234         spin_lock_irq(&config->connector_list_lock);
235         list_add_tail(&connector->head, &config->connector_list);
236         config->num_connector++;
237         spin_unlock_irq(&config->connector_list_lock);
238
239         if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
240                 drm_object_attach_property(&connector->base,
241                                               config->edid_property,
242                                               0);
243
244         drm_object_attach_property(&connector->base,
245                                       config->dpms_property, 0);
246
247         if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
248                 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
249         }
250
251         connector->debugfs_entry = NULL;
252 out_put_type_id:
253         if (ret)
254                 ida_simple_remove(connector_ida, connector->connector_type_id);
255 out_put_id:
256         if (ret)
257                 ida_simple_remove(&config->connector_ida, connector->index);
258 out_put:
259         if (ret)
260                 drm_mode_object_unregister(dev, &connector->base);
261
262         return ret;
263 }
264 EXPORT_SYMBOL(drm_connector_init);
265
266 /**
267  * drm_mode_connector_attach_encoder - attach a connector to an encoder
268  * @connector: connector to attach
269  * @encoder: encoder to attach @connector to
270  *
271  * This function links up a connector to an encoder. Note that the routing
272  * restrictions between encoders and crtcs are exposed to userspace through the
273  * possible_clones and possible_crtcs bitmasks.
274  *
275  * Returns:
276  * Zero on success, negative errno on failure.
277  */
278 int drm_mode_connector_attach_encoder(struct drm_connector *connector,
279                                       struct drm_encoder *encoder)
280 {
281         int i;
282
283         /*
284          * In the past, drivers have attempted to model the static association
285          * of connector to encoder in simple connector/encoder devices using a
286          * direct assignment of connector->encoder = encoder. This connection
287          * is a logical one and the responsibility of the core, so drivers are
288          * expected not to mess with this.
289          *
290          * Note that the error return should've been enough here, but a large
291          * majority of drivers ignores the return value, so add in a big WARN
292          * to get people's attention.
293          */
294         if (WARN_ON(connector->encoder))
295                 return -EINVAL;
296
297         for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
298                 if (connector->encoder_ids[i] == 0) {
299                         connector->encoder_ids[i] = encoder->base.id;
300                         return 0;
301                 }
302         }
303         return -ENOMEM;
304 }
305 EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
306
307 static void drm_mode_remove(struct drm_connector *connector,
308                             struct drm_display_mode *mode)
309 {
310         list_del(&mode->head);
311         drm_mode_destroy(connector->dev, mode);
312 }
313
314 /**
315  * drm_connector_cleanup - cleans up an initialised connector
316  * @connector: connector to cleanup
317  *
318  * Cleans up the connector but doesn't free the object.
319  */
320 void drm_connector_cleanup(struct drm_connector *connector)
321 {
322         struct drm_device *dev = connector->dev;
323         struct drm_display_mode *mode, *t;
324
325         /* The connector should have been removed from userspace long before
326          * it is finally destroyed.
327          */
328         if (WARN_ON(connector->registered))
329                 drm_connector_unregister(connector);
330
331         if (connector->tile_group) {
332                 drm_mode_put_tile_group(dev, connector->tile_group);
333                 connector->tile_group = NULL;
334         }
335
336         list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
337                 drm_mode_remove(connector, mode);
338
339         list_for_each_entry_safe(mode, t, &connector->modes, head)
340                 drm_mode_remove(connector, mode);
341
342         ida_simple_remove(&drm_connector_enum_list[connector->connector_type].ida,
343                           connector->connector_type_id);
344
345         ida_simple_remove(&dev->mode_config.connector_ida,
346                           connector->index);
347
348         kfree(connector->display_info.bus_formats);
349         drm_mode_object_unregister(dev, &connector->base);
350         kfree(connector->name);
351         connector->name = NULL;
352         spin_lock_irq(&dev->mode_config.connector_list_lock);
353         list_del(&connector->head);
354         dev->mode_config.num_connector--;
355         spin_unlock_irq(&dev->mode_config.connector_list_lock);
356
357         WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
358         if (connector->state && connector->funcs->atomic_destroy_state)
359                 connector->funcs->atomic_destroy_state(connector,
360                                                        connector->state);
361
362         mutex_destroy(&connector->mutex);
363
364         memset(connector, 0, sizeof(*connector));
365 }
366 EXPORT_SYMBOL(drm_connector_cleanup);
367
368 /**
369  * drm_connector_register - register a connector
370  * @connector: the connector to register
371  *
372  * Register userspace interfaces for a connector
373  *
374  * Returns:
375  * Zero on success, error code on failure.
376  */
377 int drm_connector_register(struct drm_connector *connector)
378 {
379         int ret = 0;
380
381         mutex_lock(&connector->mutex);
382         if (connector->registered)
383                 goto unlock;
384
385         ret = drm_sysfs_connector_add(connector);
386         if (ret)
387                 goto unlock;
388
389         ret = drm_debugfs_connector_add(connector);
390         if (ret) {
391                 goto err_sysfs;
392         }
393
394         if (connector->funcs->late_register) {
395                 ret = connector->funcs->late_register(connector);
396                 if (ret)
397                         goto err_debugfs;
398         }
399
400         drm_mode_object_register(connector->dev, &connector->base);
401
402         connector->registered = true;
403         goto unlock;
404
405 err_debugfs:
406         drm_debugfs_connector_remove(connector);
407 err_sysfs:
408         drm_sysfs_connector_remove(connector);
409 unlock:
410         mutex_unlock(&connector->mutex);
411         return ret;
412 }
413 EXPORT_SYMBOL(drm_connector_register);
414
415 /**
416  * drm_connector_unregister - unregister a connector
417  * @connector: the connector to unregister
418  *
419  * Unregister userspace interfaces for a connector
420  */
421 void drm_connector_unregister(struct drm_connector *connector)
422 {
423         mutex_lock(&connector->mutex);
424         if (!connector->registered) {
425                 mutex_unlock(&connector->mutex);
426                 return;
427         }
428
429         if (connector->funcs->early_unregister)
430                 connector->funcs->early_unregister(connector);
431
432         drm_sysfs_connector_remove(connector);
433         drm_debugfs_connector_remove(connector);
434
435         connector->registered = false;
436         mutex_unlock(&connector->mutex);
437 }
438 EXPORT_SYMBOL(drm_connector_unregister);
439
440 void drm_connector_unregister_all(struct drm_device *dev)
441 {
442         struct drm_connector *connector;
443         struct drm_connector_list_iter conn_iter;
444
445         drm_connector_list_iter_get(dev, &conn_iter);
446         drm_for_each_connector_iter(connector, &conn_iter)
447                 drm_connector_unregister(connector);
448         drm_connector_list_iter_put(&conn_iter);
449 }
450
451 int drm_connector_register_all(struct drm_device *dev)
452 {
453         struct drm_connector *connector;
454         struct drm_connector_list_iter conn_iter;
455         int ret = 0;
456
457         drm_connector_list_iter_get(dev, &conn_iter);
458         drm_for_each_connector_iter(connector, &conn_iter) {
459                 ret = drm_connector_register(connector);
460                 if (ret)
461                         break;
462         }
463         drm_connector_list_iter_put(&conn_iter);
464
465         if (ret)
466                 drm_connector_unregister_all(dev);
467         return ret;
468 }
469
470 /**
471  * drm_get_connector_status_name - return a string for connector status
472  * @status: connector status to compute name of
473  *
474  * In contrast to the other drm_get_*_name functions this one here returns a
475  * const pointer and hence is threadsafe.
476  */
477 const char *drm_get_connector_status_name(enum drm_connector_status status)
478 {
479         if (status == connector_status_connected)
480                 return "connected";
481         else if (status == connector_status_disconnected)
482                 return "disconnected";
483         else
484                 return "unknown";
485 }
486 EXPORT_SYMBOL(drm_get_connector_status_name);
487
488 #ifdef CONFIG_LOCKDEP
489 static struct lockdep_map connector_list_iter_dep_map = {
490         .name = "drm_connector_list_iter"
491 };
492 #endif
493
494 /**
495  * drm_connector_list_iter_get - initialize a connector_list iterator
496  * @dev: DRM device
497  * @iter: connector_list iterator
498  *
499  * Sets @iter up to walk the &drm_mode_config.connector_list of @dev. @iter
500  * must always be cleaned up again by calling drm_connector_list_iter_put().
501  * Iteration itself happens using drm_connector_list_iter_next() or
502  * drm_for_each_connector_iter().
503  */
504 void drm_connector_list_iter_get(struct drm_device *dev,
505                                  struct drm_connector_list_iter *iter)
506 {
507         iter->dev = dev;
508         iter->conn = NULL;
509         lock_acquire_shared_recursive(&connector_list_iter_dep_map, 0, 1, NULL, _RET_IP_);
510 }
511 EXPORT_SYMBOL(drm_connector_list_iter_get);
512
513 /**
514  * drm_connector_list_iter_next - return next connector
515  * @iter: connectr_list iterator
516  *
517  * Returns the next connector for @iter, or NULL when the list walk has
518  * completed.
519  */
520 struct drm_connector *
521 drm_connector_list_iter_next(struct drm_connector_list_iter *iter)
522 {
523         struct drm_connector *old_conn = iter->conn;
524         struct drm_mode_config *config = &iter->dev->mode_config;
525         struct list_head *lhead;
526         unsigned long flags;
527
528         spin_lock_irqsave(&config->connector_list_lock, flags);
529         lhead = old_conn ? &old_conn->head : &config->connector_list;
530
531         do {
532                 if (lhead->next == &config->connector_list) {
533                         iter->conn = NULL;
534                         break;
535                 }
536
537                 lhead = lhead->next;
538                 iter->conn = list_entry(lhead, struct drm_connector, head);
539
540                 /* loop until it's not a zombie connector */
541         } while (!kref_get_unless_zero(&iter->conn->base.refcount));
542         spin_unlock_irqrestore(&config->connector_list_lock, flags);
543
544         if (old_conn)
545                 drm_connector_unreference(old_conn);
546
547         return iter->conn;
548 }
549 EXPORT_SYMBOL(drm_connector_list_iter_next);
550
551 /**
552  * drm_connector_list_iter_put - tear down a connector_list iterator
553  * @iter: connector_list iterator
554  *
555  * Tears down @iter and releases any resources (like &drm_connector references)
556  * acquired while walking the list. This must always be called, both when the
557  * iteration completes fully or when it was aborted without walking the entire
558  * list.
559  */
560 void drm_connector_list_iter_put(struct drm_connector_list_iter *iter)
561 {
562         iter->dev = NULL;
563         if (iter->conn)
564                 drm_connector_unreference(iter->conn);
565         lock_release(&connector_list_iter_dep_map, 0, _RET_IP_);
566 }
567 EXPORT_SYMBOL(drm_connector_list_iter_put);
568
569 static const struct drm_prop_enum_list drm_subpixel_enum_list[] = {
570         { SubPixelUnknown, "Unknown" },
571         { SubPixelHorizontalRGB, "Horizontal RGB" },
572         { SubPixelHorizontalBGR, "Horizontal BGR" },
573         { SubPixelVerticalRGB, "Vertical RGB" },
574         { SubPixelVerticalBGR, "Vertical BGR" },
575         { SubPixelNone, "None" },
576 };
577
578 /**
579  * drm_get_subpixel_order_name - return a string for a given subpixel enum
580  * @order: enum of subpixel_order
581  *
582  * Note you could abuse this and return something out of bounds, but that
583  * would be a caller error.  No unscrubbed user data should make it here.
584  */
585 const char *drm_get_subpixel_order_name(enum subpixel_order order)
586 {
587         return drm_subpixel_enum_list[order].name;
588 }
589 EXPORT_SYMBOL(drm_get_subpixel_order_name);
590
591 static const struct drm_prop_enum_list drm_dpms_enum_list[] = {
592         { DRM_MODE_DPMS_ON, "On" },
593         { DRM_MODE_DPMS_STANDBY, "Standby" },
594         { DRM_MODE_DPMS_SUSPEND, "Suspend" },
595         { DRM_MODE_DPMS_OFF, "Off" }
596 };
597 DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
598
599 /**
600  * drm_display_info_set_bus_formats - set the supported bus formats
601  * @info: display info to store bus formats in
602  * @formats: array containing the supported bus formats
603  * @num_formats: the number of entries in the fmts array
604  *
605  * Store the supported bus formats in display info structure.
606  * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
607  * a full list of available formats.
608  */
609 int drm_display_info_set_bus_formats(struct drm_display_info *info,
610                                      const u32 *formats,
611                                      unsigned int num_formats)
612 {
613         u32 *fmts = NULL;
614
615         if (!formats && num_formats)
616                 return -EINVAL;
617
618         if (formats && num_formats) {
619                 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
620                                GFP_KERNEL);
621                 if (!fmts)
622                         return -ENOMEM;
623         }
624
625         kfree(info->bus_formats);
626         info->bus_formats = fmts;
627         info->num_bus_formats = num_formats;
628
629         return 0;
630 }
631 EXPORT_SYMBOL(drm_display_info_set_bus_formats);
632
633 /* Optional connector properties. */
634 static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = {
635         { DRM_MODE_SCALE_NONE, "None" },
636         { DRM_MODE_SCALE_FULLSCREEN, "Full" },
637         { DRM_MODE_SCALE_CENTER, "Center" },
638         { DRM_MODE_SCALE_ASPECT, "Full aspect" },
639 };
640
641 static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
642         { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
643         { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
644         { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
645 };
646
647 static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = {
648         { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
649         { DRM_MODE_SUBCONNECTOR_DVID,      "DVI-D"     }, /* DVI-I  */
650         { DRM_MODE_SUBCONNECTOR_DVIA,      "DVI-A"     }, /* DVI-I  */
651 };
652 DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
653
654 static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = {
655         { DRM_MODE_SUBCONNECTOR_Unknown,   "Unknown"   }, /* DVI-I and TV-out */
656         { DRM_MODE_SUBCONNECTOR_DVID,      "DVI-D"     }, /* DVI-I  */
657         { DRM_MODE_SUBCONNECTOR_DVIA,      "DVI-A"     }, /* DVI-I  */
658 };
659 DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
660                  drm_dvi_i_subconnector_enum_list)
661
662 static const struct drm_prop_enum_list drm_tv_select_enum_list[] = {
663         { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
664         { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
665         { DRM_MODE_SUBCONNECTOR_SVIDEO,    "SVIDEO"    }, /* TV-out */
666         { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
667         { DRM_MODE_SUBCONNECTOR_SCART,     "SCART"     }, /* TV-out */
668 };
669 DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
670
671 static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = {
672         { DRM_MODE_SUBCONNECTOR_Unknown,   "Unknown"   }, /* DVI-I and TV-out */
673         { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
674         { DRM_MODE_SUBCONNECTOR_SVIDEO,    "SVIDEO"    }, /* TV-out */
675         { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
676         { DRM_MODE_SUBCONNECTOR_SCART,     "SCART"     }, /* TV-out */
677 };
678 DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
679                  drm_tv_subconnector_enum_list)
680
681 /**
682  * DOC: standard connector properties
683  *
684  * DRM connectors have a few standardized properties:
685  *
686  * EDID:
687  *      Blob property which contains the current EDID read from the sink. This
688  *      is useful to parse sink identification information like vendor, model
689  *      and serial. Drivers should update this property by calling
690  *      drm_mode_connector_update_edid_property(), usually after having parsed
691  *      the EDID using drm_add_edid_modes(). Userspace cannot change this
692  *      property.
693  * DPMS:
694  *      Legacy property for setting the power state of the connector. For atomic
695  *      drivers this is only provided for backwards compatibility with existing
696  *      drivers, it remaps to controlling the "ACTIVE" property on the CRTC the
697  *      connector is linked to. Drivers should never set this property directly,
698  *      it is handled by the DRM core by calling the &drm_connector_funcs.dpms
699  *      callback. Atomic drivers should implement this hook using
700  *      drm_atomic_helper_connector_dpms(). This is the only property standard
701  *      connector property that userspace can change.
702  * PATH:
703  *      Connector path property to identify how this sink is physically
704  *      connected. Used by DP MST. This should be set by calling
705  *      drm_mode_connector_set_path_property(), in the case of DP MST with the
706  *      path property the MST manager created. Userspace cannot change this
707  *      property.
708  * TILE:
709  *      Connector tile group property to indicate how a set of DRM connector
710  *      compose together into one logical screen. This is used by both high-res
711  *      external screens (often only using a single cable, but exposing multiple
712  *      DP MST sinks), or high-res integrated panels (like dual-link DSI) which
713  *      are not gen-locked. Note that for tiled panels which are genlocked, like
714  *      dual-link LVDS or dual-link DSI, the driver should try to not expose the
715  *      tiling and virtualize both &drm_crtc and &drm_plane if needed. Drivers
716  *      should update this value using drm_mode_connector_set_tile_property().
717  *      Userspace cannot change this property.
718  *
719  * Connectors also have one standardized atomic property:
720  *
721  * CRTC_ID:
722  *      Mode object ID of the &drm_crtc this connector should be connected to.
723  */
724
725 int drm_connector_create_standard_properties(struct drm_device *dev)
726 {
727         struct drm_property *prop;
728
729         prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
730                                    DRM_MODE_PROP_IMMUTABLE,
731                                    "EDID", 0);
732         if (!prop)
733                 return -ENOMEM;
734         dev->mode_config.edid_property = prop;
735
736         prop = drm_property_create_enum(dev, 0,
737                                    "DPMS", drm_dpms_enum_list,
738                                    ARRAY_SIZE(drm_dpms_enum_list));
739         if (!prop)
740                 return -ENOMEM;
741         dev->mode_config.dpms_property = prop;
742
743         prop = drm_property_create(dev,
744                                    DRM_MODE_PROP_BLOB |
745                                    DRM_MODE_PROP_IMMUTABLE,
746                                    "PATH", 0);
747         if (!prop)
748                 return -ENOMEM;
749         dev->mode_config.path_property = prop;
750
751         prop = drm_property_create(dev,
752                                    DRM_MODE_PROP_BLOB |
753                                    DRM_MODE_PROP_IMMUTABLE,
754                                    "TILE", 0);
755         if (!prop)
756                 return -ENOMEM;
757         dev->mode_config.tile_property = prop;
758
759         return 0;
760 }
761
762 /**
763  * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
764  * @dev: DRM device
765  *
766  * Called by a driver the first time a DVI-I connector is made.
767  */
768 int drm_mode_create_dvi_i_properties(struct drm_device *dev)
769 {
770         struct drm_property *dvi_i_selector;
771         struct drm_property *dvi_i_subconnector;
772
773         if (dev->mode_config.dvi_i_select_subconnector_property)
774                 return 0;
775
776         dvi_i_selector =
777                 drm_property_create_enum(dev, 0,
778                                     "select subconnector",
779                                     drm_dvi_i_select_enum_list,
780                                     ARRAY_SIZE(drm_dvi_i_select_enum_list));
781         dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
782
783         dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
784                                     "subconnector",
785                                     drm_dvi_i_subconnector_enum_list,
786                                     ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
787         dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
788
789         return 0;
790 }
791 EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
792
793 /**
794  * drm_create_tv_properties - create TV specific connector properties
795  * @dev: DRM device
796  * @num_modes: number of different TV formats (modes) supported
797  * @modes: array of pointers to strings containing name of each format
798  *
799  * Called by a driver's TV initialization routine, this function creates
800  * the TV specific connector properties for a given device.  Caller is
801  * responsible for allocating a list of format names and passing them to
802  * this routine.
803  */
804 int drm_mode_create_tv_properties(struct drm_device *dev,
805                                   unsigned int num_modes,
806                                   const char * const modes[])
807 {
808         struct drm_property *tv_selector;
809         struct drm_property *tv_subconnector;
810         unsigned int i;
811
812         if (dev->mode_config.tv_select_subconnector_property)
813                 return 0;
814
815         /*
816          * Basic connector properties
817          */
818         tv_selector = drm_property_create_enum(dev, 0,
819                                           "select subconnector",
820                                           drm_tv_select_enum_list,
821                                           ARRAY_SIZE(drm_tv_select_enum_list));
822         if (!tv_selector)
823                 goto nomem;
824
825         dev->mode_config.tv_select_subconnector_property = tv_selector;
826
827         tv_subconnector =
828                 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
829                                     "subconnector",
830                                     drm_tv_subconnector_enum_list,
831                                     ARRAY_SIZE(drm_tv_subconnector_enum_list));
832         if (!tv_subconnector)
833                 goto nomem;
834         dev->mode_config.tv_subconnector_property = tv_subconnector;
835
836         /*
837          * Other, TV specific properties: margins & TV modes.
838          */
839         dev->mode_config.tv_left_margin_property =
840                 drm_property_create_range(dev, 0, "left margin", 0, 100);
841         if (!dev->mode_config.tv_left_margin_property)
842                 goto nomem;
843
844         dev->mode_config.tv_right_margin_property =
845                 drm_property_create_range(dev, 0, "right margin", 0, 100);
846         if (!dev->mode_config.tv_right_margin_property)
847                 goto nomem;
848
849         dev->mode_config.tv_top_margin_property =
850                 drm_property_create_range(dev, 0, "top margin", 0, 100);
851         if (!dev->mode_config.tv_top_margin_property)
852                 goto nomem;
853
854         dev->mode_config.tv_bottom_margin_property =
855                 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
856         if (!dev->mode_config.tv_bottom_margin_property)
857                 goto nomem;
858
859         dev->mode_config.tv_mode_property =
860                 drm_property_create(dev, DRM_MODE_PROP_ENUM,
861                                     "mode", num_modes);
862         if (!dev->mode_config.tv_mode_property)
863                 goto nomem;
864
865         for (i = 0; i < num_modes; i++)
866                 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
867                                       i, modes[i]);
868
869         dev->mode_config.tv_brightness_property =
870                 drm_property_create_range(dev, 0, "brightness", 0, 100);
871         if (!dev->mode_config.tv_brightness_property)
872                 goto nomem;
873
874         dev->mode_config.tv_contrast_property =
875                 drm_property_create_range(dev, 0, "contrast", 0, 100);
876         if (!dev->mode_config.tv_contrast_property)
877                 goto nomem;
878
879         dev->mode_config.tv_flicker_reduction_property =
880                 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
881         if (!dev->mode_config.tv_flicker_reduction_property)
882                 goto nomem;
883
884         dev->mode_config.tv_overscan_property =
885                 drm_property_create_range(dev, 0, "overscan", 0, 100);
886         if (!dev->mode_config.tv_overscan_property)
887                 goto nomem;
888
889         dev->mode_config.tv_saturation_property =
890                 drm_property_create_range(dev, 0, "saturation", 0, 100);
891         if (!dev->mode_config.tv_saturation_property)
892                 goto nomem;
893
894         dev->mode_config.tv_hue_property =
895                 drm_property_create_range(dev, 0, "hue", 0, 100);
896         if (!dev->mode_config.tv_hue_property)
897                 goto nomem;
898
899         return 0;
900 nomem:
901         return -ENOMEM;
902 }
903 EXPORT_SYMBOL(drm_mode_create_tv_properties);
904
905 /**
906  * drm_mode_create_scaling_mode_property - create scaling mode property
907  * @dev: DRM device
908  *
909  * Called by a driver the first time it's needed, must be attached to desired
910  * connectors.
911  */
912 int drm_mode_create_scaling_mode_property(struct drm_device *dev)
913 {
914         struct drm_property *scaling_mode;
915
916         if (dev->mode_config.scaling_mode_property)
917                 return 0;
918
919         scaling_mode =
920                 drm_property_create_enum(dev, 0, "scaling mode",
921                                 drm_scaling_mode_enum_list,
922                                     ARRAY_SIZE(drm_scaling_mode_enum_list));
923
924         dev->mode_config.scaling_mode_property = scaling_mode;
925
926         return 0;
927 }
928 EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
929
930 /**
931  * drm_mode_create_aspect_ratio_property - create aspect ratio property
932  * @dev: DRM device
933  *
934  * Called by a driver the first time it's needed, must be attached to desired
935  * connectors.
936  *
937  * Returns:
938  * Zero on success, negative errno on failure.
939  */
940 int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
941 {
942         if (dev->mode_config.aspect_ratio_property)
943                 return 0;
944
945         dev->mode_config.aspect_ratio_property =
946                 drm_property_create_enum(dev, 0, "aspect ratio",
947                                 drm_aspect_ratio_enum_list,
948                                 ARRAY_SIZE(drm_aspect_ratio_enum_list));
949
950         if (dev->mode_config.aspect_ratio_property == NULL)
951                 return -ENOMEM;
952
953         return 0;
954 }
955 EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
956
957 /**
958  * drm_mode_create_suggested_offset_properties - create suggests offset properties
959  * @dev: DRM device
960  *
961  * Create the the suggested x/y offset property for connectors.
962  */
963 int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
964 {
965         if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
966                 return 0;
967
968         dev->mode_config.suggested_x_property =
969                 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
970
971         dev->mode_config.suggested_y_property =
972                 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
973
974         if (dev->mode_config.suggested_x_property == NULL ||
975             dev->mode_config.suggested_y_property == NULL)
976                 return -ENOMEM;
977         return 0;
978 }
979 EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
980
981 /**
982  * drm_mode_connector_set_path_property - set tile property on connector
983  * @connector: connector to set property on.
984  * @path: path to use for property; must not be NULL.
985  *
986  * This creates a property to expose to userspace to specify a
987  * connector path. This is mainly used for DisplayPort MST where
988  * connectors have a topology and we want to allow userspace to give
989  * them more meaningful names.
990  *
991  * Returns:
992  * Zero on success, negative errno on failure.
993  */
994 int drm_mode_connector_set_path_property(struct drm_connector *connector,
995                                          const char *path)
996 {
997         struct drm_device *dev = connector->dev;
998         int ret;
999
1000         ret = drm_property_replace_global_blob(dev,
1001                                                &connector->path_blob_ptr,
1002                                                strlen(path) + 1,
1003                                                path,
1004                                                &connector->base,
1005                                                dev->mode_config.path_property);
1006         return ret;
1007 }
1008 EXPORT_SYMBOL(drm_mode_connector_set_path_property);
1009
1010 /**
1011  * drm_mode_connector_set_tile_property - set tile property on connector
1012  * @connector: connector to set property on.
1013  *
1014  * This looks up the tile information for a connector, and creates a
1015  * property for userspace to parse if it exists. The property is of
1016  * the form of 8 integers using ':' as a separator.
1017  *
1018  * Returns:
1019  * Zero on success, errno on failure.
1020  */
1021 int drm_mode_connector_set_tile_property(struct drm_connector *connector)
1022 {
1023         struct drm_device *dev = connector->dev;
1024         char tile[256];
1025         int ret;
1026
1027         if (!connector->has_tile) {
1028                 ret  = drm_property_replace_global_blob(dev,
1029                                                         &connector->tile_blob_ptr,
1030                                                         0,
1031                                                         NULL,
1032                                                         &connector->base,
1033                                                         dev->mode_config.tile_property);
1034                 return ret;
1035         }
1036
1037         snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
1038                  connector->tile_group->id, connector->tile_is_single_monitor,
1039                  connector->num_h_tile, connector->num_v_tile,
1040                  connector->tile_h_loc, connector->tile_v_loc,
1041                  connector->tile_h_size, connector->tile_v_size);
1042
1043         ret = drm_property_replace_global_blob(dev,
1044                                                &connector->tile_blob_ptr,
1045                                                strlen(tile) + 1,
1046                                                tile,
1047                                                &connector->base,
1048                                                dev->mode_config.tile_property);
1049         return ret;
1050 }
1051 EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
1052
1053 /**
1054  * drm_mode_connector_update_edid_property - update the edid property of a connector
1055  * @connector: drm connector
1056  * @edid: new value of the edid property
1057  *
1058  * This function creates a new blob modeset object and assigns its id to the
1059  * connector's edid property.
1060  *
1061  * Returns:
1062  * Zero on success, negative errno on failure.
1063  */
1064 int drm_mode_connector_update_edid_property(struct drm_connector *connector,
1065                                             const struct edid *edid)
1066 {
1067         struct drm_device *dev = connector->dev;
1068         size_t size = 0;
1069         int ret;
1070
1071         /* ignore requests to set edid when overridden */
1072         if (connector->override_edid)
1073                 return 0;
1074
1075         if (edid)
1076                 size = EDID_LENGTH * (1 + edid->extensions);
1077
1078         ret = drm_property_replace_global_blob(dev,
1079                                                &connector->edid_blob_ptr,
1080                                                size,
1081                                                edid,
1082                                                &connector->base,
1083                                                dev->mode_config.edid_property);
1084         return ret;
1085 }
1086 EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
1087
1088 int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
1089                                     struct drm_property *property,
1090                                     uint64_t value)
1091 {
1092         int ret = -EINVAL;
1093         struct drm_connector *connector = obj_to_connector(obj);
1094
1095         /* Do DPMS ourselves */
1096         if (property == connector->dev->mode_config.dpms_property) {
1097                 ret = (*connector->funcs->dpms)(connector, (int)value);
1098         } else if (connector->funcs->set_property)
1099                 ret = connector->funcs->set_property(connector, property, value);
1100
1101         /* store the property value if successful */
1102         if (!ret)
1103                 drm_object_property_set_value(&connector->base, property, value);
1104         return ret;
1105 }
1106
1107 int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
1108                                        void *data, struct drm_file *file_priv)
1109 {
1110         struct drm_mode_connector_set_property *conn_set_prop = data;
1111         struct drm_mode_obj_set_property obj_set_prop = {
1112                 .value = conn_set_prop->value,
1113                 .prop_id = conn_set_prop->prop_id,
1114                 .obj_id = conn_set_prop->connector_id,
1115                 .obj_type = DRM_MODE_OBJECT_CONNECTOR
1116         };
1117
1118         /* It does all the locking and checking we need */
1119         return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
1120 }
1121
1122 static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
1123 {
1124         /* For atomic drivers only state objects are synchronously updated and
1125          * protected by modeset locks, so check those first. */
1126         if (connector->state)
1127                 return connector->state->best_encoder;
1128         return connector->encoder;
1129 }
1130
1131 static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1132                                          const struct drm_file *file_priv)
1133 {
1134         /*
1135          * If user-space hasn't configured the driver to expose the stereo 3D
1136          * modes, don't expose them.
1137          */
1138         if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1139                 return false;
1140
1141         return true;
1142 }
1143
1144 int drm_mode_getconnector(struct drm_device *dev, void *data,
1145                           struct drm_file *file_priv)
1146 {
1147         struct drm_mode_get_connector *out_resp = data;
1148         struct drm_connector *connector;
1149         struct drm_encoder *encoder;
1150         struct drm_display_mode *mode;
1151         int mode_count = 0;
1152         int encoders_count = 0;
1153         int ret = 0;
1154         int copied = 0;
1155         int i;
1156         struct drm_mode_modeinfo u_mode;
1157         struct drm_mode_modeinfo __user *mode_ptr;
1158         uint32_t __user *encoder_ptr;
1159
1160         if (!drm_core_check_feature(dev, DRIVER_MODESET))
1161                 return -EINVAL;
1162
1163         memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1164
1165         connector = drm_connector_lookup(dev, out_resp->connector_id);
1166         if (!connector)
1167                 return -ENOENT;
1168
1169         drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
1170         encoder = drm_connector_get_encoder(connector);
1171         if (encoder)
1172                 out_resp->encoder_id = encoder->base.id;
1173         else
1174                 out_resp->encoder_id = 0;
1175
1176         ret = drm_mode_object_get_properties(&connector->base, file_priv->atomic,
1177                         (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
1178                         (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
1179                         &out_resp->count_props);
1180         drm_modeset_unlock(&dev->mode_config.connection_mutex);
1181         if (ret)
1182                 goto out_unref;
1183
1184         for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
1185                 if (connector->encoder_ids[i] != 0)
1186                         encoders_count++;
1187
1188         if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
1189                 copied = 0;
1190                 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
1191                 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1192                         if (connector->encoder_ids[i] != 0) {
1193                                 if (put_user(connector->encoder_ids[i],
1194                                              encoder_ptr + copied)) {
1195                                         ret = -EFAULT;
1196                                         goto out_unref;
1197                                 }
1198                                 copied++;
1199                         }
1200                 }
1201         }
1202         out_resp->count_encoders = encoders_count;
1203
1204         out_resp->connector_id = connector->base.id;
1205         out_resp->connector_type = connector->connector_type;
1206         out_resp->connector_type_id = connector->connector_type_id;
1207
1208         mutex_lock(&dev->mode_config.mutex);
1209         if (out_resp->count_modes == 0) {
1210                 connector->funcs->fill_modes(connector,
1211                                              dev->mode_config.max_width,
1212                                              dev->mode_config.max_height);
1213         }
1214
1215         out_resp->mm_width = connector->display_info.width_mm;
1216         out_resp->mm_height = connector->display_info.height_mm;
1217         out_resp->subpixel = connector->display_info.subpixel_order;
1218         out_resp->connection = connector->status;
1219
1220         /* delayed so we get modes regardless of pre-fill_modes state */
1221         list_for_each_entry(mode, &connector->modes, head)
1222                 if (drm_mode_expose_to_userspace(mode, file_priv))
1223                         mode_count++;
1224
1225         /*
1226          * This ioctl is called twice, once to determine how much space is
1227          * needed, and the 2nd time to fill it.
1228          */
1229         if ((out_resp->count_modes >= mode_count) && mode_count) {
1230                 copied = 0;
1231                 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
1232                 list_for_each_entry(mode, &connector->modes, head) {
1233                         if (!drm_mode_expose_to_userspace(mode, file_priv))
1234                                 continue;
1235
1236                         drm_mode_convert_to_umode(&u_mode, mode);
1237                         if (copy_to_user(mode_ptr + copied,
1238                                          &u_mode, sizeof(u_mode))) {
1239                                 ret = -EFAULT;
1240                                 goto out;
1241                         }
1242                         copied++;
1243                 }
1244         }
1245         out_resp->count_modes = mode_count;
1246 out:
1247         mutex_unlock(&dev->mode_config.mutex);
1248 out_unref:
1249         drm_connector_unreference(connector);
1250
1251         return ret;
1252 }
1253
1254
1255 /**
1256  * DOC: Tile group
1257  *
1258  * Tile groups are used to represent tiled monitors with a unique integer
1259  * identifier. Tiled monitors using DisplayID v1.3 have a unique 8-byte handle,
1260  * we store this in a tile group, so we have a common identifier for all tiles
1261  * in a monitor group. The property is called "TILE". Drivers can manage tile
1262  * groups using drm_mode_create_tile_group(), drm_mode_put_tile_group() and
1263  * drm_mode_get_tile_group(). But this is only needed for internal panels where
1264  * the tile group information is exposed through a non-standard way.
1265  */
1266
1267 static void drm_tile_group_free(struct kref *kref)
1268 {
1269         struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
1270         struct drm_device *dev = tg->dev;
1271         mutex_lock(&dev->mode_config.idr_mutex);
1272         idr_remove(&dev->mode_config.tile_idr, tg->id);
1273         mutex_unlock(&dev->mode_config.idr_mutex);
1274         kfree(tg);
1275 }
1276
1277 /**
1278  * drm_mode_put_tile_group - drop a reference to a tile group.
1279  * @dev: DRM device
1280  * @tg: tile group to drop reference to.
1281  *
1282  * drop reference to tile group and free if 0.
1283  */
1284 void drm_mode_put_tile_group(struct drm_device *dev,
1285                              struct drm_tile_group *tg)
1286 {
1287         kref_put(&tg->refcount, drm_tile_group_free);
1288 }
1289 EXPORT_SYMBOL(drm_mode_put_tile_group);
1290
1291 /**
1292  * drm_mode_get_tile_group - get a reference to an existing tile group
1293  * @dev: DRM device
1294  * @topology: 8-bytes unique per monitor.
1295  *
1296  * Use the unique bytes to get a reference to an existing tile group.
1297  *
1298  * RETURNS:
1299  * tile group or NULL if not found.
1300  */
1301 struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
1302                                                char topology[8])
1303 {
1304         struct drm_tile_group *tg;
1305         int id;
1306         mutex_lock(&dev->mode_config.idr_mutex);
1307         idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
1308                 if (!memcmp(tg->group_data, topology, 8)) {
1309                         if (!kref_get_unless_zero(&tg->refcount))
1310                                 tg = NULL;
1311                         mutex_unlock(&dev->mode_config.idr_mutex);
1312                         return tg;
1313                 }
1314         }
1315         mutex_unlock(&dev->mode_config.idr_mutex);
1316         return NULL;
1317 }
1318 EXPORT_SYMBOL(drm_mode_get_tile_group);
1319
1320 /**
1321  * drm_mode_create_tile_group - create a tile group from a displayid description
1322  * @dev: DRM device
1323  * @topology: 8-bytes unique per monitor.
1324  *
1325  * Create a tile group for the unique monitor, and get a unique
1326  * identifier for the tile group.
1327  *
1328  * RETURNS:
1329  * new tile group or error.
1330  */
1331 struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
1332                                                   char topology[8])
1333 {
1334         struct drm_tile_group *tg;
1335         int ret;
1336
1337         tg = kzalloc(sizeof(*tg), GFP_KERNEL);
1338         if (!tg)
1339                 return ERR_PTR(-ENOMEM);
1340
1341         kref_init(&tg->refcount);
1342         memcpy(tg->group_data, topology, 8);
1343         tg->dev = dev;
1344
1345         mutex_lock(&dev->mode_config.idr_mutex);
1346         ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
1347         if (ret >= 0) {
1348                 tg->id = ret;
1349         } else {
1350                 kfree(tg);
1351                 tg = ERR_PTR(ret);
1352         }
1353
1354         mutex_unlock(&dev->mode_config.idr_mutex);
1355         return tg;
1356 }
1357 EXPORT_SYMBOL(drm_mode_create_tile_group);