drm: introduce share plane
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / drm / drm_crtc.c
1 /*
2  * Copyright (c) 2006-2008 Intel Corporation
3  * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
4  * Copyright (c) 2008 Red Hat Inc.
5  *
6  * DRM core CRTC related functions
7  *
8  * Permission to use, copy, modify, distribute, and sell this software and its
9  * documentation for any purpose is hereby granted without fee, provided that
10  * the above copyright notice appear in all copies and that both that copyright
11  * notice and this permission notice appear in supporting documentation, and
12  * that the name of the copyright holders not be used in advertising or
13  * publicity pertaining to distribution of the software without specific,
14  * written prior permission.  The copyright holders make no representations
15  * about the suitability of this software for any purpose.  It is provided "as
16  * is" without express or implied warranty.
17  *
18  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
20  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
21  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
22  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
23  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24  * OF THIS SOFTWARE.
25  *
26  * Authors:
27  *      Keith Packard
28  *      Eric Anholt <eric@anholt.net>
29  *      Dave Airlie <airlied@linux.ie>
30  *      Jesse Barnes <jesse.barnes@intel.com>
31  */
32 #include <linux/ctype.h>
33 #include <linux/list.h>
34 #include <linux/slab.h>
35 #include <linux/export.h>
36 #include <drm/drmP.h>
37 #include <drm/drm_crtc.h>
38 #include <drm/drm_edid.h>
39 #include <drm/drm_fourcc.h>
40 #include <drm/drm_modeset_lock.h>
41 #include <drm/drm_atomic.h>
42
43 #include "drm_crtc_internal.h"
44 #include "drm_internal.h"
45
46 static struct drm_framebuffer *
47 internal_framebuffer_create(struct drm_device *dev,
48                             struct drm_mode_fb_cmd2 *r,
49                             struct drm_file *file_priv);
50
51 /* Avoid boilerplate.  I'm tired of typing. */
52 #define DRM_ENUM_NAME_FN(fnname, list)                          \
53         const char *fnname(int val)                             \
54         {                                                       \
55                 int i;                                          \
56                 for (i = 0; i < ARRAY_SIZE(list); i++) {        \
57                         if (list[i].type == val)                \
58                                 return list[i].name;            \
59                 }                                               \
60                 return "(unknown)";                             \
61         }
62
63 /*
64  * Global properties
65  */
66 static const struct drm_prop_enum_list drm_dpms_enum_list[] = {
67         { DRM_MODE_DPMS_ON, "On" },
68         { DRM_MODE_DPMS_STANDBY, "Standby" },
69         { DRM_MODE_DPMS_SUSPEND, "Suspend" },
70         { DRM_MODE_DPMS_OFF, "Off" }
71 };
72
73 DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
74
75 static const struct drm_prop_enum_list drm_plane_type_enum_list[] = {
76         { DRM_PLANE_TYPE_OVERLAY, "Overlay" },
77         { DRM_PLANE_TYPE_PRIMARY, "Primary" },
78         { DRM_PLANE_TYPE_CURSOR, "Cursor" },
79 };
80
81 /*
82  * Optional properties
83  */
84 static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = {
85         { DRM_MODE_SCALE_NONE, "None" },
86         { DRM_MODE_SCALE_FULLSCREEN, "Full" },
87         { DRM_MODE_SCALE_CENTER, "Center" },
88         { DRM_MODE_SCALE_ASPECT, "Full aspect" },
89 };
90
91 static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
92         { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
93         { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
94         { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
95 };
96
97 /*
98  * Non-global properties, but "required" for certain connectors.
99  */
100 static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = {
101         { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
102         { DRM_MODE_SUBCONNECTOR_DVID,      "DVI-D"     }, /* DVI-I  */
103         { DRM_MODE_SUBCONNECTOR_DVIA,      "DVI-A"     }, /* DVI-I  */
104 };
105
106 DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
107
108 static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = {
109         { DRM_MODE_SUBCONNECTOR_Unknown,   "Unknown"   }, /* DVI-I and TV-out */
110         { DRM_MODE_SUBCONNECTOR_DVID,      "DVI-D"     }, /* DVI-I  */
111         { DRM_MODE_SUBCONNECTOR_DVIA,      "DVI-A"     }, /* DVI-I  */
112 };
113
114 DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
115                  drm_dvi_i_subconnector_enum_list)
116
117 static const struct drm_prop_enum_list drm_tv_select_enum_list[] = {
118         { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
119         { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
120         { DRM_MODE_SUBCONNECTOR_SVIDEO,    "SVIDEO"    }, /* TV-out */
121         { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
122         { DRM_MODE_SUBCONNECTOR_SCART,     "SCART"     }, /* TV-out */
123 };
124
125 DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
126
127 static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = {
128         { DRM_MODE_SUBCONNECTOR_Unknown,   "Unknown"   }, /* DVI-I and TV-out */
129         { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
130         { DRM_MODE_SUBCONNECTOR_SVIDEO,    "SVIDEO"    }, /* TV-out */
131         { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
132         { DRM_MODE_SUBCONNECTOR_SCART,     "SCART"     }, /* TV-out */
133 };
134
135 DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
136                  drm_tv_subconnector_enum_list)
137
138 static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
139         { DRM_MODE_DIRTY_OFF,      "Off"      },
140         { DRM_MODE_DIRTY_ON,       "On"       },
141         { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
142 };
143
144 struct drm_conn_prop_enum_list {
145         int type;
146         const char *name;
147         struct ida ida;
148 };
149
150 /*
151  * Connector and encoder types.
152  */
153 static struct drm_conn_prop_enum_list drm_connector_enum_list[] = {
154         { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
155         { DRM_MODE_CONNECTOR_VGA, "VGA" },
156         { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
157         { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
158         { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
159         { DRM_MODE_CONNECTOR_Composite, "Composite" },
160         { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
161         { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
162         { DRM_MODE_CONNECTOR_Component, "Component" },
163         { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
164         { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
165         { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
166         { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
167         { DRM_MODE_CONNECTOR_TV, "TV" },
168         { DRM_MODE_CONNECTOR_eDP, "eDP" },
169         { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
170         { DRM_MODE_CONNECTOR_DSI, "DSI" },
171 };
172
173 static const struct drm_prop_enum_list drm_encoder_enum_list[] = {
174         { DRM_MODE_ENCODER_NONE, "None" },
175         { DRM_MODE_ENCODER_DAC, "DAC" },
176         { DRM_MODE_ENCODER_TMDS, "TMDS" },
177         { DRM_MODE_ENCODER_LVDS, "LVDS" },
178         { DRM_MODE_ENCODER_TVDAC, "TV" },
179         { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
180         { DRM_MODE_ENCODER_DSI, "DSI" },
181         { DRM_MODE_ENCODER_DPMST, "DP MST" },
182 };
183
184 static const struct drm_prop_enum_list drm_subpixel_enum_list[] = {
185         { SubPixelUnknown, "Unknown" },
186         { SubPixelHorizontalRGB, "Horizontal RGB" },
187         { SubPixelHorizontalBGR, "Horizontal BGR" },
188         { SubPixelVerticalRGB, "Vertical RGB" },
189         { SubPixelVerticalBGR, "Vertical BGR" },
190         { SubPixelNone, "None" },
191 };
192
193 void drm_connector_ida_init(void)
194 {
195         int i;
196
197         for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
198                 ida_init(&drm_connector_enum_list[i].ida);
199 }
200
201 void drm_connector_ida_destroy(void)
202 {
203         int i;
204
205         for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
206                 ida_destroy(&drm_connector_enum_list[i].ida);
207 }
208
209 /**
210  * drm_get_connector_status_name - return a string for connector status
211  * @status: connector status to compute name of
212  *
213  * In contrast to the other drm_get_*_name functions this one here returns a
214  * const pointer and hence is threadsafe.
215  */
216 const char *drm_get_connector_status_name(enum drm_connector_status status)
217 {
218         if (status == connector_status_connected)
219                 return "connected";
220         else if (status == connector_status_disconnected)
221                 return "disconnected";
222         else
223                 return "unknown";
224 }
225 EXPORT_SYMBOL(drm_get_connector_status_name);
226
227 /**
228  * drm_get_subpixel_order_name - return a string for a given subpixel enum
229  * @order: enum of subpixel_order
230  *
231  * Note you could abuse this and return something out of bounds, but that
232  * would be a caller error.  No unscrubbed user data should make it here.
233  */
234 const char *drm_get_subpixel_order_name(enum subpixel_order order)
235 {
236         return drm_subpixel_enum_list[order].name;
237 }
238 EXPORT_SYMBOL(drm_get_subpixel_order_name);
239
240 static char printable_char(int c)
241 {
242         return isascii(c) && isprint(c) ? c : '?';
243 }
244
245 /**
246  * drm_get_format_name - return a string for drm fourcc format
247  * @format: format to compute name of
248  *
249  * Note that the buffer used by this function is globally shared and owned by
250  * the function itself.
251  *
252  * FIXME: This isn't really multithreading safe.
253  */
254 const char *drm_get_format_name(uint32_t format)
255 {
256         static char buf[32];
257
258         snprintf(buf, sizeof(buf),
259                  "%c%c%c%c %s-endian (0x%08x)",
260                  printable_char(format & 0xff),
261                  printable_char((format >> 8) & 0xff),
262                  printable_char((format >> 16) & 0xff),
263                  printable_char((format >> 24) & 0x7f),
264                  format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
265                  format);
266
267         return buf;
268 }
269 EXPORT_SYMBOL(drm_get_format_name);
270
271 /*
272  * Internal function to assign a slot in the object idr and optionally
273  * register the object into the idr.
274  */
275 static int drm_mode_object_get_reg(struct drm_device *dev,
276                                    struct drm_mode_object *obj,
277                                    uint32_t obj_type,
278                                    bool register_obj)
279 {
280         int ret;
281
282         mutex_lock(&dev->mode_config.idr_mutex);
283         ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
284         if (ret >= 0) {
285                 /*
286                  * Set up the object linking under the protection of the idr
287                  * lock so that other users can't see inconsistent state.
288                  */
289                 obj->id = ret;
290                 obj->type = obj_type;
291         }
292         mutex_unlock(&dev->mode_config.idr_mutex);
293
294         return ret < 0 ? ret : 0;
295 }
296
297 /**
298  * drm_mode_object_get - allocate a new modeset identifier
299  * @dev: DRM device
300  * @obj: object pointer, used to generate unique ID
301  * @obj_type: object type
302  *
303  * Create a unique identifier based on @ptr in @dev's identifier space.  Used
304  * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
305  * modeset identifiers are _not_ reference counted. Hence don't use this for
306  * reference counted modeset objects like framebuffers.
307  *
308  * Returns:
309  * Zero on success, error code on failure.
310  */
311 int drm_mode_object_get(struct drm_device *dev,
312                         struct drm_mode_object *obj, uint32_t obj_type)
313 {
314         return drm_mode_object_get_reg(dev, obj, obj_type, true);
315 }
316
317 static void drm_mode_object_register(struct drm_device *dev,
318                                      struct drm_mode_object *obj)
319 {
320         mutex_lock(&dev->mode_config.idr_mutex);
321         idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
322         mutex_unlock(&dev->mode_config.idr_mutex);
323 }
324
325 /**
326  * drm_mode_object_put - free a modeset identifer
327  * @dev: DRM device
328  * @object: object to free
329  *
330  * Free @id from @dev's unique identifier pool. Note that despite the _get
331  * postfix modeset identifiers are _not_ reference counted. Hence don't use this
332  * for reference counted modeset objects like framebuffers.
333  */
334 void drm_mode_object_put(struct drm_device *dev,
335                          struct drm_mode_object *object)
336 {
337         mutex_lock(&dev->mode_config.idr_mutex);
338         idr_remove(&dev->mode_config.crtc_idr, object->id);
339         mutex_unlock(&dev->mode_config.idr_mutex);
340 }
341
342 static struct drm_mode_object *_object_find(struct drm_device *dev,
343                 uint32_t id, uint32_t type)
344 {
345         struct drm_mode_object *obj = NULL;
346
347         mutex_lock(&dev->mode_config.idr_mutex);
348         obj = idr_find(&dev->mode_config.crtc_idr, id);
349         if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
350                 obj = NULL;
351         if (obj && obj->id != id)
352                 obj = NULL;
353         /* don't leak out unref'd fb's */
354         if (obj &&
355             (obj->type == DRM_MODE_OBJECT_FB ||
356              obj->type == DRM_MODE_OBJECT_BLOB))
357                 obj = NULL;
358         mutex_unlock(&dev->mode_config.idr_mutex);
359
360         return obj;
361 }
362
363 /**
364  * drm_mode_object_find - look up a drm object with static lifetime
365  * @dev: drm device
366  * @id: id of the mode object
367  * @type: type of the mode object
368  *
369  * Note that framebuffers cannot be looked up with this functions - since those
370  * are reference counted, they need special treatment.  Even with
371  * DRM_MODE_OBJECT_ANY (although that will simply return NULL
372  * rather than WARN_ON()).
373  */
374 struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
375                 uint32_t id, uint32_t type)
376 {
377         struct drm_mode_object *obj = NULL;
378
379         /* Framebuffers are reference counted and need their own lookup
380          * function.*/
381         WARN_ON(type == DRM_MODE_OBJECT_FB || type == DRM_MODE_OBJECT_BLOB);
382         obj = _object_find(dev, id, type);
383         return obj;
384 }
385 EXPORT_SYMBOL(drm_mode_object_find);
386
387 /**
388  * drm_framebuffer_init - initialize a framebuffer
389  * @dev: DRM device
390  * @fb: framebuffer to be initialized
391  * @funcs: ... with these functions
392  *
393  * Allocates an ID for the framebuffer's parent mode object, sets its mode
394  * functions & device file and adds it to the master fd list.
395  *
396  * IMPORTANT:
397  * This functions publishes the fb and makes it available for concurrent access
398  * by other users. Which means by this point the fb _must_ be fully set up -
399  * since all the fb attributes are invariant over its lifetime, no further
400  * locking but only correct reference counting is required.
401  *
402  * Returns:
403  * Zero on success, error code on failure.
404  */
405 int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
406                          const struct drm_framebuffer_funcs *funcs)
407 {
408         int ret;
409
410         mutex_lock(&dev->mode_config.fb_lock);
411         kref_init(&fb->refcount);
412         INIT_LIST_HEAD(&fb->filp_head);
413         fb->dev = dev;
414         fb->funcs = funcs;
415
416         ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
417         if (ret)
418                 goto out;
419
420         dev->mode_config.num_fb++;
421         list_add(&fb->head, &dev->mode_config.fb_list);
422 out:
423         mutex_unlock(&dev->mode_config.fb_lock);
424
425         return ret;
426 }
427 EXPORT_SYMBOL(drm_framebuffer_init);
428
429 /* dev->mode_config.fb_lock must be held! */
430 static void __drm_framebuffer_unregister(struct drm_device *dev,
431                                          struct drm_framebuffer *fb)
432 {
433         mutex_lock(&dev->mode_config.idr_mutex);
434         idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
435         mutex_unlock(&dev->mode_config.idr_mutex);
436
437         fb->base.id = 0;
438 }
439
440 static void drm_framebuffer_free(struct kref *kref)
441 {
442         struct drm_framebuffer *fb =
443                         container_of(kref, struct drm_framebuffer, refcount);
444         struct drm_device *dev = fb->dev;
445
446         /*
447          * The lookup idr holds a weak reference, which has not necessarily been
448          * removed at this point. Check for that.
449          */
450         mutex_lock(&dev->mode_config.fb_lock);
451         if (fb->base.id) {
452                 /* Mark fb as reaped and drop idr ref. */
453                 __drm_framebuffer_unregister(dev, fb);
454         }
455         mutex_unlock(&dev->mode_config.fb_lock);
456
457         fb->funcs->destroy(fb);
458 }
459
460 static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
461                                                         uint32_t id)
462 {
463         struct drm_mode_object *obj = NULL;
464         struct drm_framebuffer *fb;
465
466         mutex_lock(&dev->mode_config.idr_mutex);
467         obj = idr_find(&dev->mode_config.crtc_idr, id);
468         if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
469                 fb = NULL;
470         else
471                 fb = obj_to_fb(obj);
472         mutex_unlock(&dev->mode_config.idr_mutex);
473
474         return fb;
475 }
476
477 /**
478  * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
479  * @dev: drm device
480  * @id: id of the fb object
481  *
482  * If successful, this grabs an additional reference to the framebuffer -
483  * callers need to make sure to eventually unreference the returned framebuffer
484  * again, using @drm_framebuffer_unreference.
485  */
486 struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
487                                                uint32_t id)
488 {
489         struct drm_framebuffer *fb;
490
491         mutex_lock(&dev->mode_config.fb_lock);
492         fb = __drm_framebuffer_lookup(dev, id);
493         if (fb) {
494                 if (!kref_get_unless_zero(&fb->refcount))
495                         fb = NULL;
496         }
497         mutex_unlock(&dev->mode_config.fb_lock);
498
499         return fb;
500 }
501 EXPORT_SYMBOL(drm_framebuffer_lookup);
502
503 /**
504  * drm_framebuffer_unreference - unref a framebuffer
505  * @fb: framebuffer to unref
506  *
507  * This functions decrements the fb's refcount and frees it if it drops to zero.
508  */
509 void drm_framebuffer_unreference(struct drm_framebuffer *fb)
510 {
511         DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
512         kref_put(&fb->refcount, drm_framebuffer_free);
513 }
514 EXPORT_SYMBOL(drm_framebuffer_unreference);
515
516 /**
517  * drm_framebuffer_reference - incr the fb refcnt
518  * @fb: framebuffer
519  *
520  * This functions increments the fb's refcount.
521  */
522 void drm_framebuffer_reference(struct drm_framebuffer *fb)
523 {
524         DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
525         kref_get(&fb->refcount);
526 }
527 EXPORT_SYMBOL(drm_framebuffer_reference);
528
529 /**
530  * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
531  * @fb: fb to unregister
532  *
533  * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
534  * those used for fbdev. Note that the caller must hold a reference of it's own,
535  * i.e. the object may not be destroyed through this call (since it'll lead to a
536  * locking inversion).
537  */
538 void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
539 {
540         struct drm_device *dev;
541
542         if (!fb)
543                 return;
544
545         dev = fb->dev;
546
547         mutex_lock(&dev->mode_config.fb_lock);
548         /* Mark fb as reaped and drop idr ref. */
549         __drm_framebuffer_unregister(dev, fb);
550         mutex_unlock(&dev->mode_config.fb_lock);
551 }
552 EXPORT_SYMBOL(drm_framebuffer_unregister_private);
553
554 /**
555  * drm_framebuffer_cleanup - remove a framebuffer object
556  * @fb: framebuffer to remove
557  *
558  * Cleanup framebuffer. This function is intended to be used from the drivers
559  * ->destroy callback. It can also be used to clean up driver private
560  *  framebuffers embedded into a larger structure.
561  *
562  * Note that this function does not remove the fb from active usuage - if it is
563  * still used anywhere, hilarity can ensue since userspace could call getfb on
564  * the id and get back -EINVAL. Obviously no concern at driver unload time.
565  *
566  * Also, the framebuffer will not be removed from the lookup idr - for
567  * user-created framebuffers this will happen in in the rmfb ioctl. For
568  * driver-private objects (e.g. for fbdev) drivers need to explicitly call
569  * drm_framebuffer_unregister_private.
570  */
571 void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
572 {
573         struct drm_device *dev = fb->dev;
574
575         mutex_lock(&dev->mode_config.fb_lock);
576         list_del(&fb->head);
577         dev->mode_config.num_fb--;
578         mutex_unlock(&dev->mode_config.fb_lock);
579 }
580 EXPORT_SYMBOL(drm_framebuffer_cleanup);
581
582 /**
583  * drm_framebuffer_remove - remove and unreference a framebuffer object
584  * @fb: framebuffer to remove
585  *
586  * Scans all the CRTCs and planes in @dev's mode_config.  If they're
587  * using @fb, removes it, setting it to NULL. Then drops the reference to the
588  * passed-in framebuffer. Might take the modeset locks.
589  *
590  * Note that this function optimizes the cleanup away if the caller holds the
591  * last reference to the framebuffer. It is also guaranteed to not take the
592  * modeset locks in this case.
593  */
594 void drm_framebuffer_remove(struct drm_framebuffer *fb)
595 {
596         struct drm_device *dev;
597         struct drm_crtc *crtc;
598         struct drm_plane *plane;
599         struct drm_mode_set set;
600         int ret;
601
602         if (!fb)
603                 return;
604
605         dev = fb->dev;
606
607         WARN_ON(!list_empty(&fb->filp_head));
608
609         /*
610          * drm ABI mandates that we remove any deleted framebuffers from active
611          * useage. But since most sane clients only remove framebuffers they no
612          * longer need, try to optimize this away.
613          *
614          * Since we're holding a reference ourselves, observing a refcount of 1
615          * means that we're the last holder and can skip it. Also, the refcount
616          * can never increase from 1 again, so we don't need any barriers or
617          * locks.
618          *
619          * Note that userspace could try to race with use and instate a new
620          * usage _after_ we've cleared all current ones. End result will be an
621          * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
622          * in this manner.
623          */
624         if (atomic_read(&fb->refcount.refcount) > 1) {
625                 drm_modeset_lock_all(dev);
626                 /* remove from any CRTC */
627                 drm_for_each_crtc(crtc, dev) {
628                         if (crtc->primary->fb == fb) {
629                                 /* should turn off the crtc */
630                                 memset(&set, 0, sizeof(struct drm_mode_set));
631                                 set.crtc = crtc;
632                                 set.fb = NULL;
633                                 ret = drm_mode_set_config_internal(&set);
634                                 if (ret)
635                                         DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
636                         }
637                 }
638
639                 drm_for_each_plane(plane, dev) {
640                         if (plane->fb == fb)
641                                 drm_plane_force_disable(plane);
642                 }
643                 drm_modeset_unlock_all(dev);
644         }
645
646         drm_framebuffer_unreference(fb);
647 }
648 EXPORT_SYMBOL(drm_framebuffer_remove);
649
650 DEFINE_WW_CLASS(crtc_ww_class);
651
652 /**
653  * drm_crtc_init_with_planes - Initialise a new CRTC object with
654  *    specified primary and cursor planes.
655  * @dev: DRM device
656  * @crtc: CRTC object to init
657  * @primary: Primary plane for CRTC
658  * @cursor: Cursor plane for CRTC
659  * @funcs: callbacks for the new CRTC
660  * @name: printf style format string for the CRTC name, or NULL for default name
661  *
662  * Inits a new object created as base part of a driver crtc object.
663  *
664  * Returns:
665  * Zero on success, error code on failure.
666  */
667 int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
668                               struct drm_plane *primary,
669                               struct drm_plane *cursor,
670                               const struct drm_crtc_funcs *funcs,
671                               const char *name, ...)
672 {
673         struct drm_mode_config *config = &dev->mode_config;
674         int ret;
675
676         WARN_ON(primary && primary->type != DRM_PLANE_TYPE_PRIMARY);
677         WARN_ON(cursor && cursor->type != DRM_PLANE_TYPE_CURSOR);
678
679         crtc->dev = dev;
680         crtc->funcs = funcs;
681
682         drm_modeset_lock_init(&crtc->mutex);
683         ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
684         if (ret)
685                 return ret;
686
687         crtc->base.properties = &crtc->properties;
688
689         list_add_tail(&crtc->head, &config->crtc_list);
690         config->num_crtc++;
691
692         crtc->primary = primary;
693         crtc->cursor = cursor;
694         if (primary)
695                 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
696         if (cursor)
697                 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
698
699         if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
700                 drm_object_attach_property(&crtc->base, config->prop_active, 0);
701                 drm_object_attach_property(&crtc->base, config->prop_mode_id, 0);
702         }
703
704         return 0;
705 }
706 EXPORT_SYMBOL(drm_crtc_init_with_planes);
707
708 /**
709  * drm_crtc_cleanup - Clean up the core crtc usage
710  * @crtc: CRTC to cleanup
711  *
712  * This function cleans up @crtc and removes it from the DRM mode setting
713  * core. Note that the function does *not* free the crtc structure itself,
714  * this is the responsibility of the caller.
715  */
716 void drm_crtc_cleanup(struct drm_crtc *crtc)
717 {
718         struct drm_device *dev = crtc->dev;
719
720         kfree(crtc->gamma_store);
721         crtc->gamma_store = NULL;
722
723         drm_modeset_lock_fini(&crtc->mutex);
724
725         drm_mode_object_put(dev, &crtc->base);
726         list_del(&crtc->head);
727         dev->mode_config.num_crtc--;
728
729         WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
730         if (crtc->state && crtc->funcs->atomic_destroy_state)
731                 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
732
733         memset(crtc, 0, sizeof(*crtc));
734 }
735 EXPORT_SYMBOL(drm_crtc_cleanup);
736
737 /**
738  * drm_crtc_index - find the index of a registered CRTC
739  * @crtc: CRTC to find index for
740  *
741  * Given a registered CRTC, return the index of that CRTC within a DRM
742  * device's list of CRTCs.
743  */
744 unsigned int drm_crtc_index(struct drm_crtc *crtc)
745 {
746         unsigned int index = 0;
747         struct drm_crtc *tmp;
748
749         drm_for_each_crtc(tmp, crtc->dev) {
750                 if (tmp == crtc)
751                         return index;
752
753                 index++;
754         }
755
756         BUG();
757 }
758 EXPORT_SYMBOL(drm_crtc_index);
759
760 /*
761  * drm_mode_remove - remove and free a mode
762  * @connector: connector list to modify
763  * @mode: mode to remove
764  *
765  * Remove @mode from @connector's mode list, then free it.
766  */
767 static void drm_mode_remove(struct drm_connector *connector,
768                             struct drm_display_mode *mode)
769 {
770         list_del(&mode->head);
771         drm_mode_destroy(connector->dev, mode);
772 }
773
774 /**
775  * drm_display_info_set_bus_formats - set the supported bus formats
776  * @info: display info to store bus formats in
777  * @formats: array containing the supported bus formats
778  * @num_formats: the number of entries in the fmts array
779  *
780  * Store the supported bus formats in display info structure.
781  * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
782  * a full list of available formats.
783  */
784 int drm_display_info_set_bus_formats(struct drm_display_info *info,
785                                      const u32 *formats,
786                                      unsigned int num_formats)
787 {
788         u32 *fmts = NULL;
789
790         if (!formats && num_formats)
791                 return -EINVAL;
792
793         if (formats && num_formats) {
794                 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
795                                GFP_KERNEL);
796                 if (!fmts)
797                         return -ENOMEM;
798         }
799
800         kfree(info->bus_formats);
801         info->bus_formats = fmts;
802         info->num_bus_formats = num_formats;
803
804         return 0;
805 }
806 EXPORT_SYMBOL(drm_display_info_set_bus_formats);
807
808 /**
809  * drm_connector_get_cmdline_mode - reads the user's cmdline mode
810  * @connector: connector to quwery
811  *
812  * The kernel supports per-connector configration of its consoles through
813  * use of the video= parameter. This function parses that option and
814  * extracts the user's specified mode (or enable/disable status) for a
815  * particular connector. This is typically only used during the early fbdev
816  * setup.
817  */
818 static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
819 {
820         struct drm_cmdline_mode *mode = &connector->cmdline_mode;
821         char *option = NULL;
822
823         if (fb_get_options(connector->name, &option))
824                 return;
825
826         if (!drm_mode_parse_command_line_for_connector(option,
827                                                        connector,
828                                                        mode))
829                 return;
830
831         if (mode->force) {
832                 const char *s;
833
834                 switch (mode->force) {
835                 case DRM_FORCE_OFF:
836                         s = "OFF";
837                         break;
838                 case DRM_FORCE_ON_DIGITAL:
839                         s = "ON - dig";
840                         break;
841                 default:
842                 case DRM_FORCE_ON:
843                         s = "ON";
844                         break;
845                 }
846
847                 DRM_INFO("forcing %s connector %s\n", connector->name, s);
848                 connector->force = mode->force;
849         }
850
851         DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
852                       connector->name,
853                       mode->xres, mode->yres,
854                       mode->refresh_specified ? mode->refresh : 60,
855                       mode->rb ? " reduced blanking" : "",
856                       mode->margins ? " with margins" : "",
857                       mode->interlace ?  " interlaced" : "");
858 }
859
860 /**
861  * drm_connector_init - Init a preallocated connector
862  * @dev: DRM device
863  * @connector: the connector to init
864  * @funcs: callbacks for this connector
865  * @connector_type: user visible type of the connector
866  *
867  * Initialises a preallocated connector. Connectors should be
868  * subclassed as part of driver connector objects.
869  *
870  * Returns:
871  * Zero on success, error code on failure.
872  */
873 int drm_connector_init(struct drm_device *dev,
874                        struct drm_connector *connector,
875                        const struct drm_connector_funcs *funcs,
876                        int connector_type)
877 {
878         struct drm_mode_config *config = &dev->mode_config;
879         int ret;
880         struct ida *connector_ida =
881                 &drm_connector_enum_list[connector_type].ida;
882
883         drm_modeset_lock_all(dev);
884
885         ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
886         if (ret)
887                 goto out_unlock;
888
889         connector->base.properties = &connector->properties;
890         connector->dev = dev;
891         connector->funcs = funcs;
892         connector->connector_type = connector_type;
893         connector->connector_type_id =
894                 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
895         if (connector->connector_type_id < 0) {
896                 ret = connector->connector_type_id;
897                 goto out_put;
898         }
899         connector->name =
900                 kasprintf(GFP_KERNEL, "%s-%d",
901                           drm_connector_enum_list[connector_type].name,
902                           connector->connector_type_id);
903         if (!connector->name) {
904                 ret = -ENOMEM;
905                 goto out_put;
906         }
907
908         INIT_LIST_HEAD(&connector->probed_modes);
909         INIT_LIST_HEAD(&connector->modes);
910         connector->edid_blob_ptr = NULL;
911         connector->status = connector_status_unknown;
912
913         drm_connector_get_cmdline_mode(connector);
914
915         /* We should add connectors at the end to avoid upsetting the connector
916          * index too much. */
917         list_add_tail(&connector->head, &config->connector_list);
918         config->num_connector++;
919
920         if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
921                 drm_object_attach_property(&connector->base,
922                                               config->edid_property,
923                                               0);
924
925         drm_object_attach_property(&connector->base,
926                                       config->dpms_property, 0);
927
928         if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
929                 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
930         }
931
932         connector->debugfs_entry = NULL;
933
934 out_put:
935         if (ret)
936                 drm_mode_object_put(dev, &connector->base);
937
938 out_unlock:
939         drm_modeset_unlock_all(dev);
940
941         return ret;
942 }
943 EXPORT_SYMBOL(drm_connector_init);
944
945 /**
946  * drm_connector_cleanup - cleans up an initialised connector
947  * @connector: connector to cleanup
948  *
949  * Cleans up the connector but doesn't free the object.
950  */
951 void drm_connector_cleanup(struct drm_connector *connector)
952 {
953         struct drm_device *dev = connector->dev;
954         struct drm_display_mode *mode, *t;
955
956         if (connector->tile_group) {
957                 drm_mode_put_tile_group(dev, connector->tile_group);
958                 connector->tile_group = NULL;
959         }
960
961         list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
962                 drm_mode_remove(connector, mode);
963
964         list_for_each_entry_safe(mode, t, &connector->modes, head)
965                 drm_mode_remove(connector, mode);
966
967         ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
968                    connector->connector_type_id);
969
970         kfree(connector->display_info.bus_formats);
971         drm_mode_object_put(dev, &connector->base);
972         kfree(connector->name);
973         connector->name = NULL;
974         list_del(&connector->head);
975         dev->mode_config.num_connector--;
976
977         WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
978         if (connector->state && connector->funcs->atomic_destroy_state)
979                 connector->funcs->atomic_destroy_state(connector,
980                                                        connector->state);
981
982         memset(connector, 0, sizeof(*connector));
983 }
984 EXPORT_SYMBOL(drm_connector_cleanup);
985
986 /**
987  * drm_connector_index - find the index of a registered connector
988  * @connector: connector to find index for
989  *
990  * Given a registered connector, return the index of that connector within a DRM
991  * device's list of connectors.
992  */
993 unsigned int drm_connector_index(struct drm_connector *connector)
994 {
995         unsigned int index = 0;
996         struct drm_connector *tmp;
997         struct drm_mode_config *config = &connector->dev->mode_config;
998
999         WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
1000
1001         drm_for_each_connector(tmp, connector->dev) {
1002                 if (tmp == connector)
1003                         return index;
1004
1005                 index++;
1006         }
1007
1008         BUG();
1009 }
1010 EXPORT_SYMBOL(drm_connector_index);
1011
1012 /**
1013  * drm_connector_register - register a connector
1014  * @connector: the connector to register
1015  *
1016  * Register userspace interfaces for a connector
1017  *
1018  * Returns:
1019  * Zero on success, error code on failure.
1020  */
1021 int drm_connector_register(struct drm_connector *connector)
1022 {
1023         int ret;
1024
1025         drm_mode_object_register(connector->dev, &connector->base);
1026
1027         ret = drm_sysfs_connector_add(connector);
1028         if (ret)
1029                 return ret;
1030
1031         ret = drm_debugfs_connector_add(connector);
1032         if (ret) {
1033                 drm_sysfs_connector_remove(connector);
1034                 return ret;
1035         }
1036
1037         return 0;
1038 }
1039 EXPORT_SYMBOL(drm_connector_register);
1040
1041 /**
1042  * drm_connector_unregister - unregister a connector
1043  * @connector: the connector to unregister
1044  *
1045  * Unregister userspace interfaces for a connector
1046  */
1047 void drm_connector_unregister(struct drm_connector *connector)
1048 {
1049         drm_sysfs_connector_remove(connector);
1050         drm_debugfs_connector_remove(connector);
1051 }
1052 EXPORT_SYMBOL(drm_connector_unregister);
1053
1054
1055 /**
1056  * drm_connector_unplug_all - unregister connector userspace interfaces
1057  * @dev: drm device
1058  *
1059  * This function unregisters all connector userspace interfaces in sysfs. Should
1060  * be call when the device is disconnected, e.g. from an usb driver's
1061  * ->disconnect callback.
1062  */
1063 void drm_connector_unplug_all(struct drm_device *dev)
1064 {
1065         struct drm_connector *connector;
1066
1067         /* FIXME: taking the mode config mutex ends up in a clash with sysfs */
1068         list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1069                 drm_connector_unregister(connector);
1070
1071 }
1072 EXPORT_SYMBOL(drm_connector_unplug_all);
1073
1074 /**
1075  * drm_encoder_init - Init a preallocated encoder
1076  * @dev: drm device
1077  * @encoder: the encoder to init
1078  * @funcs: callbacks for this encoder
1079  * @encoder_type: user visible type of the encoder
1080  * @name: printf style format string for the encoder name, or NULL for default name
1081  *
1082  * Initialises a preallocated encoder. Encoder should be
1083  * subclassed as part of driver encoder objects.
1084  *
1085  * Returns:
1086  * Zero on success, error code on failure.
1087  */
1088 int drm_encoder_init(struct drm_device *dev,
1089                       struct drm_encoder *encoder,
1090                       const struct drm_encoder_funcs *funcs,
1091                       int encoder_type, const char *name, ...)
1092 {
1093         int ret;
1094
1095         drm_modeset_lock_all(dev);
1096
1097         ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1098         if (ret)
1099                 goto out_unlock;
1100
1101         encoder->dev = dev;
1102         encoder->encoder_type = encoder_type;
1103         encoder->funcs = funcs;
1104         encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1105                                   drm_encoder_enum_list[encoder_type].name,
1106                                   encoder->base.id);
1107         if (!encoder->name) {
1108                 ret = -ENOMEM;
1109                 goto out_put;
1110         }
1111
1112         list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1113         dev->mode_config.num_encoder++;
1114
1115 out_put:
1116         if (ret)
1117                 drm_mode_object_put(dev, &encoder->base);
1118
1119 out_unlock:
1120         drm_modeset_unlock_all(dev);
1121
1122         return ret;
1123 }
1124 EXPORT_SYMBOL(drm_encoder_init);
1125
1126 /**
1127  * drm_encoder_cleanup - cleans up an initialised encoder
1128  * @encoder: encoder to cleanup
1129  *
1130  * Cleans up the encoder but doesn't free the object.
1131  */
1132 void drm_encoder_cleanup(struct drm_encoder *encoder)
1133 {
1134         struct drm_device *dev = encoder->dev;
1135
1136         drm_modeset_lock_all(dev);
1137         drm_mode_object_put(dev, &encoder->base);
1138         kfree(encoder->name);
1139         list_del(&encoder->head);
1140         dev->mode_config.num_encoder--;
1141         drm_modeset_unlock_all(dev);
1142
1143         memset(encoder, 0, sizeof(*encoder));
1144 }
1145 EXPORT_SYMBOL(drm_encoder_cleanup);
1146
1147 /**
1148  * drm_universal_plane_init - Initialize a new universal plane object
1149  * @dev: DRM device
1150  * @plane: plane object to init
1151  * @possible_crtcs: bitmask of possible CRTCs
1152  * @funcs: callbacks for the new plane
1153  * @formats: array of supported formats (%DRM_FORMAT_*)
1154  * @format_count: number of elements in @formats
1155  * @type: type of plane (overlay, primary, cursor)
1156  * @name: printf style format string for the plane name, or NULL for default name
1157  *
1158  * Initializes a plane object of type @type.
1159  *
1160  * Returns:
1161  * Zero on success, error code on failure.
1162  */
1163 int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1164                              unsigned long possible_crtcs,
1165                              const struct drm_plane_funcs *funcs,
1166                              const uint32_t *formats, unsigned int format_count,
1167                              enum drm_plane_type type,
1168                              const char *name, ...)
1169 {
1170         struct drm_mode_config *config = &dev->mode_config;
1171         int ret;
1172
1173         ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1174         if (ret)
1175                 return ret;
1176
1177         drm_modeset_lock_init(&plane->mutex);
1178
1179         plane->base.properties = &plane->properties;
1180         plane->dev = dev;
1181         plane->funcs = funcs;
1182         plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1183                                             GFP_KERNEL);
1184         if (!plane->format_types) {
1185                 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1186                 drm_mode_object_put(dev, &plane->base);
1187                 return -ENOMEM;
1188         }
1189
1190         memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
1191         plane->format_count = format_count;
1192         plane->possible_crtcs = possible_crtcs;
1193         plane->type = type;
1194
1195         list_add_tail(&plane->head, &config->plane_list);
1196         config->num_total_plane++;
1197         if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1198                 config->num_overlay_plane++;
1199
1200         drm_object_attach_property(&plane->base,
1201                                    config->plane_type_property,
1202                                    plane->type);
1203
1204         if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1205                 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1206                 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1207                 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1208                 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1209                 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1210                 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1211                 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1212                 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1213                 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1214                 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1215         }
1216
1217         return 0;
1218 }
1219 EXPORT_SYMBOL(drm_universal_plane_init);
1220
1221 /**
1222  * drm_plane_init - Initialize a legacy plane
1223  * @dev: DRM device
1224  * @plane: plane object to init
1225  * @possible_crtcs: bitmask of possible CRTCs
1226  * @funcs: callbacks for the new plane
1227  * @formats: array of supported formats (%DRM_FORMAT_*)
1228  * @format_count: number of elements in @formats
1229  * @is_primary: plane type (primary vs overlay)
1230  *
1231  * Legacy API to initialize a DRM plane.
1232  *
1233  * New drivers should call drm_universal_plane_init() instead.
1234  *
1235  * Returns:
1236  * Zero on success, error code on failure.
1237  */
1238 int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1239                    unsigned long possible_crtcs,
1240                    const struct drm_plane_funcs *funcs,
1241                    const uint32_t *formats, unsigned int format_count,
1242                    bool is_primary)
1243 {
1244         enum drm_plane_type type;
1245
1246         type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1247         return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1248                                         formats, format_count, type, NULL);
1249 }
1250 EXPORT_SYMBOL(drm_plane_init);
1251
1252 /**
1253  * drm_share_plane_init - Initialize a share plane
1254  * @dev: DRM device
1255  * @plane: plane object to init
1256  * @parent: this plane share some resources with parent plane.
1257  * @possible_crtcs: bitmask of possible CRTCs
1258  * @funcs: callbacks for the new plane
1259  * @formats: array of supported formats (%DRM_FORMAT_*)
1260  * @format_count: number of elements in @formats
1261  * @type: type of plane (overlay, primary, cursor)
1262  *
1263  * With this API, the plane can share hardware resources with other planes.
1264  *
1265  *   --------------------------------------------------
1266  *   |  scanout                                       |
1267  *   |         ------------------                     |
1268  *   |         |  parent plane  |                     |
1269  *   |         | active scanout |                     |
1270  *   |         |                |   ----------------- |
1271  *   |         ------------------   | share plane 1 | |
1272  *   |  -----------------           |active scanout | |
1273  *   |  | share plane 0 |           |               | |
1274  *   |  |active scanout |           ----------------- |
1275  *   |  |               |                             |
1276  *   |  -----------------                             |
1277  *   --------------------------------------------------
1278  *
1279  *    parent plane
1280  *        |---share plane 0
1281  *        |---share plane 1
1282  *        ...
1283  *
1284  * The plane hardware is used when the display scanout run into plane active
1285  * scanout, that means we can reuse the plane hardware resources on plane
1286  * non-active scanout.
1287  *
1288  * Because resource share, There are some limit on share plane: one group
1289  * of share planes need use same zpos, can't not overlap, etc.
1290  *
1291  * Here assume share plane is a universal plane with some limit flags.
1292  * people who use the share plane need know the limit, should call the ioctl
1293  * DRM_CLIENT_CAP_SHARE_PLANES, and judge the planes limit before use it.
1294  *
1295  * Returns:
1296  * Zero on success, error code on failure.
1297  */
1298
1299 int drm_share_plane_init(struct drm_device *dev, struct drm_plane *plane,
1300                          struct drm_plane *parent,
1301                          unsigned long possible_crtcs,
1302                          const struct drm_plane_funcs *funcs,
1303                          const uint32_t *formats, unsigned int format_count,
1304                          enum drm_plane_type type)
1305 {
1306         struct drm_mode_config *config = &dev->mode_config;
1307         int ret;
1308         int share_id;
1309
1310         /*
1311          * TODO: only verified on ATOMIC drm driver.
1312          */
1313         if (!drm_core_check_feature(dev, DRIVER_ATOMIC))
1314                 return -EINVAL;
1315
1316         ret = drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1317                                        formats, format_count, type, NULL);
1318         if (ret)
1319                 return ret;
1320
1321         if (parent) {
1322                 /*
1323                  * Can't support more than two level plane share.
1324                  */
1325                 WARN_ON(parent->parent);
1326                 share_id = parent->base.id;
1327                 plane->parent = parent;
1328
1329                 config->num_share_plane++;
1330                 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1331                         config->num_share_overlay_plane++;
1332         } else {
1333                 share_id = plane->base.id;
1334         }
1335
1336         drm_object_attach_property(&plane->base,
1337                                    config->prop_share_id, share_id);
1338         return 0;
1339 }
1340 EXPORT_SYMBOL(drm_share_plane_init);
1341
1342 /**
1343  * drm_plane_cleanup - Clean up the core plane usage
1344  * @plane: plane to cleanup
1345  *
1346  * This function cleans up @plane and removes it from the DRM mode setting
1347  * core. Note that the function does *not* free the plane structure itself,
1348  * this is the responsibility of the caller.
1349  */
1350 void drm_plane_cleanup(struct drm_plane *plane)
1351 {
1352         struct drm_device *dev = plane->dev;
1353
1354         drm_modeset_lock_all(dev);
1355         kfree(plane->format_types);
1356         drm_mode_object_put(dev, &plane->base);
1357
1358         BUG_ON(list_empty(&plane->head));
1359
1360         list_del(&plane->head);
1361         dev->mode_config.num_total_plane--;
1362         if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1363                 dev->mode_config.num_overlay_plane--;
1364         if (plane->parent) {
1365                 dev->mode_config.num_share_plane--;
1366                 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1367                         dev->mode_config.num_share_overlay_plane--;
1368         }
1369         drm_modeset_unlock_all(dev);
1370
1371         WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1372         if (plane->state && plane->funcs->atomic_destroy_state)
1373                 plane->funcs->atomic_destroy_state(plane, plane->state);
1374
1375         memset(plane, 0, sizeof(*plane));
1376 }
1377 EXPORT_SYMBOL(drm_plane_cleanup);
1378
1379 /**
1380  * drm_plane_index - find the index of a registered plane
1381  * @plane: plane to find index for
1382  *
1383  * Given a registered plane, return the index of that CRTC within a DRM
1384  * device's list of planes.
1385  */
1386 unsigned int drm_plane_index(struct drm_plane *plane)
1387 {
1388         unsigned int index = 0;
1389         struct drm_plane *tmp;
1390
1391         drm_for_each_plane(tmp, plane->dev) {
1392                 if (tmp == plane)
1393                         return index;
1394
1395                 index++;
1396         }
1397
1398         BUG();
1399 }
1400 EXPORT_SYMBOL(drm_plane_index);
1401
1402 /**
1403  * drm_plane_from_index - find the registered plane at an index
1404  * @dev: DRM device
1405  * @idx: index of registered plane to find for
1406  *
1407  * Given a plane index, return the registered plane from DRM device's
1408  * list of planes with matching index.
1409  */
1410 struct drm_plane *
1411 drm_plane_from_index(struct drm_device *dev, int idx)
1412 {
1413         struct drm_plane *plane;
1414         unsigned int i = 0;
1415
1416         drm_for_each_plane(plane, dev) {
1417                 if (i == idx)
1418                         return plane;
1419                 i++;
1420         }
1421         return NULL;
1422 }
1423 EXPORT_SYMBOL(drm_plane_from_index);
1424
1425 /**
1426  * drm_plane_force_disable - Forcibly disable a plane
1427  * @plane: plane to disable
1428  *
1429  * Forces the plane to be disabled.
1430  *
1431  * Used when the plane's current framebuffer is destroyed,
1432  * and when restoring fbdev mode.
1433  */
1434 void drm_plane_force_disable(struct drm_plane *plane)
1435 {
1436         int ret;
1437
1438         if (!plane->fb)
1439                 return;
1440
1441         plane->old_fb = plane->fb;
1442         ret = plane->funcs->disable_plane(plane);
1443         if (ret) {
1444                 DRM_ERROR("failed to disable plane with busy fb\n");
1445                 plane->old_fb = NULL;
1446                 return;
1447         }
1448         /* disconnect the plane from the fb and crtc: */
1449         drm_framebuffer_unreference(plane->old_fb);
1450         plane->old_fb = NULL;
1451         plane->fb = NULL;
1452         plane->crtc = NULL;
1453 }
1454 EXPORT_SYMBOL(drm_plane_force_disable);
1455
1456 static int drm_mode_create_standard_properties(struct drm_device *dev)
1457 {
1458         struct drm_property *prop;
1459
1460         /*
1461          * Standard properties (apply to all connectors)
1462          */
1463         prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1464                                    DRM_MODE_PROP_IMMUTABLE,
1465                                    "EDID", 0);
1466         if (!prop)
1467                 return -ENOMEM;
1468         dev->mode_config.edid_property = prop;
1469
1470         prop = drm_property_create_enum(dev, 0,
1471                                    "DPMS", drm_dpms_enum_list,
1472                                    ARRAY_SIZE(drm_dpms_enum_list));
1473         if (!prop)
1474                 return -ENOMEM;
1475         dev->mode_config.dpms_property = prop;
1476
1477         prop = drm_property_create(dev,
1478                                    DRM_MODE_PROP_BLOB |
1479                                    DRM_MODE_PROP_IMMUTABLE,
1480                                    "PATH", 0);
1481         if (!prop)
1482                 return -ENOMEM;
1483         dev->mode_config.path_property = prop;
1484
1485         prop = drm_property_create(dev,
1486                                    DRM_MODE_PROP_BLOB |
1487                                    DRM_MODE_PROP_IMMUTABLE,
1488                                    "TILE", 0);
1489         if (!prop)
1490                 return -ENOMEM;
1491         dev->mode_config.tile_property = prop;
1492
1493         prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1494                                         "type", drm_plane_type_enum_list,
1495                                         ARRAY_SIZE(drm_plane_type_enum_list));
1496         if (!prop)
1497                 return -ENOMEM;
1498         dev->mode_config.plane_type_property = prop;
1499
1500         prop = drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE,
1501                                          "SHARE_ID", 0, UINT_MAX);
1502         if (!prop)
1503                 return -ENOMEM;
1504
1505         dev->mode_config.prop_share_id = prop;
1506         prop = drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE,
1507                                          "SHARE_FLAGS", 0, UINT_MAX);
1508         if (!prop)
1509                 return -ENOMEM;
1510         dev->mode_config.prop_share_flags = prop;
1511
1512         prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1513                         "SRC_X", 0, UINT_MAX);
1514         if (!prop)
1515                 return -ENOMEM;
1516         dev->mode_config.prop_src_x = prop;
1517
1518         prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1519                         "SRC_Y", 0, UINT_MAX);
1520         if (!prop)
1521                 return -ENOMEM;
1522         dev->mode_config.prop_src_y = prop;
1523
1524         prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1525                         "SRC_W", 0, UINT_MAX);
1526         if (!prop)
1527                 return -ENOMEM;
1528         dev->mode_config.prop_src_w = prop;
1529
1530         prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1531                         "SRC_H", 0, UINT_MAX);
1532         if (!prop)
1533                 return -ENOMEM;
1534         dev->mode_config.prop_src_h = prop;
1535
1536         prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1537                         "CRTC_X", INT_MIN, INT_MAX);
1538         if (!prop)
1539                 return -ENOMEM;
1540         dev->mode_config.prop_crtc_x = prop;
1541
1542         prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1543                         "CRTC_Y", INT_MIN, INT_MAX);
1544         if (!prop)
1545                 return -ENOMEM;
1546         dev->mode_config.prop_crtc_y = prop;
1547
1548         prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1549                         "CRTC_W", 0, INT_MAX);
1550         if (!prop)
1551                 return -ENOMEM;
1552         dev->mode_config.prop_crtc_w = prop;
1553
1554         prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1555                         "CRTC_H", 0, INT_MAX);
1556         if (!prop)
1557                 return -ENOMEM;
1558         dev->mode_config.prop_crtc_h = prop;
1559
1560         prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1561                         "FB_ID", DRM_MODE_OBJECT_FB);
1562         if (!prop)
1563                 return -ENOMEM;
1564         dev->mode_config.prop_fb_id = prop;
1565
1566         prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1567                         "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1568         if (!prop)
1569                 return -ENOMEM;
1570         dev->mode_config.prop_crtc_id = prop;
1571
1572         prop = drm_property_create_bool(dev, DRM_MODE_PROP_ATOMIC,
1573                         "ACTIVE");
1574         if (!prop)
1575                 return -ENOMEM;
1576         dev->mode_config.prop_active = prop;
1577
1578         prop = drm_property_create(dev,
1579                         DRM_MODE_PROP_ATOMIC | DRM_MODE_PROP_BLOB,
1580                         "MODE_ID", 0);
1581         if (!prop)
1582                 return -ENOMEM;
1583         dev->mode_config.prop_mode_id = prop;
1584
1585         return 0;
1586 }
1587
1588 /**
1589  * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1590  * @dev: DRM device
1591  *
1592  * Called by a driver the first time a DVI-I connector is made.
1593  */
1594 int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1595 {
1596         struct drm_property *dvi_i_selector;
1597         struct drm_property *dvi_i_subconnector;
1598
1599         if (dev->mode_config.dvi_i_select_subconnector_property)
1600                 return 0;
1601
1602         dvi_i_selector =
1603                 drm_property_create_enum(dev, 0,
1604                                     "select subconnector",
1605                                     drm_dvi_i_select_enum_list,
1606                                     ARRAY_SIZE(drm_dvi_i_select_enum_list));
1607         dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1608
1609         dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1610                                     "subconnector",
1611                                     drm_dvi_i_subconnector_enum_list,
1612                                     ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
1613         dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1614
1615         return 0;
1616 }
1617 EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1618
1619 /**
1620  * drm_create_tv_properties - create TV specific connector properties
1621  * @dev: DRM device
1622  * @num_modes: number of different TV formats (modes) supported
1623  * @modes: array of pointers to strings containing name of each format
1624  *
1625  * Called by a driver's TV initialization routine, this function creates
1626  * the TV specific connector properties for a given device.  Caller is
1627  * responsible for allocating a list of format names and passing them to
1628  * this routine.
1629  */
1630 int drm_mode_create_tv_properties(struct drm_device *dev,
1631                                   unsigned int num_modes,
1632                                   const char * const modes[])
1633 {
1634         struct drm_property *tv_selector;
1635         struct drm_property *tv_subconnector;
1636         unsigned int i;
1637
1638         if (dev->mode_config.tv_select_subconnector_property)
1639                 return 0;
1640
1641         /*
1642          * Basic connector properties
1643          */
1644         tv_selector = drm_property_create_enum(dev, 0,
1645                                           "select subconnector",
1646                                           drm_tv_select_enum_list,
1647                                           ARRAY_SIZE(drm_tv_select_enum_list));
1648         if (!tv_selector)
1649                 goto nomem;
1650
1651         dev->mode_config.tv_select_subconnector_property = tv_selector;
1652
1653         tv_subconnector =
1654                 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1655                                     "subconnector",
1656                                     drm_tv_subconnector_enum_list,
1657                                     ARRAY_SIZE(drm_tv_subconnector_enum_list));
1658         if (!tv_subconnector)
1659                 goto nomem;
1660         dev->mode_config.tv_subconnector_property = tv_subconnector;
1661
1662         /*
1663          * Other, TV specific properties: margins & TV modes.
1664          */
1665         dev->mode_config.tv_left_margin_property =
1666                 drm_property_create_range(dev, 0, "left margin", 0, 100);
1667         if (!dev->mode_config.tv_left_margin_property)
1668                 goto nomem;
1669
1670         dev->mode_config.tv_right_margin_property =
1671                 drm_property_create_range(dev, 0, "right margin", 0, 100);
1672         if (!dev->mode_config.tv_right_margin_property)
1673                 goto nomem;
1674
1675         dev->mode_config.tv_top_margin_property =
1676                 drm_property_create_range(dev, 0, "top margin", 0, 100);
1677         if (!dev->mode_config.tv_top_margin_property)
1678                 goto nomem;
1679
1680         dev->mode_config.tv_bottom_margin_property =
1681                 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
1682         if (!dev->mode_config.tv_bottom_margin_property)
1683                 goto nomem;
1684
1685         dev->mode_config.tv_mode_property =
1686                 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1687                                     "mode", num_modes);
1688         if (!dev->mode_config.tv_mode_property)
1689                 goto nomem;
1690
1691         for (i = 0; i < num_modes; i++)
1692                 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1693                                       i, modes[i]);
1694
1695         dev->mode_config.tv_brightness_property =
1696                 drm_property_create_range(dev, 0, "brightness", 0, 100);
1697         if (!dev->mode_config.tv_brightness_property)
1698                 goto nomem;
1699
1700         dev->mode_config.tv_contrast_property =
1701                 drm_property_create_range(dev, 0, "contrast", 0, 100);
1702         if (!dev->mode_config.tv_contrast_property)
1703                 goto nomem;
1704
1705         dev->mode_config.tv_flicker_reduction_property =
1706                 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
1707         if (!dev->mode_config.tv_flicker_reduction_property)
1708                 goto nomem;
1709
1710         dev->mode_config.tv_overscan_property =
1711                 drm_property_create_range(dev, 0, "overscan", 0, 100);
1712         if (!dev->mode_config.tv_overscan_property)
1713                 goto nomem;
1714
1715         dev->mode_config.tv_saturation_property =
1716                 drm_property_create_range(dev, 0, "saturation", 0, 100);
1717         if (!dev->mode_config.tv_saturation_property)
1718                 goto nomem;
1719
1720         dev->mode_config.tv_hue_property =
1721                 drm_property_create_range(dev, 0, "hue", 0, 100);
1722         if (!dev->mode_config.tv_hue_property)
1723                 goto nomem;
1724
1725         return 0;
1726 nomem:
1727         return -ENOMEM;
1728 }
1729 EXPORT_SYMBOL(drm_mode_create_tv_properties);
1730
1731 /**
1732  * drm_mode_create_scaling_mode_property - create scaling mode property
1733  * @dev: DRM device
1734  *
1735  * Called by a driver the first time it's needed, must be attached to desired
1736  * connectors.
1737  */
1738 int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1739 {
1740         struct drm_property *scaling_mode;
1741
1742         if (dev->mode_config.scaling_mode_property)
1743                 return 0;
1744
1745         scaling_mode =
1746                 drm_property_create_enum(dev, 0, "scaling mode",
1747                                 drm_scaling_mode_enum_list,
1748                                     ARRAY_SIZE(drm_scaling_mode_enum_list));
1749
1750         dev->mode_config.scaling_mode_property = scaling_mode;
1751
1752         return 0;
1753 }
1754 EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1755
1756 /**
1757  * drm_mode_create_aspect_ratio_property - create aspect ratio property
1758  * @dev: DRM device
1759  *
1760  * Called by a driver the first time it's needed, must be attached to desired
1761  * connectors.
1762  *
1763  * Returns:
1764  * Zero on success, negative errno on failure.
1765  */
1766 int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1767 {
1768         if (dev->mode_config.aspect_ratio_property)
1769                 return 0;
1770
1771         dev->mode_config.aspect_ratio_property =
1772                 drm_property_create_enum(dev, 0, "aspect ratio",
1773                                 drm_aspect_ratio_enum_list,
1774                                 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1775
1776         if (dev->mode_config.aspect_ratio_property == NULL)
1777                 return -ENOMEM;
1778
1779         return 0;
1780 }
1781 EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1782
1783 /**
1784  * drm_mode_create_dirty_property - create dirty property
1785  * @dev: DRM device
1786  *
1787  * Called by a driver the first time it's needed, must be attached to desired
1788  * connectors.
1789  */
1790 int drm_mode_create_dirty_info_property(struct drm_device *dev)
1791 {
1792         struct drm_property *dirty_info;
1793
1794         if (dev->mode_config.dirty_info_property)
1795                 return 0;
1796
1797         dirty_info =
1798                 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1799                                     "dirty",
1800                                     drm_dirty_info_enum_list,
1801                                     ARRAY_SIZE(drm_dirty_info_enum_list));
1802         dev->mode_config.dirty_info_property = dirty_info;
1803
1804         return 0;
1805 }
1806 EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1807
1808 /**
1809  * drm_mode_create_suggested_offset_properties - create suggests offset properties
1810  * @dev: DRM device
1811  *
1812  * Create the the suggested x/y offset property for connectors.
1813  */
1814 int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1815 {
1816         if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1817                 return 0;
1818
1819         dev->mode_config.suggested_x_property =
1820                 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1821
1822         dev->mode_config.suggested_y_property =
1823                 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1824
1825         if (dev->mode_config.suggested_x_property == NULL ||
1826             dev->mode_config.suggested_y_property == NULL)
1827                 return -ENOMEM;
1828         return 0;
1829 }
1830 EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1831
1832 /**
1833  * drm_mode_getresources - get graphics configuration
1834  * @dev: drm device for the ioctl
1835  * @data: data pointer for the ioctl
1836  * @file_priv: drm file for the ioctl call
1837  *
1838  * Construct a set of configuration description structures and return
1839  * them to the user, including CRTC, connector and framebuffer configuration.
1840  *
1841  * Called by the user via ioctl.
1842  *
1843  * Returns:
1844  * Zero on success, negative errno on failure.
1845  */
1846 int drm_mode_getresources(struct drm_device *dev, void *data,
1847                           struct drm_file *file_priv)
1848 {
1849         struct drm_mode_card_res *card_res = data;
1850         struct list_head *lh;
1851         struct drm_framebuffer *fb;
1852         struct drm_connector *connector;
1853         struct drm_crtc *crtc;
1854         struct drm_encoder *encoder;
1855         int ret = 0;
1856         int connector_count = 0;
1857         int crtc_count = 0;
1858         int fb_count = 0;
1859         int encoder_count = 0;
1860         int copied = 0;
1861         uint32_t __user *fb_id;
1862         uint32_t __user *crtc_id;
1863         uint32_t __user *connector_id;
1864         uint32_t __user *encoder_id;
1865
1866         if (!drm_core_check_feature(dev, DRIVER_MODESET))
1867                 return -EINVAL;
1868
1869
1870         mutex_lock(&file_priv->fbs_lock);
1871         /*
1872          * For the non-control nodes we need to limit the list of resources
1873          * by IDs in the group list for this node
1874          */
1875         list_for_each(lh, &file_priv->fbs)
1876                 fb_count++;
1877
1878         /* handle this in 4 parts */
1879         /* FBs */
1880         if (card_res->count_fbs >= fb_count) {
1881                 copied = 0;
1882                 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1883                 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1884                         if (put_user(fb->base.id, fb_id + copied)) {
1885                                 mutex_unlock(&file_priv->fbs_lock);
1886                                 return -EFAULT;
1887                         }
1888                         copied++;
1889                 }
1890         }
1891         card_res->count_fbs = fb_count;
1892         mutex_unlock(&file_priv->fbs_lock);
1893
1894         /* mode_config.mutex protects the connector list against e.g. DP MST
1895          * connector hot-adding. CRTC/Plane lists are invariant. */
1896         mutex_lock(&dev->mode_config.mutex);
1897         drm_for_each_crtc(crtc, dev)
1898                 crtc_count++;
1899
1900         drm_for_each_connector(connector, dev)
1901                 connector_count++;
1902
1903         drm_for_each_encoder(encoder, dev)
1904                 encoder_count++;
1905
1906         card_res->max_height = dev->mode_config.max_height;
1907         card_res->min_height = dev->mode_config.min_height;
1908         card_res->max_width = dev->mode_config.max_width;
1909         card_res->min_width = dev->mode_config.min_width;
1910
1911         /* CRTCs */
1912         if (card_res->count_crtcs >= crtc_count) {
1913                 copied = 0;
1914                 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
1915                 drm_for_each_crtc(crtc, dev) {
1916                         DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
1917                         if (put_user(crtc->base.id, crtc_id + copied)) {
1918                                 ret = -EFAULT;
1919                                 goto out;
1920                         }
1921                         copied++;
1922                 }
1923         }
1924         card_res->count_crtcs = crtc_count;
1925
1926         /* Encoders */
1927         if (card_res->count_encoders >= encoder_count) {
1928                 copied = 0;
1929                 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
1930                 drm_for_each_encoder(encoder, dev) {
1931                         DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1932                                         encoder->name);
1933                         if (put_user(encoder->base.id, encoder_id +
1934                                      copied)) {
1935                                 ret = -EFAULT;
1936                                 goto out;
1937                         }
1938                         copied++;
1939                 }
1940         }
1941         card_res->count_encoders = encoder_count;
1942
1943         /* Connectors */
1944         if (card_res->count_connectors >= connector_count) {
1945                 copied = 0;
1946                 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
1947                 drm_for_each_connector(connector, dev) {
1948                         DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1949                                 connector->base.id,
1950                                 connector->name);
1951                         if (put_user(connector->base.id,
1952                                      connector_id + copied)) {
1953                                 ret = -EFAULT;
1954                                 goto out;
1955                         }
1956                         copied++;
1957                 }
1958         }
1959         card_res->count_connectors = connector_count;
1960
1961         DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
1962                   card_res->count_connectors, card_res->count_encoders);
1963
1964 out:
1965         mutex_unlock(&dev->mode_config.mutex);
1966         return ret;
1967 }
1968
1969 /**
1970  * drm_mode_getcrtc - get CRTC configuration
1971  * @dev: drm device for the ioctl
1972  * @data: data pointer for the ioctl
1973  * @file_priv: drm file for the ioctl call
1974  *
1975  * Construct a CRTC configuration structure to return to the user.
1976  *
1977  * Called by the user via ioctl.
1978  *
1979  * Returns:
1980  * Zero on success, negative errno on failure.
1981  */
1982 int drm_mode_getcrtc(struct drm_device *dev,
1983                      void *data, struct drm_file *file_priv)
1984 {
1985         struct drm_mode_crtc *crtc_resp = data;
1986         struct drm_crtc *crtc;
1987
1988         if (!drm_core_check_feature(dev, DRIVER_MODESET))
1989                 return -EINVAL;
1990
1991         crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
1992         if (!crtc)
1993                 return -ENOENT;
1994
1995         drm_modeset_lock_crtc(crtc, crtc->primary);
1996         crtc_resp->gamma_size = crtc->gamma_size;
1997         if (crtc->primary->fb)
1998                 crtc_resp->fb_id = crtc->primary->fb->base.id;
1999         else
2000                 crtc_resp->fb_id = 0;
2001
2002         if (crtc->state) {
2003                 crtc_resp->x = crtc->primary->state->src_x >> 16;
2004                 crtc_resp->y = crtc->primary->state->src_y >> 16;
2005                 if (crtc->state->enable) {
2006                         drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->state->mode);
2007                         crtc_resp->mode_valid = 1;
2008
2009                 } else {
2010                         crtc_resp->mode_valid = 0;
2011                 }
2012         } else {
2013                 crtc_resp->x = crtc->x;
2014                 crtc_resp->y = crtc->y;
2015                 if (crtc->enabled) {
2016                         drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->mode);
2017                         crtc_resp->mode_valid = 1;
2018
2019                 } else {
2020                         crtc_resp->mode_valid = 0;
2021                 }
2022         }
2023         drm_modeset_unlock_crtc(crtc);
2024
2025         return 0;
2026 }
2027
2028 static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
2029                                          const struct drm_file *file_priv)
2030 {
2031         /*
2032          * If user-space hasn't configured the driver to expose the stereo 3D
2033          * modes, don't expose them.
2034          */
2035         if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
2036                 return false;
2037
2038         return true;
2039 }
2040
2041 static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
2042 {
2043         /* For atomic drivers only state objects are synchronously updated and
2044          * protected by modeset locks, so check those first. */
2045         if (connector->state)
2046                 return connector->state->best_encoder;
2047         return connector->encoder;
2048 }
2049
2050 /* helper for getconnector and getproperties ioctls */
2051 static int get_properties(struct drm_mode_object *obj, bool atomic,
2052                 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
2053                 uint32_t *arg_count_props)
2054 {
2055         int props_count;
2056         int i, ret, copied;
2057
2058         props_count = obj->properties->count;
2059         if (!atomic)
2060                 props_count -= obj->properties->atomic_count;
2061
2062         if ((*arg_count_props >= props_count) && props_count) {
2063                 for (i = 0, copied = 0; copied < props_count; i++) {
2064                         struct drm_property *prop = obj->properties->properties[i];
2065                         uint64_t val;
2066
2067                         if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
2068                                 continue;
2069
2070                         ret = drm_object_property_get_value(obj, prop, &val);
2071                         if (ret)
2072                                 return ret;
2073
2074                         if (put_user(prop->base.id, prop_ptr + copied))
2075                                 return -EFAULT;
2076
2077                         if (put_user(val, prop_values + copied))
2078                                 return -EFAULT;
2079
2080                         copied++;
2081                 }
2082         }
2083         *arg_count_props = props_count;
2084
2085         return 0;
2086 }
2087
2088 /**
2089  * drm_mode_getconnector - get connector configuration
2090  * @dev: drm device for the ioctl
2091  * @data: data pointer for the ioctl
2092  * @file_priv: drm file for the ioctl call
2093  *
2094  * Construct a connector configuration structure to return to the user.
2095  *
2096  * Called by the user via ioctl.
2097  *
2098  * Returns:
2099  * Zero on success, negative errno on failure.
2100  */
2101 int drm_mode_getconnector(struct drm_device *dev, void *data,
2102                           struct drm_file *file_priv)
2103 {
2104         struct drm_mode_get_connector *out_resp = data;
2105         struct drm_connector *connector;
2106         struct drm_encoder *encoder;
2107         struct drm_display_mode *mode;
2108         int mode_count = 0;
2109         int encoders_count = 0;
2110         int ret = 0;
2111         int copied = 0;
2112         int i;
2113         struct drm_mode_modeinfo u_mode;
2114         struct drm_mode_modeinfo __user *mode_ptr;
2115         uint32_t __user *encoder_ptr;
2116
2117         if (!drm_core_check_feature(dev, DRIVER_MODESET))
2118                 return -EINVAL;
2119
2120         memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2121
2122         DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
2123
2124         mutex_lock(&dev->mode_config.mutex);
2125
2126         connector = drm_connector_find(dev, out_resp->connector_id);
2127         if (!connector) {
2128                 ret = -ENOENT;
2129                 goto out_unlock;
2130         }
2131
2132         for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
2133                 if (connector->encoder_ids[i] != 0)
2134                         encoders_count++;
2135
2136         if (out_resp->count_modes == 0) {
2137                 connector->funcs->fill_modes(connector,
2138                                              dev->mode_config.max_width,
2139                                              dev->mode_config.max_height);
2140         }
2141
2142         /* delayed so we get modes regardless of pre-fill_modes state */
2143         list_for_each_entry(mode, &connector->modes, head)
2144                 if (drm_mode_expose_to_userspace(mode, file_priv))
2145                         mode_count++;
2146
2147         out_resp->connector_id = connector->base.id;
2148         out_resp->connector_type = connector->connector_type;
2149         out_resp->connector_type_id = connector->connector_type_id;
2150         out_resp->mm_width = connector->display_info.width_mm;
2151         out_resp->mm_height = connector->display_info.height_mm;
2152         out_resp->subpixel = connector->display_info.subpixel_order;
2153         out_resp->connection = connector->status;
2154
2155         drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
2156         encoder = drm_connector_get_encoder(connector);
2157         if (encoder)
2158                 out_resp->encoder_id = encoder->base.id;
2159         else
2160                 out_resp->encoder_id = 0;
2161
2162         /*
2163          * This ioctl is called twice, once to determine how much space is
2164          * needed, and the 2nd time to fill it.
2165          */
2166         if ((out_resp->count_modes >= mode_count) && mode_count) {
2167                 copied = 0;
2168                 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
2169                 list_for_each_entry(mode, &connector->modes, head) {
2170                         if (!drm_mode_expose_to_userspace(mode, file_priv))
2171                                 continue;
2172
2173                         drm_mode_convert_to_umode(&u_mode, mode);
2174                         if (copy_to_user(mode_ptr + copied,
2175                                          &u_mode, sizeof(u_mode))) {
2176                                 ret = -EFAULT;
2177                                 goto out;
2178                         }
2179                         copied++;
2180                 }
2181         }
2182         out_resp->count_modes = mode_count;
2183
2184         ret = get_properties(&connector->base, file_priv->atomic,
2185                         (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2186                         (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2187                         &out_resp->count_props);
2188         if (ret)
2189                 goto out;
2190
2191         if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2192                 copied = 0;
2193                 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
2194                 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2195                         if (connector->encoder_ids[i] != 0) {
2196                                 if (put_user(connector->encoder_ids[i],
2197                                              encoder_ptr + copied)) {
2198                                         ret = -EFAULT;
2199                                         goto out;
2200                                 }
2201                                 copied++;
2202                         }
2203                 }
2204         }
2205         out_resp->count_encoders = encoders_count;
2206
2207 out:
2208         drm_modeset_unlock(&dev->mode_config.connection_mutex);
2209
2210 out_unlock:
2211         mutex_unlock(&dev->mode_config.mutex);
2212
2213         return ret;
2214 }
2215
2216 static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2217 {
2218         struct drm_connector *connector;
2219         struct drm_device *dev = encoder->dev;
2220         bool uses_atomic = false;
2221
2222         /* For atomic drivers only state objects are synchronously updated and
2223          * protected by modeset locks, so check those first. */
2224         drm_for_each_connector(connector, dev) {
2225                 if (!connector->state)
2226                         continue;
2227
2228                 uses_atomic = true;
2229
2230                 if (connector->state->best_encoder != encoder)
2231                         continue;
2232
2233                 return connector->state->crtc;
2234         }
2235
2236         /* Don't return stale data (e.g. pending async disable). */
2237         if (uses_atomic)
2238                 return NULL;
2239
2240         return encoder->crtc;
2241 }
2242
2243 /**
2244  * drm_mode_getencoder - get encoder configuration
2245  * @dev: drm device for the ioctl
2246  * @data: data pointer for the ioctl
2247  * @file_priv: drm file for the ioctl call
2248  *
2249  * Construct a encoder configuration structure to return to the user.
2250  *
2251  * Called by the user via ioctl.
2252  *
2253  * Returns:
2254  * Zero on success, negative errno on failure.
2255  */
2256 int drm_mode_getencoder(struct drm_device *dev, void *data,
2257                         struct drm_file *file_priv)
2258 {
2259         struct drm_mode_get_encoder *enc_resp = data;
2260         struct drm_encoder *encoder;
2261         struct drm_crtc *crtc;
2262
2263         if (!drm_core_check_feature(dev, DRIVER_MODESET))
2264                 return -EINVAL;
2265
2266         encoder = drm_encoder_find(dev, enc_resp->encoder_id);
2267         if (!encoder)
2268                 return -ENOENT;
2269
2270         drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
2271         crtc = drm_encoder_get_crtc(encoder);
2272         if (crtc)
2273                 enc_resp->crtc_id = crtc->base.id;
2274         else
2275                 enc_resp->crtc_id = 0;
2276         drm_modeset_unlock(&dev->mode_config.connection_mutex);
2277
2278         enc_resp->encoder_type = encoder->encoder_type;
2279         enc_resp->encoder_id = encoder->base.id;
2280         enc_resp->possible_crtcs = encoder->possible_crtcs;
2281         enc_resp->possible_clones = encoder->possible_clones;
2282
2283         return 0;
2284 }
2285
2286 /**
2287  * drm_mode_getplane_res - enumerate all plane resources
2288  * @dev: DRM device
2289  * @data: ioctl data
2290  * @file_priv: DRM file info
2291  *
2292  * Construct a list of plane ids to return to the user.
2293  *
2294  * Called by the user via ioctl.
2295  *
2296  * Returns:
2297  * Zero on success, negative errno on failure.
2298  */
2299 int drm_mode_getplane_res(struct drm_device *dev, void *data,
2300                           struct drm_file *file_priv)
2301 {
2302         struct drm_mode_get_plane_res *plane_resp = data;
2303         struct drm_mode_config *config;
2304         struct drm_plane *plane;
2305         uint32_t __user *plane_ptr;
2306         int copied = 0;
2307         unsigned num_planes;
2308
2309         if (!drm_core_check_feature(dev, DRIVER_MODESET))
2310                 return -EINVAL;
2311
2312         config = &dev->mode_config;
2313
2314         if (file_priv->universal_planes)
2315                 num_planes = config->num_total_plane;
2316         else
2317                 num_planes = config->num_overlay_plane;
2318         if (!file_priv->share_planes) {
2319                 if (file_priv->universal_planes)
2320                         num_planes -= config->num_share_plane;
2321                 else
2322                         num_planes -= config->num_share_overlay_plane;
2323         }
2324
2325         /*
2326          * This ioctl is called twice, once to determine how much space is
2327          * needed, and the 2nd time to fill it.
2328          */
2329         if (num_planes &&
2330             (plane_resp->count_planes >= num_planes)) {
2331                 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
2332
2333                 /* Plane lists are invariant, no locking needed. */
2334                 drm_for_each_plane(plane, dev) {
2335                         /*
2336                          * Unless userspace set the 'universal planes'
2337                          * capability bit, only advertise overlays.
2338                          */
2339                         if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2340                             !file_priv->universal_planes)
2341                                 continue;
2342                         if (plane->parent && !file_priv->share_planes)
2343                                 continue;
2344
2345                         if (put_user(plane->base.id, plane_ptr + copied))
2346                                 return -EFAULT;
2347                         copied++;
2348                 }
2349         }
2350         plane_resp->count_planes = num_planes;
2351
2352         return 0;
2353 }
2354
2355 /**
2356  * drm_mode_getplane - get plane configuration
2357  * @dev: DRM device
2358  * @data: ioctl data
2359  * @file_priv: DRM file info
2360  *
2361  * Construct a plane configuration structure to return to the user.
2362  *
2363  * Called by the user via ioctl.
2364  *
2365  * Returns:
2366  * Zero on success, negative errno on failure.
2367  */
2368 int drm_mode_getplane(struct drm_device *dev, void *data,
2369                       struct drm_file *file_priv)
2370 {
2371         struct drm_mode_get_plane *plane_resp = data;
2372         struct drm_plane *plane;
2373         uint32_t __user *format_ptr;
2374
2375         if (!drm_core_check_feature(dev, DRIVER_MODESET))
2376                 return -EINVAL;
2377
2378         plane = drm_plane_find(dev, plane_resp->plane_id);
2379         if (!plane)
2380                 return -ENOENT;
2381
2382         drm_modeset_lock(&plane->mutex, NULL);
2383         if (plane->crtc)
2384                 plane_resp->crtc_id = plane->crtc->base.id;
2385         else
2386                 plane_resp->crtc_id = 0;
2387
2388         if (plane->fb)
2389                 plane_resp->fb_id = plane->fb->base.id;
2390         else
2391                 plane_resp->fb_id = 0;
2392         drm_modeset_unlock(&plane->mutex);
2393
2394         plane_resp->plane_id = plane->base.id;
2395         plane_resp->possible_crtcs = plane->possible_crtcs;
2396         plane_resp->gamma_size = 0;
2397
2398         /*
2399          * This ioctl is called twice, once to determine how much space is
2400          * needed, and the 2nd time to fill it.
2401          */
2402         if (plane->format_count &&
2403             (plane_resp->count_format_types >= plane->format_count)) {
2404                 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
2405                 if (copy_to_user(format_ptr,
2406                                  plane->format_types,
2407                                  sizeof(uint32_t) * plane->format_count)) {
2408                         return -EFAULT;
2409                 }
2410         }
2411         plane_resp->count_format_types = plane->format_count;
2412
2413         return 0;
2414 }
2415
2416 /**
2417  * drm_plane_check_pixel_format - Check if the plane supports the pixel format
2418  * @plane: plane to check for format support
2419  * @format: the pixel format
2420  *
2421  * Returns:
2422  * Zero of @plane has @format in its list of supported pixel formats, -EINVAL
2423  * otherwise.
2424  */
2425 int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
2426 {
2427         unsigned int i;
2428
2429         for (i = 0; i < plane->format_count; i++) {
2430                 if (format == plane->format_types[i])
2431                         return 0;
2432         }
2433
2434         return -EINVAL;
2435 }
2436
2437 static int check_src_coords(uint32_t src_x, uint32_t src_y,
2438                             uint32_t src_w, uint32_t src_h,
2439                             const struct drm_framebuffer *fb)
2440 {
2441         unsigned int fb_width, fb_height;
2442
2443         fb_width = fb->width << 16;
2444         fb_height = fb->height << 16;
2445
2446         /* Make sure source coordinates are inside the fb. */
2447         if (src_w > fb_width ||
2448             src_x > fb_width - src_w ||
2449             src_h > fb_height ||
2450             src_y > fb_height - src_h) {
2451                 DRM_DEBUG_KMS("Invalid source coordinates "
2452                               "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
2453                               src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2454                               src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2455                               src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2456                               src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
2457                 return -ENOSPC;
2458         }
2459
2460         return 0;
2461 }
2462
2463 /*
2464  * setplane_internal - setplane handler for internal callers
2465  *
2466  * Note that we assume an extra reference has already been taken on fb.  If the
2467  * update fails, this reference will be dropped before return; if it succeeds,
2468  * the previous framebuffer (if any) will be unreferenced instead.
2469  *
2470  * src_{x,y,w,h} are provided in 16.16 fixed point format
2471  */
2472 static int __setplane_internal(struct drm_plane *plane,
2473                                struct drm_crtc *crtc,
2474                                struct drm_framebuffer *fb,
2475                                int32_t crtc_x, int32_t crtc_y,
2476                                uint32_t crtc_w, uint32_t crtc_h,
2477                                /* src_{x,y,w,h} values are 16.16 fixed point */
2478                                uint32_t src_x, uint32_t src_y,
2479                                uint32_t src_w, uint32_t src_h)
2480 {
2481         int ret = 0;
2482
2483         /* No fb means shut it down */
2484         if (!fb) {
2485                 plane->old_fb = plane->fb;
2486                 ret = plane->funcs->disable_plane(plane);
2487                 if (!ret) {
2488                         plane->crtc = NULL;
2489                         plane->fb = NULL;
2490                 } else {
2491                         plane->old_fb = NULL;
2492                 }
2493                 goto out;
2494         }
2495
2496         /* Check whether this plane is usable on this CRTC */
2497         if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2498                 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2499                 ret = -EINVAL;
2500                 goto out;
2501         }
2502
2503         /* Check whether this plane supports the fb pixel format. */
2504         ret = drm_plane_check_pixel_format(plane, fb->pixel_format);
2505         if (ret) {
2506                 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2507                               drm_get_format_name(fb->pixel_format));
2508                 goto out;
2509         }
2510
2511         /* Give drivers some help against integer overflows */
2512         if (crtc_w > INT_MAX ||
2513             crtc_x > INT_MAX - (int32_t) crtc_w ||
2514             crtc_h > INT_MAX ||
2515             crtc_y > INT_MAX - (int32_t) crtc_h) {
2516                 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2517                               crtc_w, crtc_h, crtc_x, crtc_y);
2518                 ret = -ERANGE;
2519                 goto out;
2520         }
2521
2522         ret = check_src_coords(src_x, src_y, src_w, src_h, fb);
2523         if (ret)
2524                 goto out;
2525
2526         plane->old_fb = plane->fb;
2527         ret = plane->funcs->update_plane(plane, crtc, fb,
2528                                          crtc_x, crtc_y, crtc_w, crtc_h,
2529                                          src_x, src_y, src_w, src_h);
2530         if (!ret) {
2531                 plane->crtc = crtc;
2532                 plane->fb = fb;
2533                 fb = NULL;
2534         } else {
2535                 plane->old_fb = NULL;
2536         }
2537
2538 out:
2539         if (fb)
2540                 drm_framebuffer_unreference(fb);
2541         if (plane->old_fb)
2542                 drm_framebuffer_unreference(plane->old_fb);
2543         plane->old_fb = NULL;
2544
2545         return ret;
2546 }
2547
2548 static int setplane_internal(struct drm_plane *plane,
2549                              struct drm_crtc *crtc,
2550                              struct drm_framebuffer *fb,
2551                              int32_t crtc_x, int32_t crtc_y,
2552                              uint32_t crtc_w, uint32_t crtc_h,
2553                              /* src_{x,y,w,h} values are 16.16 fixed point */
2554                              uint32_t src_x, uint32_t src_y,
2555                              uint32_t src_w, uint32_t src_h)
2556 {
2557         int ret;
2558
2559         drm_modeset_lock_all(plane->dev);
2560         ret = __setplane_internal(plane, crtc, fb,
2561                                   crtc_x, crtc_y, crtc_w, crtc_h,
2562                                   src_x, src_y, src_w, src_h);
2563         drm_modeset_unlock_all(plane->dev);
2564
2565         return ret;
2566 }
2567
2568 /**
2569  * drm_mode_setplane - configure a plane's configuration
2570  * @dev: DRM device
2571  * @data: ioctl data*
2572  * @file_priv: DRM file info
2573  *
2574  * Set plane configuration, including placement, fb, scaling, and other factors.
2575  * Or pass a NULL fb to disable (planes may be disabled without providing a
2576  * valid crtc).
2577  *
2578  * Returns:
2579  * Zero on success, negative errno on failure.
2580  */
2581 int drm_mode_setplane(struct drm_device *dev, void *data,
2582                       struct drm_file *file_priv)
2583 {
2584         struct drm_mode_set_plane *plane_req = data;
2585         struct drm_plane *plane;
2586         struct drm_crtc *crtc = NULL;
2587         struct drm_framebuffer *fb = NULL;
2588
2589         if (!drm_core_check_feature(dev, DRIVER_MODESET))
2590                 return -EINVAL;
2591
2592         /*
2593          * First, find the plane, crtc, and fb objects.  If not available,
2594          * we don't bother to call the driver.
2595          */
2596         plane = drm_plane_find(dev, plane_req->plane_id);
2597         if (!plane) {
2598                 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2599                               plane_req->plane_id);
2600                 return -ENOENT;
2601         }
2602
2603         if (plane_req->fb_id) {
2604                 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2605                 if (!fb) {
2606                         DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2607                                       plane_req->fb_id);
2608                         return -ENOENT;
2609                 }
2610
2611                 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2612                 if (!crtc) {
2613                         DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2614                                       plane_req->crtc_id);
2615                         return -ENOENT;
2616                 }
2617         }
2618
2619         /*
2620          * setplane_internal will take care of deref'ing either the old or new
2621          * framebuffer depending on success.
2622          */
2623         return setplane_internal(plane, crtc, fb,
2624                                  plane_req->crtc_x, plane_req->crtc_y,
2625                                  plane_req->crtc_w, plane_req->crtc_h,
2626                                  plane_req->src_x, plane_req->src_y,
2627                                  plane_req->src_w, plane_req->src_h);
2628 }
2629
2630 /**
2631  * drm_mode_set_config_internal - helper to call ->set_config
2632  * @set: modeset config to set
2633  *
2634  * This is a little helper to wrap internal calls to the ->set_config driver
2635  * interface. The only thing it adds is correct refcounting dance.
2636  *
2637  * Returns:
2638  * Zero on success, negative errno on failure.
2639  */
2640 int drm_mode_set_config_internal(struct drm_mode_set *set)
2641 {
2642         struct drm_crtc *crtc = set->crtc;
2643         struct drm_framebuffer *fb;
2644         struct drm_crtc *tmp;
2645         int ret;
2646
2647         /*
2648          * NOTE: ->set_config can also disable other crtcs (if we steal all
2649          * connectors from it), hence we need to refcount the fbs across all
2650          * crtcs. Atomic modeset will have saner semantics ...
2651          */
2652         drm_for_each_crtc(tmp, crtc->dev)
2653                 tmp->primary->old_fb = tmp->primary->fb;
2654
2655         fb = set->fb;
2656
2657         ret = crtc->funcs->set_config(set);
2658         if (ret == 0) {
2659                 crtc->primary->crtc = crtc;
2660                 crtc->primary->fb = fb;
2661         }
2662
2663         drm_for_each_crtc(tmp, crtc->dev) {
2664                 if (tmp->primary->fb)
2665                         drm_framebuffer_reference(tmp->primary->fb);
2666                 if (tmp->primary->old_fb)
2667                         drm_framebuffer_unreference(tmp->primary->old_fb);
2668                 tmp->primary->old_fb = NULL;
2669         }
2670
2671         return ret;
2672 }
2673 EXPORT_SYMBOL(drm_mode_set_config_internal);
2674
2675 /**
2676  * drm_crtc_get_hv_timing - Fetches hdisplay/vdisplay for given mode
2677  * @mode: mode to query
2678  * @hdisplay: hdisplay value to fill in
2679  * @vdisplay: vdisplay value to fill in
2680  *
2681  * The vdisplay value will be doubled if the specified mode is a stereo mode of
2682  * the appropriate layout.
2683  */
2684 void drm_crtc_get_hv_timing(const struct drm_display_mode *mode,
2685                             int *hdisplay, int *vdisplay)
2686 {
2687         struct drm_display_mode adjusted;
2688
2689         drm_mode_copy(&adjusted, mode);
2690         drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY);
2691         *hdisplay = adjusted.crtc_hdisplay;
2692         *vdisplay = adjusted.crtc_vdisplay;
2693 }
2694 EXPORT_SYMBOL(drm_crtc_get_hv_timing);
2695
2696 /**
2697  * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2698  *     CRTC viewport
2699  * @crtc: CRTC that framebuffer will be displayed on
2700  * @x: x panning
2701  * @y: y panning
2702  * @mode: mode that framebuffer will be displayed under
2703  * @fb: framebuffer to check size of
2704  */
2705 int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2706                             int x, int y,
2707                             const struct drm_display_mode *mode,
2708                             const struct drm_framebuffer *fb)
2709
2710 {
2711         int hdisplay, vdisplay;
2712
2713         drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
2714
2715         if (crtc->state &&
2716             crtc->primary->state->rotation & (BIT(DRM_ROTATE_90) |
2717                                               BIT(DRM_ROTATE_270)))
2718                 swap(hdisplay, vdisplay);
2719
2720         return check_src_coords(x << 16, y << 16,
2721                                 hdisplay << 16, vdisplay << 16, fb);
2722 }
2723 EXPORT_SYMBOL(drm_crtc_check_viewport);
2724
2725 /**
2726  * drm_mode_setcrtc - set CRTC configuration
2727  * @dev: drm device for the ioctl
2728  * @data: data pointer for the ioctl
2729  * @file_priv: drm file for the ioctl call
2730  *
2731  * Build a new CRTC configuration based on user request.
2732  *
2733  * Called by the user via ioctl.
2734  *
2735  * Returns:
2736  * Zero on success, negative errno on failure.
2737  */
2738 int drm_mode_setcrtc(struct drm_device *dev, void *data,
2739                      struct drm_file *file_priv)
2740 {
2741         struct drm_mode_config *config = &dev->mode_config;
2742         struct drm_mode_crtc *crtc_req = data;
2743         struct drm_crtc *crtc;
2744         struct drm_connector **connector_set = NULL, *connector;
2745         struct drm_framebuffer *fb = NULL;
2746         struct drm_display_mode *mode = NULL;
2747         struct drm_mode_set set;
2748         uint32_t __user *set_connectors_ptr;
2749         int ret;
2750         int i;
2751
2752         if (!drm_core_check_feature(dev, DRIVER_MODESET))
2753                 return -EINVAL;
2754
2755         /*
2756          * Universal plane src offsets are only 16.16, prevent havoc for
2757          * drivers using universal plane code internally.
2758          */
2759         if (crtc_req->x & 0xffff0000 || crtc_req->y & 0xffff0000)
2760                 return -ERANGE;
2761
2762         drm_modeset_lock_all(dev);
2763         crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2764         if (!crtc) {
2765                 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
2766                 ret = -ENOENT;
2767                 goto out;
2768         }
2769         DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
2770
2771         if (crtc_req->mode_valid) {
2772                 /* If we have a mode we need a framebuffer. */
2773                 /* If we pass -1, set the mode with the currently bound fb */
2774                 if (crtc_req->fb_id == -1) {
2775                         if (!crtc->primary->fb) {
2776                                 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2777                                 ret = -EINVAL;
2778                                 goto out;
2779                         }
2780                         fb = crtc->primary->fb;
2781                         /* Make refcounting symmetric with the lookup path. */
2782                         drm_framebuffer_reference(fb);
2783                 } else {
2784                         fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2785                         if (!fb) {
2786                                 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2787                                                 crtc_req->fb_id);
2788                                 ret = -ENOENT;
2789                                 goto out;
2790                         }
2791                 }
2792
2793                 mode = drm_mode_create(dev);
2794                 if (!mode) {
2795                         ret = -ENOMEM;
2796                         goto out;
2797                 }
2798
2799                 ret = drm_mode_convert_umode(mode, &crtc_req->mode);
2800                 if (ret) {
2801                         DRM_DEBUG_KMS("Invalid mode\n");
2802                         goto out;
2803                 }
2804
2805                 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
2806
2807                 /*
2808                  * Check whether the primary plane supports the fb pixel format.
2809                  * Drivers not implementing the universal planes API use a
2810                  * default formats list provided by the DRM core which doesn't
2811                  * match real hardware capabilities. Skip the check in that
2812                  * case.
2813                  */
2814                 if (!crtc->primary->format_default) {
2815                         ret = drm_plane_check_pixel_format(crtc->primary,
2816                                                            fb->pixel_format);
2817                         if (ret) {
2818                                 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2819                                         drm_get_format_name(fb->pixel_format));
2820                                 goto out;
2821                         }
2822                 }
2823
2824                 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2825                                               mode, fb);
2826                 if (ret)
2827                         goto out;
2828
2829         }
2830
2831         if (crtc_req->count_connectors == 0 && mode) {
2832                 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
2833                 ret = -EINVAL;
2834                 goto out;
2835         }
2836
2837         if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
2838                 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
2839                           crtc_req->count_connectors);
2840                 ret = -EINVAL;
2841                 goto out;
2842         }
2843
2844         if (crtc_req->count_connectors > 0) {
2845                 u32 out_id;
2846
2847                 /* Avoid unbounded kernel memory allocation */
2848                 if (crtc_req->count_connectors > config->num_connector) {
2849                         ret = -EINVAL;
2850                         goto out;
2851                 }
2852
2853                 connector_set = kmalloc_array(crtc_req->count_connectors,
2854                                               sizeof(struct drm_connector *),
2855                                               GFP_KERNEL);
2856                 if (!connector_set) {
2857                         ret = -ENOMEM;
2858                         goto out;
2859                 }
2860
2861                 for (i = 0; i < crtc_req->count_connectors; i++) {
2862                         set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
2863                         if (get_user(out_id, &set_connectors_ptr[i])) {
2864                                 ret = -EFAULT;
2865                                 goto out;
2866                         }
2867
2868                         connector = drm_connector_find(dev, out_id);
2869                         if (!connector) {
2870                                 DRM_DEBUG_KMS("Connector id %d unknown\n",
2871                                                 out_id);
2872                                 ret = -ENOENT;
2873                                 goto out;
2874                         }
2875                         DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2876                                         connector->base.id,
2877                                         connector->name);
2878
2879                         connector_set[i] = connector;
2880                 }
2881         }
2882
2883         set.crtc = crtc;
2884         set.x = crtc_req->x;
2885         set.y = crtc_req->y;
2886         set.mode = mode;
2887         set.connectors = connector_set;
2888         set.num_connectors = crtc_req->count_connectors;
2889         set.fb = fb;
2890         ret = drm_mode_set_config_internal(&set);
2891
2892 out:
2893         if (fb)
2894                 drm_framebuffer_unreference(fb);
2895
2896         kfree(connector_set);
2897         drm_mode_destroy(dev, mode);
2898         drm_modeset_unlock_all(dev);
2899         return ret;
2900 }
2901
2902 /**
2903  * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2904  *     universal plane handler call
2905  * @crtc: crtc to update cursor for
2906  * @req: data pointer for the ioctl
2907  * @file_priv: drm file for the ioctl call
2908  *
2909  * Legacy cursor ioctl's work directly with driver buffer handles.  To
2910  * translate legacy ioctl calls into universal plane handler calls, we need to
2911  * wrap the native buffer handle in a drm_framebuffer.
2912  *
2913  * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2914  * buffer with a pitch of 4*width; the universal plane interface should be used
2915  * directly in cases where the hardware can support other buffer settings and
2916  * userspace wants to make use of these capabilities.
2917  *
2918  * Returns:
2919  * Zero on success, negative errno on failure.
2920  */
2921 static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2922                                      struct drm_mode_cursor2 *req,
2923                                      struct drm_file *file_priv)
2924 {
2925         struct drm_device *dev = crtc->dev;
2926         struct drm_framebuffer *fb = NULL;
2927         struct drm_mode_fb_cmd2 fbreq = {
2928                 .width = req->width,
2929                 .height = req->height,
2930                 .pixel_format = DRM_FORMAT_ARGB8888,
2931                 .pitches = { req->width * 4 },
2932                 .handles = { req->handle },
2933         };
2934         int32_t crtc_x, crtc_y;
2935         uint32_t crtc_w = 0, crtc_h = 0;
2936         uint32_t src_w = 0, src_h = 0;
2937         int ret = 0;
2938
2939         BUG_ON(!crtc->cursor);
2940         WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
2941
2942         /*
2943          * Obtain fb we'll be using (either new or existing) and take an extra
2944          * reference to it if fb != null.  setplane will take care of dropping
2945          * the reference if the plane update fails.
2946          */
2947         if (req->flags & DRM_MODE_CURSOR_BO) {
2948                 if (req->handle) {
2949                         fb = internal_framebuffer_create(dev, &fbreq, file_priv);
2950                         if (IS_ERR(fb)) {
2951                                 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2952                                 return PTR_ERR(fb);
2953                         }
2954                 } else {
2955                         fb = NULL;
2956                 }
2957         } else {
2958                 fb = crtc->cursor->fb;
2959                 if (fb)
2960                         drm_framebuffer_reference(fb);
2961         }
2962
2963         if (req->flags & DRM_MODE_CURSOR_MOVE) {
2964                 crtc_x = req->x;
2965                 crtc_y = req->y;
2966         } else {
2967                 crtc_x = crtc->cursor_x;
2968                 crtc_y = crtc->cursor_y;
2969         }
2970
2971         if (fb) {
2972                 crtc_w = fb->width;
2973                 crtc_h = fb->height;
2974                 src_w = fb->width << 16;
2975                 src_h = fb->height << 16;
2976         }
2977
2978         /*
2979          * setplane_internal will take care of deref'ing either the old or new
2980          * framebuffer depending on success.
2981          */
2982         ret = __setplane_internal(crtc->cursor, crtc, fb,
2983                                 crtc_x, crtc_y, crtc_w, crtc_h,
2984                                 0, 0, src_w, src_h);
2985
2986         /* Update successful; save new cursor position, if necessary */
2987         if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2988                 crtc->cursor_x = req->x;
2989                 crtc->cursor_y = req->y;
2990         }
2991
2992         return ret;
2993 }
2994
2995 static int drm_mode_cursor_common(struct drm_device *dev,
2996                                   struct drm_mode_cursor2 *req,
2997                                   struct drm_file *file_priv)
2998 {
2999         struct drm_crtc *crtc;
3000         int ret = 0;
3001
3002         if (!drm_core_check_feature(dev, DRIVER_MODESET))
3003                 return -EINVAL;
3004
3005         if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
3006                 return -EINVAL;
3007
3008         crtc = drm_crtc_find(dev, req->crtc_id);
3009         if (!crtc) {
3010                 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
3011                 return -ENOENT;
3012         }
3013
3014         /*
3015          * If this crtc has a universal cursor plane, call that plane's update
3016          * handler rather than using legacy cursor handlers.
3017          */
3018         drm_modeset_lock_crtc(crtc, crtc->cursor);
3019         if (crtc->cursor) {
3020                 ret = drm_mode_cursor_universal(crtc, req, file_priv);
3021                 goto out;
3022         }
3023
3024         if (req->flags & DRM_MODE_CURSOR_BO) {
3025                 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
3026                         ret = -ENXIO;
3027                         goto out;
3028                 }
3029                 /* Turns off the cursor if handle is 0 */
3030                 if (crtc->funcs->cursor_set2)
3031                         ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
3032                                                       req->width, req->height, req->hot_x, req->hot_y);
3033                 else
3034                         ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
3035                                                       req->width, req->height);
3036         }
3037
3038         if (req->flags & DRM_MODE_CURSOR_MOVE) {
3039                 if (crtc->funcs->cursor_move) {
3040                         ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
3041                 } else {
3042                         ret = -EFAULT;
3043                         goto out;
3044                 }
3045         }
3046 out:
3047         drm_modeset_unlock_crtc(crtc);
3048
3049         return ret;
3050
3051 }
3052
3053
3054 /**
3055  * drm_mode_cursor_ioctl - set CRTC's cursor configuration
3056  * @dev: drm device for the ioctl
3057  * @data: data pointer for the ioctl
3058  * @file_priv: drm file for the ioctl call
3059  *
3060  * Set the cursor configuration based on user request.
3061  *
3062  * Called by the user via ioctl.
3063  *
3064  * Returns:
3065  * Zero on success, negative errno on failure.
3066  */
3067 int drm_mode_cursor_ioctl(struct drm_device *dev,
3068                           void *data, struct drm_file *file_priv)
3069 {
3070         struct drm_mode_cursor *req = data;
3071         struct drm_mode_cursor2 new_req;
3072
3073         memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
3074         new_req.hot_x = new_req.hot_y = 0;
3075
3076         return drm_mode_cursor_common(dev, &new_req, file_priv);
3077 }
3078
3079 /**
3080  * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
3081  * @dev: drm device for the ioctl
3082  * @data: data pointer for the ioctl
3083  * @file_priv: drm file for the ioctl call
3084  *
3085  * Set the cursor configuration based on user request. This implements the 2nd
3086  * version of the cursor ioctl, which allows userspace to additionally specify
3087  * the hotspot of the pointer.
3088  *
3089  * Called by the user via ioctl.
3090  *
3091  * Returns:
3092  * Zero on success, negative errno on failure.
3093  */
3094 int drm_mode_cursor2_ioctl(struct drm_device *dev,
3095                            void *data, struct drm_file *file_priv)
3096 {
3097         struct drm_mode_cursor2 *req = data;
3098
3099         return drm_mode_cursor_common(dev, req, file_priv);
3100 }
3101
3102 /**
3103  * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
3104  * @bpp: bits per pixels
3105  * @depth: bit depth per pixel
3106  *
3107  * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
3108  * Useful in fbdev emulation code, since that deals in those values.
3109  */
3110 uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
3111 {
3112         uint32_t fmt;
3113
3114         switch (bpp) {
3115         case 8:
3116                 fmt = DRM_FORMAT_C8;
3117                 break;
3118         case 16:
3119                 if (depth == 15)
3120                         fmt = DRM_FORMAT_XRGB1555;
3121                 else
3122                         fmt = DRM_FORMAT_RGB565;
3123                 break;
3124         case 24:
3125                 fmt = DRM_FORMAT_RGB888;
3126                 break;
3127         case 32:
3128                 if (depth == 24)
3129                         fmt = DRM_FORMAT_XRGB8888;
3130                 else if (depth == 30)
3131                         fmt = DRM_FORMAT_XRGB2101010;
3132                 else
3133                         fmt = DRM_FORMAT_ARGB8888;
3134                 break;
3135         default:
3136                 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3137                 fmt = DRM_FORMAT_XRGB8888;
3138                 break;
3139         }
3140
3141         return fmt;
3142 }
3143 EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3144
3145 /**
3146  * drm_mode_addfb - add an FB to the graphics configuration
3147  * @dev: drm device for the ioctl
3148  * @data: data pointer for the ioctl
3149  * @file_priv: drm file for the ioctl call
3150  *
3151  * Add a new FB to the specified CRTC, given a user request. This is the
3152  * original addfb ioctl which only supported RGB formats.
3153  *
3154  * Called by the user via ioctl.
3155  *
3156  * Returns:
3157  * Zero on success, negative errno on failure.
3158  */
3159 int drm_mode_addfb(struct drm_device *dev,
3160                    void *data, struct drm_file *file_priv)
3161 {
3162         struct drm_mode_fb_cmd *or = data;
3163         struct drm_mode_fb_cmd2 r = {};
3164         int ret;
3165
3166         /* convert to new format and call new ioctl */
3167         r.fb_id = or->fb_id;
3168         r.width = or->width;
3169         r.height = or->height;
3170         r.pitches[0] = or->pitch;
3171         r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3172         r.handles[0] = or->handle;
3173
3174         ret = drm_mode_addfb2(dev, &r, file_priv);
3175         if (ret)
3176                 return ret;
3177
3178         or->fb_id = r.fb_id;
3179
3180         return 0;
3181 }
3182
3183 static int format_check(const struct drm_mode_fb_cmd2 *r)
3184 {
3185         uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3186
3187         switch (format) {
3188         case DRM_FORMAT_C8:
3189         case DRM_FORMAT_RGB332:
3190         case DRM_FORMAT_BGR233:
3191         case DRM_FORMAT_XRGB4444:
3192         case DRM_FORMAT_XBGR4444:
3193         case DRM_FORMAT_RGBX4444:
3194         case DRM_FORMAT_BGRX4444:
3195         case DRM_FORMAT_ARGB4444:
3196         case DRM_FORMAT_ABGR4444:
3197         case DRM_FORMAT_RGBA4444:
3198         case DRM_FORMAT_BGRA4444:
3199         case DRM_FORMAT_XRGB1555:
3200         case DRM_FORMAT_XBGR1555:
3201         case DRM_FORMAT_RGBX5551:
3202         case DRM_FORMAT_BGRX5551:
3203         case DRM_FORMAT_ARGB1555:
3204         case DRM_FORMAT_ABGR1555:
3205         case DRM_FORMAT_RGBA5551:
3206         case DRM_FORMAT_BGRA5551:
3207         case DRM_FORMAT_RGB565:
3208         case DRM_FORMAT_BGR565:
3209         case DRM_FORMAT_RGB888:
3210         case DRM_FORMAT_BGR888:
3211         case DRM_FORMAT_XRGB8888:
3212         case DRM_FORMAT_XBGR8888:
3213         case DRM_FORMAT_RGBX8888:
3214         case DRM_FORMAT_BGRX8888:
3215         case DRM_FORMAT_ARGB8888:
3216         case DRM_FORMAT_ABGR8888:
3217         case DRM_FORMAT_RGBA8888:
3218         case DRM_FORMAT_BGRA8888:
3219         case DRM_FORMAT_XRGB2101010:
3220         case DRM_FORMAT_XBGR2101010:
3221         case DRM_FORMAT_RGBX1010102:
3222         case DRM_FORMAT_BGRX1010102:
3223         case DRM_FORMAT_ARGB2101010:
3224         case DRM_FORMAT_ABGR2101010:
3225         case DRM_FORMAT_RGBA1010102:
3226         case DRM_FORMAT_BGRA1010102:
3227         case DRM_FORMAT_YUYV:
3228         case DRM_FORMAT_YVYU:
3229         case DRM_FORMAT_UYVY:
3230         case DRM_FORMAT_VYUY:
3231         case DRM_FORMAT_AYUV:
3232         case DRM_FORMAT_NV12:
3233         case DRM_FORMAT_NV21:
3234         case DRM_FORMAT_NV16:
3235         case DRM_FORMAT_NV61:
3236         case DRM_FORMAT_NV24:
3237         case DRM_FORMAT_NV42:
3238         case DRM_FORMAT_YUV410:
3239         case DRM_FORMAT_YVU410:
3240         case DRM_FORMAT_YUV411:
3241         case DRM_FORMAT_YVU411:
3242         case DRM_FORMAT_YUV420:
3243         case DRM_FORMAT_YVU420:
3244         case DRM_FORMAT_YUV422:
3245         case DRM_FORMAT_YVU422:
3246         case DRM_FORMAT_YUV444:
3247         case DRM_FORMAT_YVU444:
3248                 return 0;
3249         default:
3250                 DRM_DEBUG_KMS("invalid pixel format %s\n",
3251                               drm_get_format_name(r->pixel_format));
3252                 return -EINVAL;
3253         }
3254 }
3255
3256 static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
3257 {
3258         int ret, hsub, vsub, num_planes, i;
3259
3260         ret = format_check(r);
3261         if (ret) {
3262                 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3263                               drm_get_format_name(r->pixel_format));
3264                 return ret;
3265         }
3266
3267         hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3268         vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3269         num_planes = drm_format_num_planes(r->pixel_format);
3270
3271         if (r->width == 0 || r->width % hsub) {
3272                 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
3273                 return -EINVAL;
3274         }
3275
3276         if (r->height == 0 || r->height % vsub) {
3277                 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
3278                 return -EINVAL;
3279         }
3280
3281         for (i = 0; i < num_planes; i++) {
3282                 unsigned int width = r->width / (i != 0 ? hsub : 1);
3283                 unsigned int height = r->height / (i != 0 ? vsub : 1);
3284                 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
3285
3286                 if (!r->handles[i]) {
3287                         DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
3288                         return -EINVAL;
3289                 }
3290
3291                 if ((uint64_t) width * cpp > UINT_MAX)
3292                         return -ERANGE;
3293
3294                 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3295                         return -ERANGE;
3296
3297                 if (r->pitches[i] < width * cpp) {
3298                         DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
3299                         return -EINVAL;
3300                 }
3301
3302                 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
3303                         DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
3304                                       r->modifier[i], i);
3305                         return -EINVAL;
3306                 }
3307
3308                 /* modifier specific checks: */
3309                 switch (r->modifier[i]) {
3310                 case DRM_FORMAT_MOD_SAMSUNG_64_32_TILE:
3311                         /* NOTE: the pitch restriction may be lifted later if it turns
3312                          * out that no hw has this restriction:
3313                          */
3314                         if (r->pixel_format != DRM_FORMAT_NV12 ||
3315                                         width % 128 || height % 32 ||
3316                                         r->pitches[i] % 128) {
3317                                 DRM_DEBUG_KMS("bad modifier data for plane %d\n", i);
3318                                 return -EINVAL;
3319                         }
3320                         break;
3321
3322                 default:
3323                         break;
3324                 }
3325         }
3326
3327         for (i = num_planes; i < 4; i++) {
3328                 if (r->modifier[i]) {
3329                         DRM_DEBUG_KMS("non-zero modifier for unused plane %d\n", i);
3330                         return -EINVAL;
3331                 }
3332
3333                 /* Pre-FB_MODIFIERS userspace didn't clear the structs properly. */
3334                 if (!(r->flags & DRM_MODE_FB_MODIFIERS))
3335                         continue;
3336
3337                 if (r->handles[i]) {
3338                         DRM_DEBUG_KMS("buffer object handle for unused plane %d\n", i);
3339                         return -EINVAL;
3340                 }
3341
3342                 if (r->pitches[i]) {
3343                         DRM_DEBUG_KMS("non-zero pitch for unused plane %d\n", i);
3344                         return -EINVAL;
3345                 }
3346
3347                 if (r->offsets[i]) {
3348                         DRM_DEBUG_KMS("non-zero offset for unused plane %d\n", i);
3349                         return -EINVAL;
3350                 }
3351         }
3352
3353         return 0;
3354 }
3355
3356 static struct drm_framebuffer *
3357 internal_framebuffer_create(struct drm_device *dev,
3358                             struct drm_mode_fb_cmd2 *r,
3359                             struct drm_file *file_priv)
3360 {
3361         struct drm_mode_config *config = &dev->mode_config;
3362         struct drm_framebuffer *fb;
3363         int ret;
3364
3365         if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
3366                 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3367                 return ERR_PTR(-EINVAL);
3368         }
3369
3370         if ((config->min_width > r->width) || (r->width > config->max_width)) {
3371                 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3372                           r->width, config->min_width, config->max_width);
3373                 return ERR_PTR(-EINVAL);
3374         }
3375         if ((config->min_height > r->height) || (r->height > config->max_height)) {
3376                 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3377                           r->height, config->min_height, config->max_height);
3378                 return ERR_PTR(-EINVAL);
3379         }
3380
3381         if (r->flags & DRM_MODE_FB_MODIFIERS &&
3382             !dev->mode_config.allow_fb_modifiers) {
3383                 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
3384                 return ERR_PTR(-EINVAL);
3385         }
3386
3387         ret = framebuffer_check(r);
3388         if (ret)
3389                 return ERR_PTR(ret);
3390
3391         fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3392         if (IS_ERR(fb)) {
3393                 DRM_DEBUG_KMS("could not create framebuffer\n");
3394                 return fb;
3395         }
3396
3397         return fb;
3398 }
3399
3400 /**
3401  * drm_mode_addfb2 - add an FB to the graphics configuration
3402  * @dev: drm device for the ioctl
3403  * @data: data pointer for the ioctl
3404  * @file_priv: drm file for the ioctl call
3405  *
3406  * Add a new FB to the specified CRTC, given a user request with format. This is
3407  * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3408  * and uses fourcc codes as pixel format specifiers.
3409  *
3410  * Called by the user via ioctl.
3411  *
3412  * Returns:
3413  * Zero on success, negative errno on failure.
3414  */
3415 int drm_mode_addfb2(struct drm_device *dev,
3416                     void *data, struct drm_file *file_priv)
3417 {
3418         struct drm_mode_fb_cmd2 *r = data;
3419         struct drm_framebuffer *fb;
3420
3421         if (!drm_core_check_feature(dev, DRIVER_MODESET))
3422                 return -EINVAL;
3423
3424         fb = internal_framebuffer_create(dev, r, file_priv);
3425         if (IS_ERR(fb))
3426                 return PTR_ERR(fb);
3427
3428         /* Transfer ownership to the filp for reaping on close */
3429
3430         DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3431         mutex_lock(&file_priv->fbs_lock);
3432         r->fb_id = fb->base.id;
3433         list_add(&fb->filp_head, &file_priv->fbs);
3434         mutex_unlock(&file_priv->fbs_lock);
3435
3436         return 0;
3437 }
3438
3439 /**
3440  * drm_mode_rmfb - remove an FB from the configuration
3441  * @dev: drm device for the ioctl
3442  * @data: data pointer for the ioctl
3443  * @file_priv: drm file for the ioctl call
3444  *
3445  * Remove the FB specified by the user.
3446  *
3447  * Called by the user via ioctl.
3448  *
3449  * Returns:
3450  * Zero on success, negative errno on failure.
3451  */
3452 int drm_mode_rmfb(struct drm_device *dev,
3453                    void *data, struct drm_file *file_priv)
3454 {
3455         struct drm_framebuffer *fb = NULL;
3456         struct drm_framebuffer *fbl = NULL;
3457         uint32_t *id = data;
3458         int found = 0;
3459
3460         if (!drm_core_check_feature(dev, DRIVER_MODESET))
3461                 return -EINVAL;
3462
3463         mutex_lock(&file_priv->fbs_lock);
3464         mutex_lock(&dev->mode_config.fb_lock);
3465         fb = __drm_framebuffer_lookup(dev, *id);
3466         if (!fb)
3467                 goto fail_lookup;
3468
3469         list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3470                 if (fb == fbl)
3471                         found = 1;
3472         if (!found)
3473                 goto fail_lookup;
3474
3475         list_del_init(&fb->filp_head);
3476         mutex_unlock(&dev->mode_config.fb_lock);
3477         mutex_unlock(&file_priv->fbs_lock);
3478
3479         drm_framebuffer_unreference(fb);
3480
3481         return 0;
3482
3483 fail_lookup:
3484         mutex_unlock(&dev->mode_config.fb_lock);
3485         mutex_unlock(&file_priv->fbs_lock);
3486
3487         return -ENOENT;
3488 }
3489
3490 /**
3491  * drm_mode_getfb - get FB info
3492  * @dev: drm device for the ioctl
3493  * @data: data pointer for the ioctl
3494  * @file_priv: drm file for the ioctl call
3495  *
3496  * Lookup the FB given its ID and return info about it.
3497  *
3498  * Called by the user via ioctl.
3499  *
3500  * Returns:
3501  * Zero on success, negative errno on failure.
3502  */
3503 int drm_mode_getfb(struct drm_device *dev,
3504                    void *data, struct drm_file *file_priv)
3505 {
3506         struct drm_mode_fb_cmd *r = data;
3507         struct drm_framebuffer *fb;
3508         int ret;
3509
3510         if (!drm_core_check_feature(dev, DRIVER_MODESET))
3511                 return -EINVAL;
3512
3513         fb = drm_framebuffer_lookup(dev, r->fb_id);
3514         if (!fb)
3515                 return -ENOENT;
3516
3517         r->height = fb->height;
3518         r->width = fb->width;
3519         r->depth = fb->depth;
3520         r->bpp = fb->bits_per_pixel;
3521         r->pitch = fb->pitches[0];
3522         if (fb->funcs->create_handle) {
3523                 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
3524                     drm_is_control_client(file_priv)) {
3525                         ret = fb->funcs->create_handle(fb, file_priv,
3526                                                        &r->handle);
3527                 } else {
3528                         /* GET_FB() is an unprivileged ioctl so we must not
3529                          * return a buffer-handle to non-master processes! For
3530                          * backwards-compatibility reasons, we cannot make
3531                          * GET_FB() privileged, so just return an invalid handle
3532                          * for non-masters. */
3533                         r->handle = 0;
3534                         ret = 0;
3535                 }
3536         } else {
3537                 ret = -ENODEV;
3538         }
3539
3540         drm_framebuffer_unreference(fb);
3541
3542         return ret;
3543 }
3544
3545 /**
3546  * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3547  * @dev: drm device for the ioctl
3548  * @data: data pointer for the ioctl
3549  * @file_priv: drm file for the ioctl call
3550  *
3551  * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3552  * rectangle list. Generic userspace which does frontbuffer rendering must call
3553  * this ioctl to flush out the changes on manual-update display outputs, e.g.
3554  * usb display-link, mipi manual update panels or edp panel self refresh modes.
3555  *
3556  * Modesetting drivers which always update the frontbuffer do not need to
3557  * implement the corresponding ->dirty framebuffer callback.
3558  *
3559  * Called by the user via ioctl.
3560  *
3561  * Returns:
3562  * Zero on success, negative errno on failure.
3563  */
3564 int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3565                            void *data, struct drm_file *file_priv)
3566 {
3567         struct drm_clip_rect __user *clips_ptr;
3568         struct drm_clip_rect *clips = NULL;
3569         struct drm_mode_fb_dirty_cmd *r = data;
3570         struct drm_framebuffer *fb;
3571         unsigned flags;
3572         int num_clips;
3573         int ret;
3574
3575         if (!drm_core_check_feature(dev, DRIVER_MODESET))
3576                 return -EINVAL;
3577
3578         fb = drm_framebuffer_lookup(dev, r->fb_id);
3579         if (!fb)
3580                 return -ENOENT;
3581
3582         num_clips = r->num_clips;
3583         clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
3584
3585         if (!num_clips != !clips_ptr) {
3586                 ret = -EINVAL;
3587                 goto out_err1;
3588         }
3589
3590         flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3591
3592         /* If userspace annotates copy, clips must come in pairs */
3593         if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3594                 ret = -EINVAL;
3595                 goto out_err1;
3596         }
3597
3598         if (num_clips && clips_ptr) {
3599                 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3600                         ret = -EINVAL;
3601                         goto out_err1;
3602                 }
3603                 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
3604                 if (!clips) {
3605                         ret = -ENOMEM;
3606                         goto out_err1;
3607                 }
3608
3609                 ret = copy_from_user(clips, clips_ptr,
3610                                      num_clips * sizeof(*clips));
3611                 if (ret) {
3612                         ret = -EFAULT;
3613                         goto out_err2;
3614                 }
3615         }
3616
3617         if (fb->funcs->dirty) {
3618                 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3619                                        clips, num_clips);
3620         } else {
3621                 ret = -ENOSYS;
3622         }
3623
3624 out_err2:
3625         kfree(clips);
3626 out_err1:
3627         drm_framebuffer_unreference(fb);
3628
3629         return ret;
3630 }
3631
3632
3633 /**
3634  * drm_fb_release - remove and free the FBs on this file
3635  * @priv: drm file for the ioctl
3636  *
3637  * Destroy all the FBs associated with @filp.
3638  *
3639  * Called by the user via ioctl.
3640  *
3641  * Returns:
3642  * Zero on success, negative errno on failure.
3643  */
3644 void drm_fb_release(struct drm_file *priv)
3645 {
3646         struct drm_framebuffer *fb, *tfb;
3647
3648         /*
3649          * When the file gets released that means no one else can access the fb
3650          * list any more, so no need to grab fpriv->fbs_lock. And we need to
3651          * avoid upsetting lockdep since the universal cursor code adds a
3652          * framebuffer while holding mutex locks.
3653          *
3654          * Note that a real deadlock between fpriv->fbs_lock and the modeset
3655          * locks is impossible here since no one else but this function can get
3656          * at it any more.
3657          */
3658         list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
3659                 list_del_init(&fb->filp_head);
3660
3661                 /* This drops the fpriv->fbs reference. */
3662                 drm_framebuffer_unreference(fb);
3663         }
3664 }
3665
3666 /**
3667  * drm_property_create - create a new property type
3668  * @dev: drm device
3669  * @flags: flags specifying the property type
3670  * @name: name of the property
3671  * @num_values: number of pre-defined values
3672  *
3673  * This creates a new generic drm property which can then be attached to a drm
3674  * object with drm_object_attach_property. The returned property object must be
3675  * freed with drm_property_destroy.
3676  *
3677  * Note that the DRM core keeps a per-device list of properties and that, if
3678  * drm_mode_config_cleanup() is called, it will destroy all properties created
3679  * by the driver.
3680  *
3681  * Returns:
3682  * A pointer to the newly created property on success, NULL on failure.
3683  */
3684 struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3685                                          const char *name, int num_values)
3686 {
3687         struct drm_property *property = NULL;
3688         int ret;
3689
3690         property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3691         if (!property)
3692                 return NULL;
3693
3694         property->dev = dev;
3695
3696         if (num_values) {
3697                 property->values = kcalloc(num_values, sizeof(uint64_t),
3698                                            GFP_KERNEL);
3699                 if (!property->values)
3700                         goto fail;
3701         }
3702
3703         ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3704         if (ret)
3705                 goto fail;
3706
3707         property->flags = flags;
3708         property->num_values = num_values;
3709         INIT_LIST_HEAD(&property->enum_list);
3710
3711         if (name) {
3712                 strncpy(property->name, name, DRM_PROP_NAME_LEN);
3713                 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3714         }
3715
3716         list_add_tail(&property->head, &dev->mode_config.property_list);
3717
3718         WARN_ON(!drm_property_type_valid(property));
3719
3720         return property;
3721 fail:
3722         kfree(property->values);
3723         kfree(property);
3724         return NULL;
3725 }
3726 EXPORT_SYMBOL(drm_property_create);
3727
3728 /**
3729  * drm_property_create_enum - create a new enumeration property type
3730  * @dev: drm device
3731  * @flags: flags specifying the property type
3732  * @name: name of the property
3733  * @props: enumeration lists with property values
3734  * @num_values: number of pre-defined values
3735  *
3736  * This creates a new generic drm property which can then be attached to a drm
3737  * object with drm_object_attach_property. The returned property object must be
3738  * freed with drm_property_destroy.
3739  *
3740  * Userspace is only allowed to set one of the predefined values for enumeration
3741  * properties.
3742  *
3743  * Returns:
3744  * A pointer to the newly created property on success, NULL on failure.
3745  */
3746 struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3747                                          const char *name,
3748                                          const struct drm_prop_enum_list *props,
3749                                          int num_values)
3750 {
3751         struct drm_property *property;
3752         int i, ret;
3753
3754         flags |= DRM_MODE_PROP_ENUM;
3755
3756         property = drm_property_create(dev, flags, name, num_values);
3757         if (!property)
3758                 return NULL;
3759
3760         for (i = 0; i < num_values; i++) {
3761                 ret = drm_property_add_enum(property, i,
3762                                       props[i].type,
3763                                       props[i].name);
3764                 if (ret) {
3765                         drm_property_destroy(dev, property);
3766                         return NULL;
3767                 }
3768         }
3769
3770         return property;
3771 }
3772 EXPORT_SYMBOL(drm_property_create_enum);
3773
3774 /**
3775  * drm_property_create_bitmask - create a new bitmask property type
3776  * @dev: drm device
3777  * @flags: flags specifying the property type
3778  * @name: name of the property
3779  * @props: enumeration lists with property bitflags
3780  * @num_props: size of the @props array
3781  * @supported_bits: bitmask of all supported enumeration values
3782  *
3783  * This creates a new bitmask drm property which can then be attached to a drm
3784  * object with drm_object_attach_property. The returned property object must be
3785  * freed with drm_property_destroy.
3786  *
3787  * Compared to plain enumeration properties userspace is allowed to set any
3788  * or'ed together combination of the predefined property bitflag values
3789  *
3790  * Returns:
3791  * A pointer to the newly created property on success, NULL on failure.
3792  */
3793 struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3794                                          int flags, const char *name,
3795                                          const struct drm_prop_enum_list *props,
3796                                          int num_props,
3797                                          uint64_t supported_bits)
3798 {
3799         struct drm_property *property;
3800         int i, ret, index = 0;
3801         int num_values = hweight64(supported_bits);
3802
3803         flags |= DRM_MODE_PROP_BITMASK;
3804
3805         property = drm_property_create(dev, flags, name, num_values);
3806         if (!property)
3807                 return NULL;
3808         for (i = 0; i < num_props; i++) {
3809                 if (!(supported_bits & (1ULL << props[i].type)))
3810                         continue;
3811
3812                 if (WARN_ON(index >= num_values)) {
3813                         drm_property_destroy(dev, property);
3814                         return NULL;
3815                 }
3816
3817                 ret = drm_property_add_enum(property, index++,
3818                                       props[i].type,
3819                                       props[i].name);
3820                 if (ret) {
3821                         drm_property_destroy(dev, property);
3822                         return NULL;
3823                 }
3824         }
3825
3826         return property;
3827 }
3828 EXPORT_SYMBOL(drm_property_create_bitmask);
3829
3830 static struct drm_property *property_create_range(struct drm_device *dev,
3831                                          int flags, const char *name,
3832                                          uint64_t min, uint64_t max)
3833 {
3834         struct drm_property *property;
3835
3836         property = drm_property_create(dev, flags, name, 2);
3837         if (!property)
3838                 return NULL;
3839
3840         property->values[0] = min;
3841         property->values[1] = max;
3842
3843         return property;
3844 }
3845
3846 /**
3847  * drm_property_create_range - create a new unsigned ranged property type
3848  * @dev: drm device
3849  * @flags: flags specifying the property type
3850  * @name: name of the property
3851  * @min: minimum value of the property
3852  * @max: maximum value of the property
3853  *
3854  * This creates a new generic drm property which can then be attached to a drm
3855  * object with drm_object_attach_property. The returned property object must be
3856  * freed with drm_property_destroy.
3857  *
3858  * Userspace is allowed to set any unsigned integer value in the (min, max)
3859  * range inclusive.
3860  *
3861  * Returns:
3862  * A pointer to the newly created property on success, NULL on failure.
3863  */
3864 struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3865                                          const char *name,
3866                                          uint64_t min, uint64_t max)
3867 {
3868         return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3869                         name, min, max);
3870 }
3871 EXPORT_SYMBOL(drm_property_create_range);
3872
3873 /**
3874  * drm_property_create_signed_range - create a new signed ranged property type
3875  * @dev: drm device
3876  * @flags: flags specifying the property type
3877  * @name: name of the property
3878  * @min: minimum value of the property
3879  * @max: maximum value of the property
3880  *
3881  * This creates a new generic drm property which can then be attached to a drm
3882  * object with drm_object_attach_property. The returned property object must be
3883  * freed with drm_property_destroy.
3884  *
3885  * Userspace is allowed to set any signed integer value in the (min, max)
3886  * range inclusive.
3887  *
3888  * Returns:
3889  * A pointer to the newly created property on success, NULL on failure.
3890  */
3891 struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3892                                          int flags, const char *name,
3893                                          int64_t min, int64_t max)
3894 {
3895         return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3896                         name, I642U64(min), I642U64(max));
3897 }
3898 EXPORT_SYMBOL(drm_property_create_signed_range);
3899
3900 /**
3901  * drm_property_create_object - create a new object property type
3902  * @dev: drm device
3903  * @flags: flags specifying the property type
3904  * @name: name of the property
3905  * @type: object type from DRM_MODE_OBJECT_* defines
3906  *
3907  * This creates a new generic drm property which can then be attached to a drm
3908  * object with drm_object_attach_property. The returned property object must be
3909  * freed with drm_property_destroy.
3910  *
3911  * Userspace is only allowed to set this to any property value of the given
3912  * @type. Only useful for atomic properties, which is enforced.
3913  *
3914  * Returns:
3915  * A pointer to the newly created property on success, NULL on failure.
3916  */
3917 struct drm_property *drm_property_create_object(struct drm_device *dev,
3918                                          int flags, const char *name, uint32_t type)
3919 {
3920         struct drm_property *property;
3921
3922         flags |= DRM_MODE_PROP_OBJECT;
3923
3924         if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
3925                 return NULL;
3926
3927         property = drm_property_create(dev, flags, name, 1);
3928         if (!property)
3929                 return NULL;
3930
3931         property->values[0] = type;
3932
3933         return property;
3934 }
3935 EXPORT_SYMBOL(drm_property_create_object);
3936
3937 /**
3938  * drm_property_create_bool - create a new boolean property type
3939  * @dev: drm device
3940  * @flags: flags specifying the property type
3941  * @name: name of the property
3942  *
3943  * This creates a new generic drm property which can then be attached to a drm
3944  * object with drm_object_attach_property. The returned property object must be
3945  * freed with drm_property_destroy.
3946  *
3947  * This is implemented as a ranged property with only {0, 1} as valid values.
3948  *
3949  * Returns:
3950  * A pointer to the newly created property on success, NULL on failure.
3951  */
3952 struct drm_property *drm_property_create_bool(struct drm_device *dev, int flags,
3953                                          const char *name)
3954 {
3955         return drm_property_create_range(dev, flags, name, 0, 1);
3956 }
3957 EXPORT_SYMBOL(drm_property_create_bool);
3958
3959 /**
3960  * drm_property_add_enum - add a possible value to an enumeration property
3961  * @property: enumeration property to change
3962  * @index: index of the new enumeration
3963  * @value: value of the new enumeration
3964  * @name: symbolic name of the new enumeration
3965  *
3966  * This functions adds enumerations to a property.
3967  *
3968  * It's use is deprecated, drivers should use one of the more specific helpers
3969  * to directly create the property with all enumerations already attached.
3970  *
3971  * Returns:
3972  * Zero on success, error code on failure.
3973  */
3974 int drm_property_add_enum(struct drm_property *property, int index,
3975                           uint64_t value, const char *name)
3976 {
3977         struct drm_property_enum *prop_enum;
3978
3979         if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3980                         drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
3981                 return -EINVAL;
3982
3983         /*
3984          * Bitmask enum properties have the additional constraint of values
3985          * from 0 to 63
3986          */
3987         if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3988                         (value > 63))
3989                 return -EINVAL;
3990
3991         if (!list_empty(&property->enum_list)) {
3992                 list_for_each_entry(prop_enum, &property->enum_list, head) {
3993                         if (prop_enum->value == value) {
3994                                 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3995                                 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3996                                 return 0;
3997                         }
3998                 }
3999         }
4000
4001         prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
4002         if (!prop_enum)
4003                 return -ENOMEM;
4004
4005         strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
4006         prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
4007         prop_enum->value = value;
4008
4009         property->values[index] = value;
4010         list_add_tail(&prop_enum->head, &property->enum_list);
4011         return 0;
4012 }
4013 EXPORT_SYMBOL(drm_property_add_enum);
4014
4015 /**
4016  * drm_property_destroy - destroy a drm property
4017  * @dev: drm device
4018  * @property: property to destry
4019  *
4020  * This function frees a property including any attached resources like
4021  * enumeration values.
4022  */
4023 void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
4024 {
4025         struct drm_property_enum *prop_enum, *pt;
4026
4027         list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
4028                 list_del(&prop_enum->head);
4029                 kfree(prop_enum);
4030         }
4031
4032         if (property->num_values)
4033                 kfree(property->values);
4034         drm_mode_object_put(dev, &property->base);
4035         list_del(&property->head);
4036         kfree(property);
4037 }
4038 EXPORT_SYMBOL(drm_property_destroy);
4039
4040 /**
4041  * drm_object_attach_property - attach a property to a modeset object
4042  * @obj: drm modeset object
4043  * @property: property to attach
4044  * @init_val: initial value of the property
4045  *
4046  * This attaches the given property to the modeset object with the given initial
4047  * value. Currently this function cannot fail since the properties are stored in
4048  * a statically sized array.
4049  */
4050 void drm_object_attach_property(struct drm_mode_object *obj,
4051                                 struct drm_property *property,
4052                                 uint64_t init_val)
4053 {
4054         int count = obj->properties->count;
4055
4056         if (count == DRM_OBJECT_MAX_PROPERTY) {
4057                 WARN(1, "Failed to attach object property (type: 0x%x). Please "
4058                         "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
4059                         "you see this message on the same object type.\n",
4060                         obj->type);
4061                 return;
4062         }
4063
4064         obj->properties->properties[count] = property;
4065         obj->properties->values[count] = init_val;
4066         obj->properties->count++;
4067         if (property->flags & DRM_MODE_PROP_ATOMIC)
4068                 obj->properties->atomic_count++;
4069 }
4070 EXPORT_SYMBOL(drm_object_attach_property);
4071
4072 /**
4073  * drm_object_property_set_value - set the value of a property
4074  * @obj: drm mode object to set property value for
4075  * @property: property to set
4076  * @val: value the property should be set to
4077  *
4078  * This functions sets a given property on a given object. This function only
4079  * changes the software state of the property, it does not call into the
4080  * driver's ->set_property callback.
4081  *
4082  * Returns:
4083  * Zero on success, error code on failure.
4084  */
4085 int drm_object_property_set_value(struct drm_mode_object *obj,
4086                                   struct drm_property *property, uint64_t val)
4087 {
4088         int i;
4089
4090         for (i = 0; i < obj->properties->count; i++) {
4091                 if (obj->properties->properties[i] == property) {
4092                         obj->properties->values[i] = val;
4093                         return 0;
4094                 }
4095         }
4096
4097         return -EINVAL;
4098 }
4099 EXPORT_SYMBOL(drm_object_property_set_value);
4100
4101 /**
4102  * drm_object_property_get_value - retrieve the value of a property
4103  * @obj: drm mode object to get property value from
4104  * @property: property to retrieve
4105  * @val: storage for the property value
4106  *
4107  * This function retrieves the softare state of the given property for the given
4108  * property. Since there is no driver callback to retrieve the current property
4109  * value this might be out of sync with the hardware, depending upon the driver
4110  * and property.
4111  *
4112  * Returns:
4113  * Zero on success, error code on failure.
4114  */
4115 int drm_object_property_get_value(struct drm_mode_object *obj,
4116                                   struct drm_property *property, uint64_t *val)
4117 {
4118         int i;
4119
4120         /* read-only properties bypass atomic mechanism and still store
4121          * their value in obj->properties->values[].. mostly to avoid
4122          * having to deal w/ EDID and similar props in atomic paths:
4123          */
4124         if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
4125                         !(property->flags & DRM_MODE_PROP_IMMUTABLE))
4126                 return drm_atomic_get_property(obj, property, val);
4127
4128         for (i = 0; i < obj->properties->count; i++) {
4129                 if (obj->properties->properties[i] == property) {
4130                         *val = obj->properties->values[i];
4131                         return 0;
4132                 }
4133         }
4134
4135         return -EINVAL;
4136 }
4137 EXPORT_SYMBOL(drm_object_property_get_value);
4138
4139 /**
4140  * drm_mode_getproperty_ioctl - get the property metadata
4141  * @dev: DRM device
4142  * @data: ioctl data
4143  * @file_priv: DRM file info
4144  *
4145  * This function retrieves the metadata for a given property, like the different
4146  * possible values for an enum property or the limits for a range property.
4147  *
4148  * Blob properties are special
4149  *
4150  * Called by the user via ioctl.
4151  *
4152  * Returns:
4153  * Zero on success, negative errno on failure.
4154  */
4155 int drm_mode_getproperty_ioctl(struct drm_device *dev,
4156                                void *data, struct drm_file *file_priv)
4157 {
4158         struct drm_mode_get_property *out_resp = data;
4159         struct drm_property *property;
4160         int enum_count = 0;
4161         int value_count = 0;
4162         int ret = 0, i;
4163         int copied;
4164         struct drm_property_enum *prop_enum;
4165         struct drm_mode_property_enum __user *enum_ptr;
4166         uint64_t __user *values_ptr;
4167
4168         if (!drm_core_check_feature(dev, DRIVER_MODESET))
4169                 return -EINVAL;
4170
4171         drm_modeset_lock_all(dev);
4172         property = drm_property_find(dev, out_resp->prop_id);
4173         if (!property) {
4174                 ret = -ENOENT;
4175                 goto done;
4176         }
4177
4178         if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4179                         drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
4180                 list_for_each_entry(prop_enum, &property->enum_list, head)
4181                         enum_count++;
4182         }
4183
4184         value_count = property->num_values;
4185
4186         strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4187         out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4188         out_resp->flags = property->flags;
4189
4190         if ((out_resp->count_values >= value_count) && value_count) {
4191                 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
4192                 for (i = 0; i < value_count; i++) {
4193                         if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4194                                 ret = -EFAULT;
4195                                 goto done;
4196                         }
4197                 }
4198         }
4199         out_resp->count_values = value_count;
4200
4201         if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4202                         drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
4203                 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4204                         copied = 0;
4205                         enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
4206                         list_for_each_entry(prop_enum, &property->enum_list, head) {
4207
4208                                 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4209                                         ret = -EFAULT;
4210                                         goto done;
4211                                 }
4212
4213                                 if (copy_to_user(&enum_ptr[copied].name,
4214                                                  &prop_enum->name, DRM_PROP_NAME_LEN)) {
4215                                         ret = -EFAULT;
4216                                         goto done;
4217                                 }
4218                                 copied++;
4219                         }
4220                 }
4221                 out_resp->count_enum_blobs = enum_count;
4222         }
4223
4224         /*
4225          * NOTE: The idea seems to have been to use this to read all the blob
4226          * property values. But nothing ever added them to the corresponding
4227          * list, userspace always used the special-purpose get_blob ioctl to
4228          * read the value for a blob property. It also doesn't make a lot of
4229          * sense to return values here when everything else is just metadata for
4230          * the property itself.
4231          */
4232         if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4233                 out_resp->count_enum_blobs = 0;
4234 done:
4235         drm_modeset_unlock_all(dev);
4236         return ret;
4237 }
4238
4239 /**
4240  * drm_property_create_blob - Create new blob property
4241  *
4242  * Creates a new blob property for a specified DRM device, optionally
4243  * copying data.
4244  *
4245  * @dev: DRM device to create property for
4246  * @length: Length to allocate for blob data
4247  * @data: If specified, copies data into blob
4248  *
4249  * Returns:
4250  * New blob property with a single reference on success, or an ERR_PTR
4251  * value on failure.
4252  */
4253 struct drm_property_blob *
4254 drm_property_create_blob(struct drm_device *dev, size_t length,
4255                          const void *data)
4256 {
4257         struct drm_property_blob *blob;
4258         int ret;
4259
4260         if (!length || length > ULONG_MAX - sizeof(struct drm_property_blob))
4261                 return ERR_PTR(-EINVAL);
4262
4263         blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4264         if (!blob)
4265                 return ERR_PTR(-ENOMEM);
4266
4267         /* This must be explicitly initialised, so we can safely call list_del
4268          * on it in the removal handler, even if it isn't in a file list. */
4269         INIT_LIST_HEAD(&blob->head_file);
4270         blob->length = length;
4271         blob->dev = dev;
4272
4273         if (data)
4274                 memcpy(blob->data, data, length);
4275
4276         mutex_lock(&dev->mode_config.blob_lock);
4277
4278         ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4279         if (ret) {
4280                 kfree(blob);
4281                 mutex_unlock(&dev->mode_config.blob_lock);
4282                 return ERR_PTR(-EINVAL);
4283         }
4284
4285         kref_init(&blob->refcount);
4286
4287         list_add_tail(&blob->head_global,
4288                       &dev->mode_config.property_blob_list);
4289
4290         mutex_unlock(&dev->mode_config.blob_lock);
4291
4292         return blob;
4293 }
4294 EXPORT_SYMBOL(drm_property_create_blob);
4295
4296 /**
4297  * drm_property_free_blob - Blob property destructor
4298  *
4299  * Internal free function for blob properties; must not be used directly.
4300  *
4301  * @kref: Reference
4302  */
4303 static void drm_property_free_blob(struct kref *kref)
4304 {
4305         struct drm_property_blob *blob =
4306                 container_of(kref, struct drm_property_blob, refcount);
4307
4308         WARN_ON(!mutex_is_locked(&blob->dev->mode_config.blob_lock));
4309
4310         list_del(&blob->head_global);
4311         list_del(&blob->head_file);
4312         drm_mode_object_put(blob->dev, &blob->base);
4313
4314         kfree(blob);
4315 }
4316
4317 /**
4318  * drm_property_unreference_blob - Unreference a blob property
4319  *
4320  * Drop a reference on a blob property. May free the object.
4321  *
4322  * @blob: Pointer to blob property
4323  */
4324 void drm_property_unreference_blob(struct drm_property_blob *blob)
4325 {
4326         struct drm_device *dev;
4327
4328         if (!blob)
4329                 return;
4330
4331         dev = blob->dev;
4332
4333         DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4334
4335         if (kref_put_mutex(&blob->refcount, drm_property_free_blob,
4336                            &dev->mode_config.blob_lock))
4337                 mutex_unlock(&dev->mode_config.blob_lock);
4338         else
4339                 might_lock(&dev->mode_config.blob_lock);
4340 }
4341 EXPORT_SYMBOL(drm_property_unreference_blob);
4342
4343 /**
4344  * drm_property_unreference_blob_locked - Unreference a blob property with blob_lock held
4345  *
4346  * Drop a reference on a blob property. May free the object. This must be
4347  * called with blob_lock held.
4348  *
4349  * @blob: Pointer to blob property
4350  */
4351 static void drm_property_unreference_blob_locked(struct drm_property_blob *blob)
4352 {
4353         if (!blob)
4354                 return;
4355
4356         DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4357
4358         kref_put(&blob->refcount, drm_property_free_blob);
4359 }
4360
4361 /**
4362  * drm_property_destroy_user_blobs - destroy all blobs created by this client
4363  * @dev:       DRM device
4364  * @file_priv: destroy all blobs owned by this file handle
4365  */
4366 void drm_property_destroy_user_blobs(struct drm_device *dev,
4367                                      struct drm_file *file_priv)
4368 {
4369         struct drm_property_blob *blob, *bt;
4370
4371         mutex_lock(&dev->mode_config.blob_lock);
4372
4373         list_for_each_entry_safe(blob, bt, &file_priv->blobs, head_file) {
4374                 list_del_init(&blob->head_file);
4375                 drm_property_unreference_blob_locked(blob);
4376         }
4377
4378         mutex_unlock(&dev->mode_config.blob_lock);
4379 }
4380
4381 /**
4382  * drm_property_reference_blob - Take a reference on an existing property
4383  *
4384  * Take a new reference on an existing blob property.
4385  *
4386  * @blob: Pointer to blob property
4387  */
4388 struct drm_property_blob *drm_property_reference_blob(struct drm_property_blob *blob)
4389 {
4390         DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4391         kref_get(&blob->refcount);
4392         return blob;
4393 }
4394 EXPORT_SYMBOL(drm_property_reference_blob);
4395
4396 /*
4397  * Like drm_property_lookup_blob, but does not return an additional reference.
4398  * Must be called with blob_lock held.
4399  */
4400 static struct drm_property_blob *__drm_property_lookup_blob(struct drm_device *dev,
4401                                                             uint32_t id)
4402 {
4403         struct drm_mode_object *obj = NULL;
4404         struct drm_property_blob *blob;
4405
4406         WARN_ON(!mutex_is_locked(&dev->mode_config.blob_lock));
4407
4408         mutex_lock(&dev->mode_config.idr_mutex);
4409         obj = idr_find(&dev->mode_config.crtc_idr, id);
4410         if (!obj || (obj->type != DRM_MODE_OBJECT_BLOB) || (obj->id != id))
4411                 blob = NULL;
4412         else
4413                 blob = obj_to_blob(obj);
4414         mutex_unlock(&dev->mode_config.idr_mutex);
4415
4416         return blob;
4417 }
4418
4419 /**
4420  * drm_property_lookup_blob - look up a blob property and take a reference
4421  * @dev: drm device
4422  * @id: id of the blob property
4423  *
4424  * If successful, this takes an additional reference to the blob property.
4425  * callers need to make sure to eventually unreference the returned property
4426  * again, using @drm_property_unreference_blob.
4427  */
4428 struct drm_property_blob *drm_property_lookup_blob(struct drm_device *dev,
4429                                                    uint32_t id)
4430 {
4431         struct drm_property_blob *blob;
4432
4433         mutex_lock(&dev->mode_config.blob_lock);
4434         blob = __drm_property_lookup_blob(dev, id);
4435         if (blob) {
4436                 if (!kref_get_unless_zero(&blob->refcount))
4437                         blob = NULL;
4438         }
4439         mutex_unlock(&dev->mode_config.blob_lock);
4440
4441         return blob;
4442 }
4443 EXPORT_SYMBOL(drm_property_lookup_blob);
4444
4445 /**
4446  * drm_property_replace_global_blob - atomically replace existing blob property
4447  * @dev: drm device
4448  * @replace: location of blob property pointer to be replaced
4449  * @length: length of data for new blob, or 0 for no data
4450  * @data: content for new blob, or NULL for no data
4451  * @obj_holds_id: optional object for property holding blob ID
4452  * @prop_holds_id: optional property holding blob ID
4453  * @return 0 on success or error on failure
4454  *
4455  * This function will atomically replace a global property in the blob list,
4456  * optionally updating a property which holds the ID of that property. It is
4457  * guaranteed to be atomic: no caller will be allowed to see intermediate
4458  * results, and either the entire operation will succeed and clean up the
4459  * previous property, or it will fail and the state will be unchanged.
4460  *
4461  * If length is 0 or data is NULL, no new blob will be created, and the holding
4462  * property, if specified, will be set to 0.
4463  *
4464  * Access to the replace pointer is assumed to be protected by the caller, e.g.
4465  * by holding the relevant modesetting object lock for its parent.
4466  *
4467  * For example, a drm_connector has a 'PATH' property, which contains the ID
4468  * of a blob property with the value of the MST path information. Calling this
4469  * function with replace pointing to the connector's path_blob_ptr, length and
4470  * data set for the new path information, obj_holds_id set to the connector's
4471  * base object, and prop_holds_id set to the path property name, will perform
4472  * a completely atomic update. The access to path_blob_ptr is protected by the
4473  * caller holding a lock on the connector.
4474  */
4475 static int drm_property_replace_global_blob(struct drm_device *dev,
4476                                             struct drm_property_blob **replace,
4477                                             size_t length,
4478                                             const void *data,
4479                                             struct drm_mode_object *obj_holds_id,
4480                                             struct drm_property *prop_holds_id)
4481 {
4482         struct drm_property_blob *new_blob = NULL;
4483         struct drm_property_blob *old_blob = NULL;
4484         int ret;
4485
4486         WARN_ON(replace == NULL);
4487
4488         old_blob = *replace;
4489
4490         if (length && data) {
4491                 new_blob = drm_property_create_blob(dev, length, data);
4492                 if (IS_ERR(new_blob))
4493                         return PTR_ERR(new_blob);
4494         }
4495
4496         /* This does not need to be synchronised with blob_lock, as the
4497          * get_properties ioctl locks all modesetting objects, and
4498          * obj_holds_id must be locked before calling here, so we cannot
4499          * have its value out of sync with the list membership modified
4500          * below under blob_lock. */
4501         if (obj_holds_id) {
4502                 ret = drm_object_property_set_value(obj_holds_id,
4503                                                     prop_holds_id,
4504                                                     new_blob ?
4505                                                         new_blob->base.id : 0);
4506                 if (ret != 0)
4507                         goto err_created;
4508         }
4509
4510         drm_property_unreference_blob(old_blob);
4511         *replace = new_blob;
4512
4513         return 0;
4514
4515 err_created:
4516         drm_property_unreference_blob(new_blob);
4517         return ret;
4518 }
4519
4520 /**
4521  * drm_mode_getblob_ioctl - get the contents of a blob property value
4522  * @dev: DRM device
4523  * @data: ioctl data
4524  * @file_priv: DRM file info
4525  *
4526  * This function retrieves the contents of a blob property. The value stored in
4527  * an object's blob property is just a normal modeset object id.
4528  *
4529  * Called by the user via ioctl.
4530  *
4531  * Returns:
4532  * Zero on success, negative errno on failure.
4533  */
4534 int drm_mode_getblob_ioctl(struct drm_device *dev,
4535                            void *data, struct drm_file *file_priv)
4536 {
4537         struct drm_mode_get_blob *out_resp = data;
4538         struct drm_property_blob *blob;
4539         int ret = 0;
4540         void __user *blob_ptr;
4541
4542         if (!drm_core_check_feature(dev, DRIVER_MODESET))
4543                 return -EINVAL;
4544
4545         drm_modeset_lock_all(dev);
4546         mutex_lock(&dev->mode_config.blob_lock);
4547         blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
4548         if (!blob) {
4549                 ret = -ENOENT;
4550                 goto done;
4551         }
4552
4553         if (out_resp->length == blob->length) {
4554                 blob_ptr = (void __user *)(unsigned long)out_resp->data;
4555                 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
4556                         ret = -EFAULT;
4557                         goto done;
4558                 }
4559         }
4560         out_resp->length = blob->length;
4561
4562 done:
4563         mutex_unlock(&dev->mode_config.blob_lock);
4564         drm_modeset_unlock_all(dev);
4565         return ret;
4566 }
4567
4568 /**
4569  * drm_mode_createblob_ioctl - create a new blob property
4570  * @dev: DRM device
4571  * @data: ioctl data
4572  * @file_priv: DRM file info
4573  *
4574  * This function creates a new blob property with user-defined values. In order
4575  * to give us sensible validation and checking when creating, rather than at
4576  * every potential use, we also require a type to be provided upfront.
4577  *
4578  * Called by the user via ioctl.
4579  *
4580  * Returns:
4581  * Zero on success, negative errno on failure.
4582  */
4583 int drm_mode_createblob_ioctl(struct drm_device *dev,
4584                               void *data, struct drm_file *file_priv)
4585 {
4586         struct drm_mode_create_blob *out_resp = data;
4587         struct drm_property_blob *blob;
4588         void __user *blob_ptr;
4589         int ret = 0;
4590
4591         if (!drm_core_check_feature(dev, DRIVER_MODESET))
4592                 return -EINVAL;
4593
4594         blob = drm_property_create_blob(dev, out_resp->length, NULL);
4595         if (IS_ERR(blob))
4596                 return PTR_ERR(blob);
4597
4598         blob_ptr = (void __user *)(unsigned long)out_resp->data;
4599         if (copy_from_user(blob->data, blob_ptr, out_resp->length)) {
4600                 ret = -EFAULT;
4601                 goto out_blob;
4602         }
4603
4604         /* Dropping the lock between create_blob and our access here is safe
4605          * as only the same file_priv can remove the blob; at this point, it is
4606          * not associated with any file_priv. */
4607         mutex_lock(&dev->mode_config.blob_lock);
4608         out_resp->blob_id = blob->base.id;
4609         list_add_tail(&blob->head_file, &file_priv->blobs);
4610         mutex_unlock(&dev->mode_config.blob_lock);
4611
4612         return 0;
4613
4614 out_blob:
4615         drm_property_unreference_blob(blob);
4616         return ret;
4617 }
4618
4619 /**
4620  * drm_mode_destroyblob_ioctl - destroy a user blob property
4621  * @dev: DRM device
4622  * @data: ioctl data
4623  * @file_priv: DRM file info
4624  *
4625  * Destroy an existing user-defined blob property.
4626  *
4627  * Called by the user via ioctl.
4628  *
4629  * Returns:
4630  * Zero on success, negative errno on failure.
4631  */
4632 int drm_mode_destroyblob_ioctl(struct drm_device *dev,
4633                                void *data, struct drm_file *file_priv)
4634 {
4635         struct drm_mode_destroy_blob *out_resp = data;
4636         struct drm_property_blob *blob = NULL, *bt;
4637         bool found = false;
4638         int ret = 0;
4639
4640         if (!drm_core_check_feature(dev, DRIVER_MODESET))
4641                 return -EINVAL;
4642
4643         mutex_lock(&dev->mode_config.blob_lock);
4644         blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
4645         if (!blob) {
4646                 ret = -ENOENT;
4647                 goto err;
4648         }
4649
4650         /* Ensure the property was actually created by this user. */
4651         list_for_each_entry(bt, &file_priv->blobs, head_file) {
4652                 if (bt == blob) {
4653                         found = true;
4654                         break;
4655                 }
4656         }
4657
4658         if (!found) {
4659                 ret = -EPERM;
4660                 goto err;
4661         }
4662
4663         /* We must drop head_file here, because we may not be the last
4664          * reference on the blob. */
4665         list_del_init(&blob->head_file);
4666         drm_property_unreference_blob_locked(blob);
4667         mutex_unlock(&dev->mode_config.blob_lock);
4668
4669         return 0;
4670
4671 err:
4672         mutex_unlock(&dev->mode_config.blob_lock);
4673         return ret;
4674 }
4675
4676 /**
4677  * drm_mode_connector_set_path_property - set tile property on connector
4678  * @connector: connector to set property on.
4679  * @path: path to use for property; must not be NULL.
4680  *
4681  * This creates a property to expose to userspace to specify a
4682  * connector path. This is mainly used for DisplayPort MST where
4683  * connectors have a topology and we want to allow userspace to give
4684  * them more meaningful names.
4685  *
4686  * Returns:
4687  * Zero on success, negative errno on failure.
4688  */
4689 int drm_mode_connector_set_path_property(struct drm_connector *connector,
4690                                          const char *path)
4691 {
4692         struct drm_device *dev = connector->dev;
4693         int ret;
4694
4695         ret = drm_property_replace_global_blob(dev,
4696                                                &connector->path_blob_ptr,
4697                                                strlen(path) + 1,
4698                                                path,
4699                                                &connector->base,
4700                                                dev->mode_config.path_property);
4701         return ret;
4702 }
4703 EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4704
4705 /**
4706  * drm_mode_connector_set_tile_property - set tile property on connector
4707  * @connector: connector to set property on.
4708  *
4709  * This looks up the tile information for a connector, and creates a
4710  * property for userspace to parse if it exists. The property is of
4711  * the form of 8 integers using ':' as a separator.
4712  *
4713  * Returns:
4714  * Zero on success, errno on failure.
4715  */
4716 int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4717 {
4718         struct drm_device *dev = connector->dev;
4719         char tile[256];
4720         int ret;
4721
4722         if (!connector->has_tile) {
4723                 ret  = drm_property_replace_global_blob(dev,
4724                                                         &connector->tile_blob_ptr,
4725                                                         0,
4726                                                         NULL,
4727                                                         &connector->base,
4728                                                         dev->mode_config.tile_property);
4729                 return ret;
4730         }
4731
4732         snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4733                  connector->tile_group->id, connector->tile_is_single_monitor,
4734                  connector->num_h_tile, connector->num_v_tile,
4735                  connector->tile_h_loc, connector->tile_v_loc,
4736                  connector->tile_h_size, connector->tile_v_size);
4737
4738         ret = drm_property_replace_global_blob(dev,
4739                                                &connector->tile_blob_ptr,
4740                                                strlen(tile) + 1,
4741                                                tile,
4742                                                &connector->base,
4743                                                dev->mode_config.tile_property);
4744         return ret;
4745 }
4746 EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4747
4748 /**
4749  * drm_mode_connector_update_edid_property - update the edid property of a connector
4750  * @connector: drm connector
4751  * @edid: new value of the edid property
4752  *
4753  * This function creates a new blob modeset object and assigns its id to the
4754  * connector's edid property.
4755  *
4756  * Returns:
4757  * Zero on success, negative errno on failure.
4758  */
4759 int drm_mode_connector_update_edid_property(struct drm_connector *connector,
4760                                             const struct edid *edid)
4761 {
4762         struct drm_device *dev = connector->dev;
4763         size_t size = 0;
4764         int ret;
4765
4766         /* ignore requests to set edid when overridden */
4767         if (connector->override_edid)
4768                 return 0;
4769
4770         if (edid)
4771                 size = EDID_LENGTH * (1 + edid->extensions);
4772
4773         ret = drm_property_replace_global_blob(dev,
4774                                                &connector->edid_blob_ptr,
4775                                                size,
4776                                                edid,
4777                                                &connector->base,
4778                                                dev->mode_config.edid_property);
4779         return ret;
4780 }
4781 EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4782
4783 /* Some properties could refer to dynamic refcnt'd objects, or things that
4784  * need special locking to handle lifetime issues (ie. to ensure the prop
4785  * value doesn't become invalid part way through the property update due to
4786  * race).  The value returned by reference via 'obj' should be passed back
4787  * to drm_property_change_valid_put() after the property is set (and the
4788  * object to which the property is attached has a chance to take it's own
4789  * reference).
4790  */
4791 bool drm_property_change_valid_get(struct drm_property *property,
4792                                          uint64_t value, struct drm_mode_object **ref)
4793 {
4794         int i;
4795
4796         if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4797                 return false;
4798
4799         *ref = NULL;
4800
4801         if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
4802                 if (value < property->values[0] || value > property->values[1])
4803                         return false;
4804                 return true;
4805         } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4806                 int64_t svalue = U642I64(value);
4807
4808                 if (svalue < U642I64(property->values[0]) ||
4809                                 svalue > U642I64(property->values[1]))
4810                         return false;
4811                 return true;
4812         } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
4813                 uint64_t valid_mask = 0;
4814
4815                 for (i = 0; i < property->num_values; i++)
4816                         valid_mask |= (1ULL << property->values[i]);
4817                 return !(value & ~valid_mask);
4818         } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
4819                 struct drm_property_blob *blob;
4820
4821                 if (value == 0)
4822                         return true;
4823
4824                 blob = drm_property_lookup_blob(property->dev, value);
4825                 if (blob) {
4826                         *ref = &blob->base;
4827                         return true;
4828                 } else {
4829                         return false;
4830                 }
4831         } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4832                 /* a zero value for an object property translates to null: */
4833                 if (value == 0)
4834                         return true;
4835
4836                 /* handle refcnt'd objects specially: */
4837                 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4838                         struct drm_framebuffer *fb;
4839                         fb = drm_framebuffer_lookup(property->dev, value);
4840                         if (fb) {
4841                                 *ref = &fb->base;
4842                                 return true;
4843                         } else {
4844                                 return false;
4845                         }
4846                 } else {
4847                         return _object_find(property->dev, value, property->values[0]) != NULL;
4848                 }
4849         }
4850
4851         for (i = 0; i < property->num_values; i++)
4852                 if (property->values[i] == value)
4853                         return true;
4854         return false;
4855 }
4856
4857 void drm_property_change_valid_put(struct drm_property *property,
4858                 struct drm_mode_object *ref)
4859 {
4860         if (!ref)
4861                 return;
4862
4863         if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4864                 if (property->values[0] == DRM_MODE_OBJECT_FB)
4865                         drm_framebuffer_unreference(obj_to_fb(ref));
4866         } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4867                 drm_property_unreference_blob(obj_to_blob(ref));
4868 }
4869
4870 /**
4871  * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4872  * @dev: DRM device
4873  * @data: ioctl data
4874  * @file_priv: DRM file info
4875  *
4876  * This function sets the current value for a connectors's property. It also
4877  * calls into a driver's ->set_property callback to update the hardware state
4878  *
4879  * Called by the user via ioctl.
4880  *
4881  * Returns:
4882  * Zero on success, negative errno on failure.
4883  */
4884 int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4885                                        void *data, struct drm_file *file_priv)
4886 {
4887         struct drm_mode_connector_set_property *conn_set_prop = data;
4888         struct drm_mode_obj_set_property obj_set_prop = {
4889                 .value = conn_set_prop->value,
4890                 .prop_id = conn_set_prop->prop_id,
4891                 .obj_id = conn_set_prop->connector_id,
4892                 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4893         };
4894
4895         /* It does all the locking and checking we need */
4896         return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
4897 }
4898
4899 static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4900                                            struct drm_property *property,
4901                                            uint64_t value)
4902 {
4903         int ret = -EINVAL;
4904         struct drm_connector *connector = obj_to_connector(obj);
4905
4906         /* Do DPMS ourselves */
4907         if (property == connector->dev->mode_config.dpms_property) {
4908                 ret = 0;
4909                 if (connector->funcs->dpms)
4910                         ret = (*connector->funcs->dpms)(connector, (int)value);
4911         } else if (connector->funcs->set_property)
4912                 ret = connector->funcs->set_property(connector, property, value);
4913
4914         /* store the property value if successful */
4915         if (!ret)
4916                 drm_object_property_set_value(&connector->base, property, value);
4917         return ret;
4918 }
4919
4920 static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4921                                       struct drm_property *property,
4922                                       uint64_t value)
4923 {
4924         int ret = -EINVAL;
4925         struct drm_crtc *crtc = obj_to_crtc(obj);
4926
4927         if (crtc->funcs->set_property)
4928                 ret = crtc->funcs->set_property(crtc, property, value);
4929         if (!ret)
4930                 drm_object_property_set_value(obj, property, value);
4931
4932         return ret;
4933 }
4934
4935 /**
4936  * drm_mode_plane_set_obj_prop - set the value of a property
4937  * @plane: drm plane object to set property value for
4938  * @property: property to set
4939  * @value: value the property should be set to
4940  *
4941  * This functions sets a given property on a given plane object. This function
4942  * calls the driver's ->set_property callback and changes the software state of
4943  * the property if the callback succeeds.
4944  *
4945  * Returns:
4946  * Zero on success, error code on failure.
4947  */
4948 int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4949                                 struct drm_property *property,
4950                                 uint64_t value)
4951 {
4952         int ret = -EINVAL;
4953         struct drm_mode_object *obj = &plane->base;
4954
4955         if (plane->funcs->set_property)
4956                 ret = plane->funcs->set_property(plane, property, value);
4957         if (!ret)
4958                 drm_object_property_set_value(obj, property, value);
4959
4960         return ret;
4961 }
4962 EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
4963
4964 /**
4965  * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
4966  * @dev: DRM device
4967  * @data: ioctl data
4968  * @file_priv: DRM file info
4969  *
4970  * This function retrieves the current value for an object's property. Compared
4971  * to the connector specific ioctl this one is extended to also work on crtc and
4972  * plane objects.
4973  *
4974  * Called by the user via ioctl.
4975  *
4976  * Returns:
4977  * Zero on success, negative errno on failure.
4978  */
4979 int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4980                                       struct drm_file *file_priv)
4981 {
4982         struct drm_mode_obj_get_properties *arg = data;
4983         struct drm_mode_object *obj;
4984         int ret = 0;
4985
4986         if (!drm_core_check_feature(dev, DRIVER_MODESET))
4987                 return -EINVAL;
4988
4989         drm_modeset_lock_all(dev);
4990
4991         obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4992         if (!obj) {
4993                 ret = -ENOENT;
4994                 goto out;
4995         }
4996         if (!obj->properties) {
4997                 ret = -EINVAL;
4998                 goto out;
4999         }
5000
5001         ret = get_properties(obj, file_priv->atomic,
5002                         (uint32_t __user *)(unsigned long)(arg->props_ptr),
5003                         (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
5004                         &arg->count_props);
5005
5006 out:
5007         drm_modeset_unlock_all(dev);
5008         return ret;
5009 }
5010
5011 /**
5012  * drm_mode_obj_set_property_ioctl - set the current value of an object's property
5013  * @dev: DRM device
5014  * @data: ioctl data
5015  * @file_priv: DRM file info
5016  *
5017  * This function sets the current value for an object's property. It also calls
5018  * into a driver's ->set_property callback to update the hardware state.
5019  * Compared to the connector specific ioctl this one is extended to also work on
5020  * crtc and plane objects.
5021  *
5022  * Called by the user via ioctl.
5023  *
5024  * Returns:
5025  * Zero on success, negative errno on failure.
5026  */
5027 int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
5028                                     struct drm_file *file_priv)
5029 {
5030         struct drm_mode_obj_set_property *arg = data;
5031         struct drm_mode_object *arg_obj;
5032         struct drm_mode_object *prop_obj;
5033         struct drm_property *property;
5034         int i, ret = -EINVAL;
5035         struct drm_mode_object *ref;
5036
5037         if (!drm_core_check_feature(dev, DRIVER_MODESET))
5038                 return -EINVAL;
5039
5040         drm_modeset_lock_all(dev);
5041
5042         arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
5043         if (!arg_obj) {
5044                 ret = -ENOENT;
5045                 goto out;
5046         }
5047         if (!arg_obj->properties)
5048                 goto out;
5049
5050         for (i = 0; i < arg_obj->properties->count; i++)
5051                 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
5052                         break;
5053
5054         if (i == arg_obj->properties->count)
5055                 goto out;
5056
5057         prop_obj = drm_mode_object_find(dev, arg->prop_id,
5058                                         DRM_MODE_OBJECT_PROPERTY);
5059         if (!prop_obj) {
5060                 ret = -ENOENT;
5061                 goto out;
5062         }
5063         property = obj_to_property(prop_obj);
5064
5065         if (!drm_property_change_valid_get(property, arg->value, &ref))
5066                 goto out;
5067
5068         switch (arg_obj->type) {
5069         case DRM_MODE_OBJECT_CONNECTOR:
5070                 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
5071                                                       arg->value);
5072                 break;
5073         case DRM_MODE_OBJECT_CRTC:
5074                 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
5075                 break;
5076         case DRM_MODE_OBJECT_PLANE:
5077                 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
5078                                                   property, arg->value);
5079                 break;
5080         }
5081
5082         drm_property_change_valid_put(property, ref);
5083
5084 out:
5085         drm_modeset_unlock_all(dev);
5086         return ret;
5087 }
5088
5089 /**
5090  * drm_mode_connector_attach_encoder - attach a connector to an encoder
5091  * @connector: connector to attach
5092  * @encoder: encoder to attach @connector to
5093  *
5094  * This function links up a connector to an encoder. Note that the routing
5095  * restrictions between encoders and crtcs are exposed to userspace through the
5096  * possible_clones and possible_crtcs bitmasks.
5097  *
5098  * Returns:
5099  * Zero on success, negative errno on failure.
5100  */
5101 int drm_mode_connector_attach_encoder(struct drm_connector *connector,
5102                                       struct drm_encoder *encoder)
5103 {
5104         int i;
5105
5106         for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
5107                 if (connector->encoder_ids[i] == 0) {
5108                         connector->encoder_ids[i] = encoder->base.id;
5109                         return 0;
5110                 }
5111         }
5112         return -ENOMEM;
5113 }
5114 EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
5115
5116 /**
5117  * drm_mode_crtc_set_gamma_size - set the gamma table size
5118  * @crtc: CRTC to set the gamma table size for
5119  * @gamma_size: size of the gamma table
5120  *
5121  * Drivers which support gamma tables should set this to the supported gamma
5122  * table size when initializing the CRTC. Currently the drm core only supports a
5123  * fixed gamma table size.
5124  *
5125  * Returns:
5126  * Zero on success, negative errno on failure.
5127  */
5128 int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
5129                                  int gamma_size)
5130 {
5131         crtc->gamma_size = gamma_size;
5132
5133         crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
5134                                     GFP_KERNEL);
5135         if (!crtc->gamma_store) {
5136                 crtc->gamma_size = 0;
5137                 return -ENOMEM;
5138         }
5139
5140         return 0;
5141 }
5142 EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
5143
5144 /**
5145  * drm_mode_gamma_set_ioctl - set the gamma table
5146  * @dev: DRM device
5147  * @data: ioctl data
5148  * @file_priv: DRM file info
5149  *
5150  * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
5151  * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
5152  *
5153  * Called by the user via ioctl.
5154  *
5155  * Returns:
5156  * Zero on success, negative errno on failure.
5157  */
5158 int drm_mode_gamma_set_ioctl(struct drm_device *dev,
5159                              void *data, struct drm_file *file_priv)
5160 {
5161         struct drm_mode_crtc_lut *crtc_lut = data;
5162         struct drm_crtc *crtc;
5163         void *r_base, *g_base, *b_base;
5164         int size;
5165         int ret = 0;
5166
5167         if (!drm_core_check_feature(dev, DRIVER_MODESET))
5168                 return -EINVAL;
5169
5170         drm_modeset_lock_all(dev);
5171         crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5172         if (!crtc) {
5173                 ret = -ENOENT;
5174                 goto out;
5175         }
5176
5177         if (crtc->funcs->gamma_set == NULL) {
5178                 ret = -ENOSYS;
5179                 goto out;
5180         }
5181
5182         /* memcpy into gamma store */
5183         if (crtc_lut->gamma_size != crtc->gamma_size) {
5184                 ret = -EINVAL;
5185                 goto out;
5186         }
5187
5188         size = crtc_lut->gamma_size * (sizeof(uint16_t));
5189         r_base = crtc->gamma_store;
5190         if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
5191                 ret = -EFAULT;
5192                 goto out;
5193         }
5194
5195         g_base = r_base + size;
5196         if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
5197                 ret = -EFAULT;
5198                 goto out;
5199         }
5200
5201         b_base = g_base + size;
5202         if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
5203                 ret = -EFAULT;
5204                 goto out;
5205         }
5206
5207         crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
5208
5209 out:
5210         drm_modeset_unlock_all(dev);
5211         return ret;
5212
5213 }
5214
5215 /**
5216  * drm_mode_gamma_get_ioctl - get the gamma table
5217  * @dev: DRM device
5218  * @data: ioctl data
5219  * @file_priv: DRM file info
5220  *
5221  * Copy the current gamma table into the storage provided. This also provides
5222  * the gamma table size the driver expects, which can be used to size the
5223  * allocated storage.
5224  *
5225  * Called by the user via ioctl.
5226  *
5227  * Returns:
5228  * Zero on success, negative errno on failure.
5229  */
5230 int drm_mode_gamma_get_ioctl(struct drm_device *dev,
5231                              void *data, struct drm_file *file_priv)
5232 {
5233         struct drm_mode_crtc_lut *crtc_lut = data;
5234         struct drm_crtc *crtc;
5235         void *r_base, *g_base, *b_base;
5236         int size;
5237         int ret = 0;
5238
5239         if (!drm_core_check_feature(dev, DRIVER_MODESET))
5240                 return -EINVAL;
5241
5242         drm_modeset_lock_all(dev);
5243         crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5244         if (!crtc) {
5245                 ret = -ENOENT;
5246                 goto out;
5247         }
5248
5249         /* memcpy into gamma store */
5250         if (crtc_lut->gamma_size != crtc->gamma_size) {
5251                 ret = -EINVAL;
5252                 goto out;
5253         }
5254
5255         size = crtc_lut->gamma_size * (sizeof(uint16_t));
5256         r_base = crtc->gamma_store;
5257         if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
5258                 ret = -EFAULT;
5259                 goto out;
5260         }
5261
5262         g_base = r_base + size;
5263         if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
5264                 ret = -EFAULT;
5265                 goto out;
5266         }
5267
5268         b_base = g_base + size;
5269         if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
5270                 ret = -EFAULT;
5271                 goto out;
5272         }
5273 out:
5274         drm_modeset_unlock_all(dev);
5275         return ret;
5276 }
5277
5278 /**
5279  * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
5280  * @dev: DRM device
5281  * @data: ioctl data
5282  * @file_priv: DRM file info
5283  *
5284  * This schedules an asynchronous update on a given CRTC, called page flip.
5285  * Optionally a drm event is generated to signal the completion of the event.
5286  * Generic drivers cannot assume that a pageflip with changed framebuffer
5287  * properties (including driver specific metadata like tiling layout) will work,
5288  * but some drivers support e.g. pixel format changes through the pageflip
5289  * ioctl.
5290  *
5291  * Called by the user via ioctl.
5292  *
5293  * Returns:
5294  * Zero on success, negative errno on failure.
5295  */
5296 int drm_mode_page_flip_ioctl(struct drm_device *dev,
5297                              void *data, struct drm_file *file_priv)
5298 {
5299         struct drm_mode_crtc_page_flip *page_flip = data;
5300         struct drm_crtc *crtc;
5301         struct drm_framebuffer *fb = NULL;
5302         struct drm_pending_vblank_event *e = NULL;
5303         unsigned long flags;
5304         int ret = -EINVAL;
5305
5306         if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
5307             page_flip->reserved != 0)
5308                 return -EINVAL;
5309
5310         if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
5311                 return -EINVAL;
5312
5313         crtc = drm_crtc_find(dev, page_flip->crtc_id);
5314         if (!crtc)
5315                 return -ENOENT;
5316
5317         drm_modeset_lock_crtc(crtc, crtc->primary);
5318         if (crtc->primary->fb == NULL) {
5319                 /* The framebuffer is currently unbound, presumably
5320                  * due to a hotplug event, that userspace has not
5321                  * yet discovered.
5322                  */
5323                 ret = -EBUSY;
5324                 goto out;
5325         }
5326
5327         if (crtc->funcs->page_flip == NULL)
5328                 goto out;
5329
5330         fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
5331         if (!fb) {
5332                 ret = -ENOENT;
5333                 goto out;
5334         }
5335
5336         if (crtc->state) {
5337                 const struct drm_plane_state *state = crtc->primary->state;
5338
5339                 ret = check_src_coords(state->src_x, state->src_y,
5340                                        state->src_w, state->src_h, fb);
5341         } else {
5342                 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
5343         }
5344         if (ret)
5345                 goto out;
5346
5347         if (crtc->primary->fb->pixel_format != fb->pixel_format) {
5348                 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
5349                 ret = -EINVAL;
5350                 goto out;
5351         }
5352
5353         if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5354                 ret = -ENOMEM;
5355                 spin_lock_irqsave(&dev->event_lock, flags);
5356                 if (file_priv->event_space < sizeof(e->event)) {
5357                         spin_unlock_irqrestore(&dev->event_lock, flags);
5358                         goto out;
5359                 }
5360                 file_priv->event_space -= sizeof(e->event);
5361                 spin_unlock_irqrestore(&dev->event_lock, flags);
5362
5363                 e = kzalloc(sizeof(*e), GFP_KERNEL);
5364                 if (e == NULL) {
5365                         spin_lock_irqsave(&dev->event_lock, flags);
5366                         file_priv->event_space += sizeof(e->event);
5367                         spin_unlock_irqrestore(&dev->event_lock, flags);
5368                         goto out;
5369                 }
5370
5371                 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
5372                 e->event.base.length = sizeof(e->event);
5373                 e->event.user_data = page_flip->user_data;
5374                 e->base.event = &e->event.base;
5375                 e->base.file_priv = file_priv;
5376                 e->base.destroy =
5377                         (void (*) (struct drm_pending_event *)) kfree;
5378         }
5379
5380         crtc->primary->old_fb = crtc->primary->fb;
5381         ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
5382         if (ret) {
5383                 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5384                         spin_lock_irqsave(&dev->event_lock, flags);
5385                         file_priv->event_space += sizeof(e->event);
5386                         spin_unlock_irqrestore(&dev->event_lock, flags);
5387                         kfree(e);
5388                 }
5389                 /* Keep the old fb, don't unref it. */
5390                 crtc->primary->old_fb = NULL;
5391         } else {
5392                 crtc->primary->fb = fb;
5393                 /* Unref only the old framebuffer. */
5394                 fb = NULL;
5395         }
5396
5397 out:
5398         if (fb)
5399                 drm_framebuffer_unreference(fb);
5400         if (crtc->primary->old_fb)
5401                 drm_framebuffer_unreference(crtc->primary->old_fb);
5402         crtc->primary->old_fb = NULL;
5403         drm_modeset_unlock_crtc(crtc);
5404
5405         return ret;
5406 }
5407
5408 /**
5409  * drm_mode_config_reset - call ->reset callbacks
5410  * @dev: drm device
5411  *
5412  * This functions calls all the crtc's, encoder's and connector's ->reset
5413  * callback. Drivers can use this in e.g. their driver load or resume code to
5414  * reset hardware and software state.
5415  */
5416 void drm_mode_config_reset(struct drm_device *dev)
5417 {
5418         struct drm_crtc *crtc;
5419         struct drm_plane *plane;
5420         struct drm_encoder *encoder;
5421         struct drm_connector *connector;
5422
5423         drm_for_each_plane(plane, dev)
5424                 if (plane->funcs->reset)
5425                         plane->funcs->reset(plane);
5426
5427         drm_for_each_crtc(crtc, dev)
5428                 if (crtc->funcs->reset)
5429                         crtc->funcs->reset(crtc);
5430
5431         drm_for_each_encoder(encoder, dev)
5432                 if (encoder->funcs->reset)
5433                         encoder->funcs->reset(encoder);
5434
5435         mutex_lock(&dev->mode_config.mutex);
5436         drm_for_each_connector(connector, dev)
5437                 if (connector->funcs->reset)
5438                         connector->funcs->reset(connector);
5439         mutex_unlock(&dev->mode_config.mutex);
5440 }
5441 EXPORT_SYMBOL(drm_mode_config_reset);
5442
5443 /**
5444  * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
5445  * @dev: DRM device
5446  * @data: ioctl data
5447  * @file_priv: DRM file info
5448  *
5449  * This creates a new dumb buffer in the driver's backing storage manager (GEM,
5450  * TTM or something else entirely) and returns the resulting buffer handle. This
5451  * handle can then be wrapped up into a framebuffer modeset object.
5452  *
5453  * Note that userspace is not allowed to use such objects for render
5454  * acceleration - drivers must create their own private ioctls for such a use
5455  * case.
5456  *
5457  * Called by the user via ioctl.
5458  *
5459  * Returns:
5460  * Zero on success, negative errno on failure.
5461  */
5462 int drm_mode_create_dumb_ioctl(struct drm_device *dev,
5463                                void *data, struct drm_file *file_priv)
5464 {
5465         struct drm_mode_create_dumb *args = data;
5466         u32 cpp, stride, size;
5467
5468         if (!dev->driver->dumb_create)
5469                 return -ENOSYS;
5470         if (!args->width || !args->height || !args->bpp)
5471                 return -EINVAL;
5472
5473         /* overflow checks for 32bit size calculations */
5474         /* NOTE: DIV_ROUND_UP() can overflow */
5475         cpp = DIV_ROUND_UP(args->bpp, 8);
5476         if (!cpp || cpp > 0xffffffffU / args->width)
5477                 return -EINVAL;
5478         stride = cpp * args->width;
5479         if (args->height > 0xffffffffU / stride)
5480                 return -EINVAL;
5481
5482         /* test for wrap-around */
5483         size = args->height * stride;
5484         if (PAGE_ALIGN(size) == 0)
5485                 return -EINVAL;
5486
5487         /*
5488          * handle, pitch and size are output parameters. Zero them out to
5489          * prevent drivers from accidentally using uninitialized data. Since
5490          * not all existing userspace is clearing these fields properly we
5491          * cannot reject IOCTL with garbage in them.
5492          */
5493         args->handle = 0;
5494         args->pitch = 0;
5495         args->size = 0;
5496
5497         return dev->driver->dumb_create(file_priv, dev, args);
5498 }
5499
5500 /**
5501  * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5502  * @dev: DRM device
5503  * @data: ioctl data
5504  * @file_priv: DRM file info
5505  *
5506  * Allocate an offset in the drm device node's address space to be able to
5507  * memory map a dumb buffer.
5508  *
5509  * Called by the user via ioctl.
5510  *
5511  * Returns:
5512  * Zero on success, negative errno on failure.
5513  */
5514 int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5515                              void *data, struct drm_file *file_priv)
5516 {
5517         struct drm_mode_map_dumb *args = data;
5518
5519         /* call driver ioctl to get mmap offset */
5520         if (!dev->driver->dumb_map_offset)
5521                 return -ENOSYS;
5522
5523         return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5524 }
5525
5526 /**
5527  * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5528  * @dev: DRM device
5529  * @data: ioctl data
5530  * @file_priv: DRM file info
5531  *
5532  * This destroys the userspace handle for the given dumb backing storage buffer.
5533  * Since buffer objects must be reference counted in the kernel a buffer object
5534  * won't be immediately freed if a framebuffer modeset object still uses it.
5535  *
5536  * Called by the user via ioctl.
5537  *
5538  * Returns:
5539  * Zero on success, negative errno on failure.
5540  */
5541 int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5542                                 void *data, struct drm_file *file_priv)
5543 {
5544         struct drm_mode_destroy_dumb *args = data;
5545
5546         if (!dev->driver->dumb_destroy)
5547                 return -ENOSYS;
5548
5549         return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5550 }
5551
5552 /**
5553  * drm_fb_get_bpp_depth - get the bpp/depth values for format
5554  * @format: pixel format (DRM_FORMAT_*)
5555  * @depth: storage for the depth value
5556  * @bpp: storage for the bpp value
5557  *
5558  * This only supports RGB formats here for compat with code that doesn't use
5559  * pixel formats directly yet.
5560  */
5561 void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5562                           int *bpp)
5563 {
5564         switch (format) {
5565         case DRM_FORMAT_C8:
5566         case DRM_FORMAT_RGB332:
5567         case DRM_FORMAT_BGR233:
5568                 *depth = 8;
5569                 *bpp = 8;
5570                 break;
5571         case DRM_FORMAT_XRGB1555:
5572         case DRM_FORMAT_XBGR1555:
5573         case DRM_FORMAT_RGBX5551:
5574         case DRM_FORMAT_BGRX5551:
5575         case DRM_FORMAT_ARGB1555:
5576         case DRM_FORMAT_ABGR1555:
5577         case DRM_FORMAT_RGBA5551:
5578         case DRM_FORMAT_BGRA5551:
5579                 *depth = 15;
5580                 *bpp = 16;
5581                 break;
5582         case DRM_FORMAT_RGB565:
5583         case DRM_FORMAT_BGR565:
5584                 *depth = 16;
5585                 *bpp = 16;
5586                 break;
5587         case DRM_FORMAT_RGB888:
5588         case DRM_FORMAT_BGR888:
5589                 *depth = 24;
5590                 *bpp = 24;
5591                 break;
5592         case DRM_FORMAT_XRGB8888:
5593         case DRM_FORMAT_XBGR8888:
5594         case DRM_FORMAT_RGBX8888:
5595         case DRM_FORMAT_BGRX8888:
5596                 *depth = 24;
5597                 *bpp = 32;
5598                 break;
5599         case DRM_FORMAT_XRGB2101010:
5600         case DRM_FORMAT_XBGR2101010:
5601         case DRM_FORMAT_RGBX1010102:
5602         case DRM_FORMAT_BGRX1010102:
5603         case DRM_FORMAT_ARGB2101010:
5604         case DRM_FORMAT_ABGR2101010:
5605         case DRM_FORMAT_RGBA1010102:
5606         case DRM_FORMAT_BGRA1010102:
5607                 *depth = 30;
5608                 *bpp = 32;
5609                 break;
5610         case DRM_FORMAT_ARGB8888:
5611         case DRM_FORMAT_ABGR8888:
5612         case DRM_FORMAT_RGBA8888:
5613         case DRM_FORMAT_BGRA8888:
5614                 *depth = 32;
5615                 *bpp = 32;
5616                 break;
5617         default:
5618                 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5619                               drm_get_format_name(format));
5620                 *depth = 0;
5621                 *bpp = 0;
5622                 break;
5623         }
5624 }
5625 EXPORT_SYMBOL(drm_fb_get_bpp_depth);
5626
5627 /**
5628  * drm_format_num_planes - get the number of planes for format
5629  * @format: pixel format (DRM_FORMAT_*)
5630  *
5631  * Returns:
5632  * The number of planes used by the specified pixel format.
5633  */
5634 int drm_format_num_planes(uint32_t format)
5635 {
5636         switch (format) {
5637         case DRM_FORMAT_YUV410:
5638         case DRM_FORMAT_YVU410:
5639         case DRM_FORMAT_YUV411:
5640         case DRM_FORMAT_YVU411:
5641         case DRM_FORMAT_YUV420:
5642         case DRM_FORMAT_YVU420:
5643         case DRM_FORMAT_YUV422:
5644         case DRM_FORMAT_YVU422:
5645         case DRM_FORMAT_YUV444:
5646         case DRM_FORMAT_YVU444:
5647                 return 3;
5648         case DRM_FORMAT_NV12:
5649         case DRM_FORMAT_NV21:
5650         case DRM_FORMAT_NV16:
5651         case DRM_FORMAT_NV61:
5652         case DRM_FORMAT_NV24:
5653         case DRM_FORMAT_NV42:
5654                 return 2;
5655         default:
5656                 return 1;
5657         }
5658 }
5659 EXPORT_SYMBOL(drm_format_num_planes);
5660
5661 /**
5662  * drm_format_plane_cpp - determine the bytes per pixel value
5663  * @format: pixel format (DRM_FORMAT_*)
5664  * @plane: plane index
5665  *
5666  * Returns:
5667  * The bytes per pixel value for the specified plane.
5668  */
5669 int drm_format_plane_cpp(uint32_t format, int plane)
5670 {
5671         unsigned int depth;
5672         int bpp;
5673
5674         if (plane >= drm_format_num_planes(format))
5675                 return 0;
5676
5677         switch (format) {
5678         case DRM_FORMAT_YUYV:
5679         case DRM_FORMAT_YVYU:
5680         case DRM_FORMAT_UYVY:
5681         case DRM_FORMAT_VYUY:
5682                 return 2;
5683         case DRM_FORMAT_NV12:
5684         case DRM_FORMAT_NV21:
5685         case DRM_FORMAT_NV16:
5686         case DRM_FORMAT_NV61:
5687         case DRM_FORMAT_NV24:
5688         case DRM_FORMAT_NV42:
5689                 return plane ? 2 : 1;
5690         case DRM_FORMAT_YUV410:
5691         case DRM_FORMAT_YVU410:
5692         case DRM_FORMAT_YUV411:
5693         case DRM_FORMAT_YVU411:
5694         case DRM_FORMAT_YUV420:
5695         case DRM_FORMAT_YVU420:
5696         case DRM_FORMAT_YUV422:
5697         case DRM_FORMAT_YVU422:
5698         case DRM_FORMAT_YUV444:
5699         case DRM_FORMAT_YVU444:
5700                 return 1;
5701         default:
5702                 drm_fb_get_bpp_depth(format, &depth, &bpp);
5703                 return bpp >> 3;
5704         }
5705 }
5706 EXPORT_SYMBOL(drm_format_plane_cpp);
5707
5708 /**
5709  * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5710  * @format: pixel format (DRM_FORMAT_*)
5711  *
5712  * Returns:
5713  * The horizontal chroma subsampling factor for the
5714  * specified pixel format.
5715  */
5716 int drm_format_horz_chroma_subsampling(uint32_t format)
5717 {
5718         switch (format) {
5719         case DRM_FORMAT_YUV411:
5720         case DRM_FORMAT_YVU411:
5721         case DRM_FORMAT_YUV410:
5722         case DRM_FORMAT_YVU410:
5723                 return 4;
5724         case DRM_FORMAT_YUYV:
5725         case DRM_FORMAT_YVYU:
5726         case DRM_FORMAT_UYVY:
5727         case DRM_FORMAT_VYUY:
5728         case DRM_FORMAT_NV12:
5729         case DRM_FORMAT_NV21:
5730         case DRM_FORMAT_NV16:
5731         case DRM_FORMAT_NV61:
5732         case DRM_FORMAT_YUV422:
5733         case DRM_FORMAT_YVU422:
5734         case DRM_FORMAT_YUV420:
5735         case DRM_FORMAT_YVU420:
5736                 return 2;
5737         default:
5738                 return 1;
5739         }
5740 }
5741 EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5742
5743 /**
5744  * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5745  * @format: pixel format (DRM_FORMAT_*)
5746  *
5747  * Returns:
5748  * The vertical chroma subsampling factor for the
5749  * specified pixel format.
5750  */
5751 int drm_format_vert_chroma_subsampling(uint32_t format)
5752 {
5753         switch (format) {
5754         case DRM_FORMAT_YUV410:
5755         case DRM_FORMAT_YVU410:
5756                 return 4;
5757         case DRM_FORMAT_YUV420:
5758         case DRM_FORMAT_YVU420:
5759         case DRM_FORMAT_NV12:
5760         case DRM_FORMAT_NV21:
5761                 return 2;
5762         default:
5763                 return 1;
5764         }
5765 }
5766 EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
5767
5768 /**
5769  * drm_rotation_simplify() - Try to simplify the rotation
5770  * @rotation: Rotation to be simplified
5771  * @supported_rotations: Supported rotations
5772  *
5773  * Attempt to simplify the rotation to a form that is supported.
5774  * Eg. if the hardware supports everything except DRM_REFLECT_X
5775  * one could call this function like this:
5776  *
5777  * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5778  *                       BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5779  *                       BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5780  *
5781  * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5782  * transforms the hardware supports, this function may not
5783  * be able to produce a supported transform, so the caller should
5784  * check the result afterwards.
5785  */
5786 unsigned int drm_rotation_simplify(unsigned int rotation,
5787                                    unsigned int supported_rotations)
5788 {
5789         if (rotation & ~supported_rotations) {
5790                 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5791                 rotation = (rotation & DRM_REFLECT_MASK) |
5792                            BIT((ffs(rotation & DRM_ROTATE_MASK) + 1) % 4);
5793         }
5794
5795         return rotation;
5796 }
5797 EXPORT_SYMBOL(drm_rotation_simplify);
5798
5799 /**
5800  * drm_mode_config_init - initialize DRM mode_configuration structure
5801  * @dev: DRM device
5802  *
5803  * Initialize @dev's mode_config structure, used for tracking the graphics
5804  * configuration of @dev.
5805  *
5806  * Since this initializes the modeset locks, no locking is possible. Which is no
5807  * problem, since this should happen single threaded at init time. It is the
5808  * driver's problem to ensure this guarantee.
5809  *
5810  */
5811 void drm_mode_config_init(struct drm_device *dev)
5812 {
5813         mutex_init(&dev->mode_config.mutex);
5814         drm_modeset_lock_init(&dev->mode_config.connection_mutex);
5815         mutex_init(&dev->mode_config.idr_mutex);
5816         mutex_init(&dev->mode_config.fb_lock);
5817         mutex_init(&dev->mode_config.blob_lock);
5818         INIT_LIST_HEAD(&dev->mode_config.fb_list);
5819         INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5820         INIT_LIST_HEAD(&dev->mode_config.connector_list);
5821         INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5822         INIT_LIST_HEAD(&dev->mode_config.property_list);
5823         INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5824         INIT_LIST_HEAD(&dev->mode_config.plane_list);
5825         idr_init(&dev->mode_config.crtc_idr);
5826         idr_init(&dev->mode_config.tile_idr);
5827
5828         drm_modeset_lock_all(dev);
5829         drm_mode_create_standard_properties(dev);
5830         drm_modeset_unlock_all(dev);
5831
5832         /* Just to be sure */
5833         dev->mode_config.num_fb = 0;
5834         dev->mode_config.num_connector = 0;
5835         dev->mode_config.num_crtc = 0;
5836         dev->mode_config.num_encoder = 0;
5837         dev->mode_config.num_overlay_plane = 0;
5838         dev->mode_config.num_total_plane = 0;
5839 }
5840 EXPORT_SYMBOL(drm_mode_config_init);
5841
5842 /**
5843  * drm_mode_config_cleanup - free up DRM mode_config info
5844  * @dev: DRM device
5845  *
5846  * Free up all the connectors and CRTCs associated with this DRM device, then
5847  * free up the framebuffers and associated buffer objects.
5848  *
5849  * Note that since this /should/ happen single-threaded at driver/device
5850  * teardown time, no locking is required. It's the driver's job to ensure that
5851  * this guarantee actually holds true.
5852  *
5853  * FIXME: cleanup any dangling user buffer objects too
5854  */
5855 void drm_mode_config_cleanup(struct drm_device *dev)
5856 {
5857         struct drm_connector *connector, *ot;
5858         struct drm_crtc *crtc, *ct;
5859         struct drm_encoder *encoder, *enct;
5860         struct drm_framebuffer *fb, *fbt;
5861         struct drm_property *property, *pt;
5862         struct drm_property_blob *blob, *bt;
5863         struct drm_plane *plane, *plt;
5864
5865         list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5866                                  head) {
5867                 encoder->funcs->destroy(encoder);
5868         }
5869
5870         list_for_each_entry_safe(connector, ot,
5871                                  &dev->mode_config.connector_list, head) {
5872                 connector->funcs->destroy(connector);
5873         }
5874
5875         list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5876                                  head) {
5877                 drm_property_destroy(dev, property);
5878         }
5879
5880         list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5881                                  head_global) {
5882                 drm_property_unreference_blob(blob);
5883         }
5884
5885         /*
5886          * Single-threaded teardown context, so it's not required to grab the
5887          * fb_lock to protect against concurrent fb_list access. Contrary, it
5888          * would actually deadlock with the drm_framebuffer_cleanup function.
5889          *
5890          * Also, if there are any framebuffers left, that's a driver leak now,
5891          * so politely WARN about this.
5892          */
5893         WARN_ON(!list_empty(&dev->mode_config.fb_list));
5894         list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5895                 drm_framebuffer_free(&fb->refcount);
5896         }
5897
5898         list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5899                                  head) {
5900                 plane->funcs->destroy(plane);
5901         }
5902
5903         list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5904                 crtc->funcs->destroy(crtc);
5905         }
5906
5907         idr_destroy(&dev->mode_config.tile_idr);
5908         idr_destroy(&dev->mode_config.crtc_idr);
5909         drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
5910 }
5911 EXPORT_SYMBOL(drm_mode_config_cleanup);
5912
5913 struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5914                                                        unsigned int supported_rotations)
5915 {
5916         static const struct drm_prop_enum_list props[] = {
5917                 { DRM_ROTATE_0,   "rotate-0" },
5918                 { DRM_ROTATE_90,  "rotate-90" },
5919                 { DRM_ROTATE_180, "rotate-180" },
5920                 { DRM_ROTATE_270, "rotate-270" },
5921                 { DRM_REFLECT_X,  "reflect-x" },
5922                 { DRM_REFLECT_Y,  "reflect-y" },
5923         };
5924
5925         return drm_property_create_bitmask(dev, 0, "rotation",
5926                                            props, ARRAY_SIZE(props),
5927                                            supported_rotations);
5928 }
5929 EXPORT_SYMBOL(drm_mode_create_rotation_property);
5930
5931 /**
5932  * DOC: Tile group
5933  *
5934  * Tile groups are used to represent tiled monitors with a unique
5935  * integer identifier. Tiled monitors using DisplayID v1.3 have
5936  * a unique 8-byte handle, we store this in a tile group, so we
5937  * have a common identifier for all tiles in a monitor group.
5938  */
5939 static void drm_tile_group_free(struct kref *kref)
5940 {
5941         struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5942         struct drm_device *dev = tg->dev;
5943         mutex_lock(&dev->mode_config.idr_mutex);
5944         idr_remove(&dev->mode_config.tile_idr, tg->id);
5945         mutex_unlock(&dev->mode_config.idr_mutex);
5946         kfree(tg);
5947 }
5948
5949 /**
5950  * drm_mode_put_tile_group - drop a reference to a tile group.
5951  * @dev: DRM device
5952  * @tg: tile group to drop reference to.
5953  *
5954  * drop reference to tile group and free if 0.
5955  */
5956 void drm_mode_put_tile_group(struct drm_device *dev,
5957                              struct drm_tile_group *tg)
5958 {
5959         kref_put(&tg->refcount, drm_tile_group_free);
5960 }
5961
5962 /**
5963  * drm_mode_get_tile_group - get a reference to an existing tile group
5964  * @dev: DRM device
5965  * @topology: 8-bytes unique per monitor.
5966  *
5967  * Use the unique bytes to get a reference to an existing tile group.
5968  *
5969  * RETURNS:
5970  * tile group or NULL if not found.
5971  */
5972 struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5973                                                char topology[8])
5974 {
5975         struct drm_tile_group *tg;
5976         int id;
5977         mutex_lock(&dev->mode_config.idr_mutex);
5978         idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5979                 if (!memcmp(tg->group_data, topology, 8)) {
5980                         if (!kref_get_unless_zero(&tg->refcount))
5981                                 tg = NULL;
5982                         mutex_unlock(&dev->mode_config.idr_mutex);
5983                         return tg;
5984                 }
5985         }
5986         mutex_unlock(&dev->mode_config.idr_mutex);
5987         return NULL;
5988 }
5989 EXPORT_SYMBOL(drm_mode_get_tile_group);
5990
5991 /**
5992  * drm_mode_create_tile_group - create a tile group from a displayid description
5993  * @dev: DRM device
5994  * @topology: 8-bytes unique per monitor.
5995  *
5996  * Create a tile group for the unique monitor, and get a unique
5997  * identifier for the tile group.
5998  *
5999  * RETURNS:
6000  * new tile group or error.
6001  */
6002 struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
6003                                                   char topology[8])
6004 {
6005         struct drm_tile_group *tg;
6006         int ret;
6007
6008         tg = kzalloc(sizeof(*tg), GFP_KERNEL);
6009         if (!tg)
6010                 return ERR_PTR(-ENOMEM);
6011
6012         kref_init(&tg->refcount);
6013         memcpy(tg->group_data, topology, 8);
6014         tg->dev = dev;
6015
6016         mutex_lock(&dev->mode_config.idr_mutex);
6017         ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
6018         if (ret >= 0) {
6019                 tg->id = ret;
6020         } else {
6021                 kfree(tg);
6022                 tg = ERR_PTR(ret);
6023         }
6024
6025         mutex_unlock(&dev->mode_config.idr_mutex);
6026         return tg;
6027 }
6028 EXPORT_SYMBOL(drm_mode_create_tile_group);