UPSTREAM: drm: Do not set connector->encoder in drivers
[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 struct drm_mode_rmfb_work {
3440         struct work_struct work;
3441         struct list_head fbs;
3442 };
3443
3444 static void drm_mode_rmfb_work_fn(struct work_struct *w)
3445 {
3446         struct drm_mode_rmfb_work *arg = container_of(w, typeof(*arg), work);
3447
3448         while (!list_empty(&arg->fbs)) {
3449                 struct drm_framebuffer *fb =
3450                         list_first_entry(&arg->fbs, typeof(*fb), filp_head);
3451
3452                 list_del_init(&fb->filp_head);
3453                 drm_framebuffer_remove(fb);
3454         }
3455 }
3456
3457 /**
3458  * drm_mode_rmfb - remove an FB from the configuration
3459  * @dev: drm device for the ioctl
3460  * @data: data pointer for the ioctl
3461  * @file_priv: drm file for the ioctl call
3462  *
3463  * Remove the FB specified by the user.
3464  *
3465  * Called by the user via ioctl.
3466  *
3467  * Returns:
3468  * Zero on success, negative errno on failure.
3469  */
3470 int drm_mode_rmfb(struct drm_device *dev,
3471                    void *data, struct drm_file *file_priv)
3472 {
3473         struct drm_framebuffer *fb = NULL;
3474         struct drm_framebuffer *fbl = NULL;
3475         uint32_t *id = data;
3476         int found = 0;
3477
3478         if (!drm_core_check_feature(dev, DRIVER_MODESET))
3479                 return -EINVAL;
3480
3481         mutex_lock(&file_priv->fbs_lock);
3482         mutex_lock(&dev->mode_config.fb_lock);
3483         fb = __drm_framebuffer_lookup(dev, *id);
3484         if (!fb)
3485                 goto fail_lookup;
3486
3487         list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3488                 if (fb == fbl)
3489                         found = 1;
3490         if (!found)
3491                 goto fail_lookup;
3492
3493         list_del_init(&fb->filp_head);
3494         mutex_unlock(&dev->mode_config.fb_lock);
3495         mutex_unlock(&file_priv->fbs_lock);
3496
3497         /*
3498          * we now own the reference that was stored in the fbs list
3499          *
3500          * drm_framebuffer_remove may fail with -EINTR on pending signals,
3501          * so run this in a separate stack as there's no way to correctly
3502          * handle this after the fb is already removed from the lookup table.
3503          */
3504         if (atomic_read(&fb->refcount.refcount) > 1) {
3505                 struct drm_mode_rmfb_work arg;
3506
3507                 INIT_WORK_ONSTACK(&arg.work, drm_mode_rmfb_work_fn);
3508                 INIT_LIST_HEAD(&arg.fbs);
3509                 list_add_tail(&fb->filp_head, &arg.fbs);
3510
3511                 schedule_work(&arg.work);
3512                 flush_work(&arg.work);
3513                 destroy_work_on_stack(&arg.work);
3514         } else
3515                 drm_framebuffer_unreference(fb);
3516
3517         return 0;
3518
3519 fail_lookup:
3520         mutex_unlock(&dev->mode_config.fb_lock);
3521         mutex_unlock(&file_priv->fbs_lock);
3522
3523         return -ENOENT;
3524 }
3525
3526 /**
3527  * drm_mode_getfb - get FB info
3528  * @dev: drm device for the ioctl
3529  * @data: data pointer for the ioctl
3530  * @file_priv: drm file for the ioctl call
3531  *
3532  * Lookup the FB given its ID and return info about it.
3533  *
3534  * Called by the user via ioctl.
3535  *
3536  * Returns:
3537  * Zero on success, negative errno on failure.
3538  */
3539 int drm_mode_getfb(struct drm_device *dev,
3540                    void *data, struct drm_file *file_priv)
3541 {
3542         struct drm_mode_fb_cmd *r = data;
3543         struct drm_framebuffer *fb;
3544         int ret;
3545
3546         if (!drm_core_check_feature(dev, DRIVER_MODESET))
3547                 return -EINVAL;
3548
3549         fb = drm_framebuffer_lookup(dev, r->fb_id);
3550         if (!fb)
3551                 return -ENOENT;
3552
3553         r->height = fb->height;
3554         r->width = fb->width;
3555         r->depth = fb->depth;
3556         r->bpp = fb->bits_per_pixel;
3557         r->pitch = fb->pitches[0];
3558         if (fb->funcs->create_handle) {
3559                 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
3560                     drm_is_control_client(file_priv)) {
3561                         ret = fb->funcs->create_handle(fb, file_priv,
3562                                                        &r->handle);
3563                 } else {
3564                         /* GET_FB() is an unprivileged ioctl so we must not
3565                          * return a buffer-handle to non-master processes! For
3566                          * backwards-compatibility reasons, we cannot make
3567                          * GET_FB() privileged, so just return an invalid handle
3568                          * for non-masters. */
3569                         r->handle = 0;
3570                         ret = 0;
3571                 }
3572         } else {
3573                 ret = -ENODEV;
3574         }
3575
3576         drm_framebuffer_unreference(fb);
3577
3578         return ret;
3579 }
3580
3581 /**
3582  * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3583  * @dev: drm device for the ioctl
3584  * @data: data pointer for the ioctl
3585  * @file_priv: drm file for the ioctl call
3586  *
3587  * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3588  * rectangle list. Generic userspace which does frontbuffer rendering must call
3589  * this ioctl to flush out the changes on manual-update display outputs, e.g.
3590  * usb display-link, mipi manual update panels or edp panel self refresh modes.
3591  *
3592  * Modesetting drivers which always update the frontbuffer do not need to
3593  * implement the corresponding ->dirty framebuffer callback.
3594  *
3595  * Called by the user via ioctl.
3596  *
3597  * Returns:
3598  * Zero on success, negative errno on failure.
3599  */
3600 int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3601                            void *data, struct drm_file *file_priv)
3602 {
3603         struct drm_clip_rect __user *clips_ptr;
3604         struct drm_clip_rect *clips = NULL;
3605         struct drm_mode_fb_dirty_cmd *r = data;
3606         struct drm_framebuffer *fb;
3607         unsigned flags;
3608         int num_clips;
3609         int ret;
3610
3611         if (!drm_core_check_feature(dev, DRIVER_MODESET))
3612                 return -EINVAL;
3613
3614         fb = drm_framebuffer_lookup(dev, r->fb_id);
3615         if (!fb)
3616                 return -ENOENT;
3617
3618         num_clips = r->num_clips;
3619         clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
3620
3621         if (!num_clips != !clips_ptr) {
3622                 ret = -EINVAL;
3623                 goto out_err1;
3624         }
3625
3626         flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3627
3628         /* If userspace annotates copy, clips must come in pairs */
3629         if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3630                 ret = -EINVAL;
3631                 goto out_err1;
3632         }
3633
3634         if (num_clips && clips_ptr) {
3635                 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3636                         ret = -EINVAL;
3637                         goto out_err1;
3638                 }
3639                 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
3640                 if (!clips) {
3641                         ret = -ENOMEM;
3642                         goto out_err1;
3643                 }
3644
3645                 ret = copy_from_user(clips, clips_ptr,
3646                                      num_clips * sizeof(*clips));
3647                 if (ret) {
3648                         ret = -EFAULT;
3649                         goto out_err2;
3650                 }
3651         }
3652
3653         if (fb->funcs->dirty) {
3654                 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3655                                        clips, num_clips);
3656         } else {
3657                 ret = -ENOSYS;
3658         }
3659
3660 out_err2:
3661         kfree(clips);
3662 out_err1:
3663         drm_framebuffer_unreference(fb);
3664
3665         return ret;
3666 }
3667
3668 /**
3669  * drm_fb_release - remove and free the FBs on this file
3670  * @priv: drm file for the ioctl
3671  *
3672  * Destroy all the FBs associated with @filp.
3673  *
3674  * Called by the user via ioctl.
3675  *
3676  * Returns:
3677  * Zero on success, negative errno on failure.
3678  */
3679 void drm_fb_release(struct drm_file *priv)
3680 {
3681         struct drm_framebuffer *fb, *tfb;
3682         struct drm_mode_rmfb_work arg;
3683
3684         INIT_LIST_HEAD(&arg.fbs);
3685
3686         /*
3687          * When the file gets released that means no one else can access the fb
3688          * list any more, so no need to grab fpriv->fbs_lock. And we need to
3689          * avoid upsetting lockdep since the universal cursor code adds a
3690          * framebuffer while holding mutex locks.
3691          *
3692          * Note that a real deadlock between fpriv->fbs_lock and the modeset
3693          * locks is impossible here since no one else but this function can get
3694          * at it any more.
3695          */
3696         list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
3697                 if (atomic_read(&fb->refcount.refcount) > 1) {
3698                         list_move_tail(&fb->filp_head, &arg.fbs);
3699                 } else {
3700                         list_del_init(&fb->filp_head);
3701
3702                         /* This drops the fpriv->fbs reference. */
3703                         drm_framebuffer_unreference(fb);
3704                 }
3705         }
3706
3707         if (!list_empty(&arg.fbs)) {
3708                 INIT_WORK_ONSTACK(&arg.work, drm_mode_rmfb_work_fn);
3709
3710                 schedule_work(&arg.work);
3711                 flush_work(&arg.work);
3712                 destroy_work_on_stack(&arg.work);
3713         }
3714 }
3715
3716 /**
3717  * drm_property_create - create a new property type
3718  * @dev: drm device
3719  * @flags: flags specifying the property type
3720  * @name: name of the property
3721  * @num_values: number of pre-defined values
3722  *
3723  * This creates a new generic drm property which can then be attached to a drm
3724  * object with drm_object_attach_property. The returned property object must be
3725  * freed with drm_property_destroy.
3726  *
3727  * Note that the DRM core keeps a per-device list of properties and that, if
3728  * drm_mode_config_cleanup() is called, it will destroy all properties created
3729  * by the driver.
3730  *
3731  * Returns:
3732  * A pointer to the newly created property on success, NULL on failure.
3733  */
3734 struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3735                                          const char *name, int num_values)
3736 {
3737         struct drm_property *property = NULL;
3738         int ret;
3739
3740         property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3741         if (!property)
3742                 return NULL;
3743
3744         property->dev = dev;
3745
3746         if (num_values) {
3747                 property->values = kcalloc(num_values, sizeof(uint64_t),
3748                                            GFP_KERNEL);
3749                 if (!property->values)
3750                         goto fail;
3751         }
3752
3753         ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3754         if (ret)
3755                 goto fail;
3756
3757         property->flags = flags;
3758         property->num_values = num_values;
3759         INIT_LIST_HEAD(&property->enum_list);
3760
3761         if (name) {
3762                 strncpy(property->name, name, DRM_PROP_NAME_LEN);
3763                 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3764         }
3765
3766         list_add_tail(&property->head, &dev->mode_config.property_list);
3767
3768         WARN_ON(!drm_property_type_valid(property));
3769
3770         return property;
3771 fail:
3772         kfree(property->values);
3773         kfree(property);
3774         return NULL;
3775 }
3776 EXPORT_SYMBOL(drm_property_create);
3777
3778 /**
3779  * drm_property_create_enum - create a new enumeration property type
3780  * @dev: drm device
3781  * @flags: flags specifying the property type
3782  * @name: name of the property
3783  * @props: enumeration lists with property values
3784  * @num_values: number of pre-defined values
3785  *
3786  * This creates a new generic drm property which can then be attached to a drm
3787  * object with drm_object_attach_property. The returned property object must be
3788  * freed with drm_property_destroy.
3789  *
3790  * Userspace is only allowed to set one of the predefined values for enumeration
3791  * properties.
3792  *
3793  * Returns:
3794  * A pointer to the newly created property on success, NULL on failure.
3795  */
3796 struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3797                                          const char *name,
3798                                          const struct drm_prop_enum_list *props,
3799                                          int num_values)
3800 {
3801         struct drm_property *property;
3802         int i, ret;
3803
3804         flags |= DRM_MODE_PROP_ENUM;
3805
3806         property = drm_property_create(dev, flags, name, num_values);
3807         if (!property)
3808                 return NULL;
3809
3810         for (i = 0; i < num_values; i++) {
3811                 ret = drm_property_add_enum(property, i,
3812                                       props[i].type,
3813                                       props[i].name);
3814                 if (ret) {
3815                         drm_property_destroy(dev, property);
3816                         return NULL;
3817                 }
3818         }
3819
3820         return property;
3821 }
3822 EXPORT_SYMBOL(drm_property_create_enum);
3823
3824 /**
3825  * drm_property_create_bitmask - create a new bitmask property type
3826  * @dev: drm device
3827  * @flags: flags specifying the property type
3828  * @name: name of the property
3829  * @props: enumeration lists with property bitflags
3830  * @num_props: size of the @props array
3831  * @supported_bits: bitmask of all supported enumeration values
3832  *
3833  * This creates a new bitmask drm property which can then be attached to a drm
3834  * object with drm_object_attach_property. The returned property object must be
3835  * freed with drm_property_destroy.
3836  *
3837  * Compared to plain enumeration properties userspace is allowed to set any
3838  * or'ed together combination of the predefined property bitflag values
3839  *
3840  * Returns:
3841  * A pointer to the newly created property on success, NULL on failure.
3842  */
3843 struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3844                                          int flags, const char *name,
3845                                          const struct drm_prop_enum_list *props,
3846                                          int num_props,
3847                                          uint64_t supported_bits)
3848 {
3849         struct drm_property *property;
3850         int i, ret, index = 0;
3851         int num_values = hweight64(supported_bits);
3852
3853         flags |= DRM_MODE_PROP_BITMASK;
3854
3855         property = drm_property_create(dev, flags, name, num_values);
3856         if (!property)
3857                 return NULL;
3858         for (i = 0; i < num_props; i++) {
3859                 if (!(supported_bits & (1ULL << props[i].type)))
3860                         continue;
3861
3862                 if (WARN_ON(index >= num_values)) {
3863                         drm_property_destroy(dev, property);
3864                         return NULL;
3865                 }
3866
3867                 ret = drm_property_add_enum(property, index++,
3868                                       props[i].type,
3869                                       props[i].name);
3870                 if (ret) {
3871                         drm_property_destroy(dev, property);
3872                         return NULL;
3873                 }
3874         }
3875
3876         return property;
3877 }
3878 EXPORT_SYMBOL(drm_property_create_bitmask);
3879
3880 static struct drm_property *property_create_range(struct drm_device *dev,
3881                                          int flags, const char *name,
3882                                          uint64_t min, uint64_t max)
3883 {
3884         struct drm_property *property;
3885
3886         property = drm_property_create(dev, flags, name, 2);
3887         if (!property)
3888                 return NULL;
3889
3890         property->values[0] = min;
3891         property->values[1] = max;
3892
3893         return property;
3894 }
3895
3896 /**
3897  * drm_property_create_range - create a new unsigned ranged property type
3898  * @dev: drm device
3899  * @flags: flags specifying the property type
3900  * @name: name of the property
3901  * @min: minimum value of the property
3902  * @max: maximum value of the property
3903  *
3904  * This creates a new generic drm property which can then be attached to a drm
3905  * object with drm_object_attach_property. The returned property object must be
3906  * freed with drm_property_destroy.
3907  *
3908  * Userspace is allowed to set any unsigned integer value in the (min, max)
3909  * range inclusive.
3910  *
3911  * Returns:
3912  * A pointer to the newly created property on success, NULL on failure.
3913  */
3914 struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3915                                          const char *name,
3916                                          uint64_t min, uint64_t max)
3917 {
3918         return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3919                         name, min, max);
3920 }
3921 EXPORT_SYMBOL(drm_property_create_range);
3922
3923 /**
3924  * drm_property_create_signed_range - create a new signed ranged property type
3925  * @dev: drm device
3926  * @flags: flags specifying the property type
3927  * @name: name of the property
3928  * @min: minimum value of the property
3929  * @max: maximum value of the property
3930  *
3931  * This creates a new generic drm property which can then be attached to a drm
3932  * object with drm_object_attach_property. The returned property object must be
3933  * freed with drm_property_destroy.
3934  *
3935  * Userspace is allowed to set any signed integer value in the (min, max)
3936  * range inclusive.
3937  *
3938  * Returns:
3939  * A pointer to the newly created property on success, NULL on failure.
3940  */
3941 struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3942                                          int flags, const char *name,
3943                                          int64_t min, int64_t max)
3944 {
3945         return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3946                         name, I642U64(min), I642U64(max));
3947 }
3948 EXPORT_SYMBOL(drm_property_create_signed_range);
3949
3950 /**
3951  * drm_property_create_object - create a new object property type
3952  * @dev: drm device
3953  * @flags: flags specifying the property type
3954  * @name: name of the property
3955  * @type: object type from DRM_MODE_OBJECT_* defines
3956  *
3957  * This creates a new generic drm property which can then be attached to a drm
3958  * object with drm_object_attach_property. The returned property object must be
3959  * freed with drm_property_destroy.
3960  *
3961  * Userspace is only allowed to set this to any property value of the given
3962  * @type. Only useful for atomic properties, which is enforced.
3963  *
3964  * Returns:
3965  * A pointer to the newly created property on success, NULL on failure.
3966  */
3967 struct drm_property *drm_property_create_object(struct drm_device *dev,
3968                                          int flags, const char *name, uint32_t type)
3969 {
3970         struct drm_property *property;
3971
3972         flags |= DRM_MODE_PROP_OBJECT;
3973
3974         if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
3975                 return NULL;
3976
3977         property = drm_property_create(dev, flags, name, 1);
3978         if (!property)
3979                 return NULL;
3980
3981         property->values[0] = type;
3982
3983         return property;
3984 }
3985 EXPORT_SYMBOL(drm_property_create_object);
3986
3987 /**
3988  * drm_property_create_bool - create a new boolean property type
3989  * @dev: drm device
3990  * @flags: flags specifying the property type
3991  * @name: name of the property
3992  *
3993  * This creates a new generic drm property which can then be attached to a drm
3994  * object with drm_object_attach_property. The returned property object must be
3995  * freed with drm_property_destroy.
3996  *
3997  * This is implemented as a ranged property with only {0, 1} as valid values.
3998  *
3999  * Returns:
4000  * A pointer to the newly created property on success, NULL on failure.
4001  */
4002 struct drm_property *drm_property_create_bool(struct drm_device *dev, int flags,
4003                                          const char *name)
4004 {
4005         return drm_property_create_range(dev, flags, name, 0, 1);
4006 }
4007 EXPORT_SYMBOL(drm_property_create_bool);
4008
4009 /**
4010  * drm_property_add_enum - add a possible value to an enumeration property
4011  * @property: enumeration property to change
4012  * @index: index of the new enumeration
4013  * @value: value of the new enumeration
4014  * @name: symbolic name of the new enumeration
4015  *
4016  * This functions adds enumerations to a property.
4017  *
4018  * It's use is deprecated, drivers should use one of the more specific helpers
4019  * to directly create the property with all enumerations already attached.
4020  *
4021  * Returns:
4022  * Zero on success, error code on failure.
4023  */
4024 int drm_property_add_enum(struct drm_property *property, int index,
4025                           uint64_t value, const char *name)
4026 {
4027         struct drm_property_enum *prop_enum;
4028
4029         if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4030                         drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
4031                 return -EINVAL;
4032
4033         /*
4034          * Bitmask enum properties have the additional constraint of values
4035          * from 0 to 63
4036          */
4037         if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
4038                         (value > 63))
4039                 return -EINVAL;
4040
4041         if (!list_empty(&property->enum_list)) {
4042                 list_for_each_entry(prop_enum, &property->enum_list, head) {
4043                         if (prop_enum->value == value) {
4044                                 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
4045                                 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
4046                                 return 0;
4047                         }
4048                 }
4049         }
4050
4051         prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
4052         if (!prop_enum)
4053                 return -ENOMEM;
4054
4055         strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
4056         prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
4057         prop_enum->value = value;
4058
4059         property->values[index] = value;
4060         list_add_tail(&prop_enum->head, &property->enum_list);
4061         return 0;
4062 }
4063 EXPORT_SYMBOL(drm_property_add_enum);
4064
4065 /**
4066  * drm_property_destroy - destroy a drm property
4067  * @dev: drm device
4068  * @property: property to destry
4069  *
4070  * This function frees a property including any attached resources like
4071  * enumeration values.
4072  */
4073 void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
4074 {
4075         struct drm_property_enum *prop_enum, *pt;
4076
4077         list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
4078                 list_del(&prop_enum->head);
4079                 kfree(prop_enum);
4080         }
4081
4082         if (property->num_values)
4083                 kfree(property->values);
4084         drm_mode_object_put(dev, &property->base);
4085         list_del(&property->head);
4086         kfree(property);
4087 }
4088 EXPORT_SYMBOL(drm_property_destroy);
4089
4090 /**
4091  * drm_object_attach_property - attach a property to a modeset object
4092  * @obj: drm modeset object
4093  * @property: property to attach
4094  * @init_val: initial value of the property
4095  *
4096  * This attaches the given property to the modeset object with the given initial
4097  * value. Currently this function cannot fail since the properties are stored in
4098  * a statically sized array.
4099  */
4100 void drm_object_attach_property(struct drm_mode_object *obj,
4101                                 struct drm_property *property,
4102                                 uint64_t init_val)
4103 {
4104         int count = obj->properties->count;
4105
4106         if (count == DRM_OBJECT_MAX_PROPERTY) {
4107                 WARN(1, "Failed to attach object property (type: 0x%x). Please "
4108                         "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
4109                         "you see this message on the same object type.\n",
4110                         obj->type);
4111                 return;
4112         }
4113
4114         obj->properties->properties[count] = property;
4115         obj->properties->values[count] = init_val;
4116         obj->properties->count++;
4117         if (property->flags & DRM_MODE_PROP_ATOMIC)
4118                 obj->properties->atomic_count++;
4119 }
4120 EXPORT_SYMBOL(drm_object_attach_property);
4121
4122 /**
4123  * drm_object_property_set_value - set the value of a property
4124  * @obj: drm mode object to set property value for
4125  * @property: property to set
4126  * @val: value the property should be set to
4127  *
4128  * This functions sets a given property on a given object. This function only
4129  * changes the software state of the property, it does not call into the
4130  * driver's ->set_property callback.
4131  *
4132  * Returns:
4133  * Zero on success, error code on failure.
4134  */
4135 int drm_object_property_set_value(struct drm_mode_object *obj,
4136                                   struct drm_property *property, uint64_t val)
4137 {
4138         int i;
4139
4140         for (i = 0; i < obj->properties->count; i++) {
4141                 if (obj->properties->properties[i] == property) {
4142                         obj->properties->values[i] = val;
4143                         return 0;
4144                 }
4145         }
4146
4147         return -EINVAL;
4148 }
4149 EXPORT_SYMBOL(drm_object_property_set_value);
4150
4151 /**
4152  * drm_object_property_get_value - retrieve the value of a property
4153  * @obj: drm mode object to get property value from
4154  * @property: property to retrieve
4155  * @val: storage for the property value
4156  *
4157  * This function retrieves the softare state of the given property for the given
4158  * property. Since there is no driver callback to retrieve the current property
4159  * value this might be out of sync with the hardware, depending upon the driver
4160  * and property.
4161  *
4162  * Returns:
4163  * Zero on success, error code on failure.
4164  */
4165 int drm_object_property_get_value(struct drm_mode_object *obj,
4166                                   struct drm_property *property, uint64_t *val)
4167 {
4168         int i;
4169
4170         /* read-only properties bypass atomic mechanism and still store
4171          * their value in obj->properties->values[].. mostly to avoid
4172          * having to deal w/ EDID and similar props in atomic paths:
4173          */
4174         if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
4175                         !(property->flags & DRM_MODE_PROP_IMMUTABLE))
4176                 return drm_atomic_get_property(obj, property, val);
4177
4178         for (i = 0; i < obj->properties->count; i++) {
4179                 if (obj->properties->properties[i] == property) {
4180                         *val = obj->properties->values[i];
4181                         return 0;
4182                 }
4183         }
4184
4185         return -EINVAL;
4186 }
4187 EXPORT_SYMBOL(drm_object_property_get_value);
4188
4189 /**
4190  * drm_mode_getproperty_ioctl - get the property metadata
4191  * @dev: DRM device
4192  * @data: ioctl data
4193  * @file_priv: DRM file info
4194  *
4195  * This function retrieves the metadata for a given property, like the different
4196  * possible values for an enum property or the limits for a range property.
4197  *
4198  * Blob properties are special
4199  *
4200  * Called by the user via ioctl.
4201  *
4202  * Returns:
4203  * Zero on success, negative errno on failure.
4204  */
4205 int drm_mode_getproperty_ioctl(struct drm_device *dev,
4206                                void *data, struct drm_file *file_priv)
4207 {
4208         struct drm_mode_get_property *out_resp = data;
4209         struct drm_property *property;
4210         int enum_count = 0;
4211         int value_count = 0;
4212         int ret = 0, i;
4213         int copied;
4214         struct drm_property_enum *prop_enum;
4215         struct drm_mode_property_enum __user *enum_ptr;
4216         uint64_t __user *values_ptr;
4217
4218         if (!drm_core_check_feature(dev, DRIVER_MODESET))
4219                 return -EINVAL;
4220
4221         drm_modeset_lock_all(dev);
4222         property = drm_property_find(dev, out_resp->prop_id);
4223         if (!property) {
4224                 ret = -ENOENT;
4225                 goto done;
4226         }
4227
4228         if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4229                         drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
4230                 list_for_each_entry(prop_enum, &property->enum_list, head)
4231                         enum_count++;
4232         }
4233
4234         value_count = property->num_values;
4235
4236         strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4237         out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4238         out_resp->flags = property->flags;
4239
4240         if ((out_resp->count_values >= value_count) && value_count) {
4241                 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
4242                 for (i = 0; i < value_count; i++) {
4243                         if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4244                                 ret = -EFAULT;
4245                                 goto done;
4246                         }
4247                 }
4248         }
4249         out_resp->count_values = value_count;
4250
4251         if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4252                         drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
4253                 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4254                         copied = 0;
4255                         enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
4256                         list_for_each_entry(prop_enum, &property->enum_list, head) {
4257
4258                                 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4259                                         ret = -EFAULT;
4260                                         goto done;
4261                                 }
4262
4263                                 if (copy_to_user(&enum_ptr[copied].name,
4264                                                  &prop_enum->name, DRM_PROP_NAME_LEN)) {
4265                                         ret = -EFAULT;
4266                                         goto done;
4267                                 }
4268                                 copied++;
4269                         }
4270                 }
4271                 out_resp->count_enum_blobs = enum_count;
4272         }
4273
4274         /*
4275          * NOTE: The idea seems to have been to use this to read all the blob
4276          * property values. But nothing ever added them to the corresponding
4277          * list, userspace always used the special-purpose get_blob ioctl to
4278          * read the value for a blob property. It also doesn't make a lot of
4279          * sense to return values here when everything else is just metadata for
4280          * the property itself.
4281          */
4282         if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4283                 out_resp->count_enum_blobs = 0;
4284 done:
4285         drm_modeset_unlock_all(dev);
4286         return ret;
4287 }
4288
4289 /**
4290  * drm_property_create_blob - Create new blob property
4291  *
4292  * Creates a new blob property for a specified DRM device, optionally
4293  * copying data.
4294  *
4295  * @dev: DRM device to create property for
4296  * @length: Length to allocate for blob data
4297  * @data: If specified, copies data into blob
4298  *
4299  * Returns:
4300  * New blob property with a single reference on success, or an ERR_PTR
4301  * value on failure.
4302  */
4303 struct drm_property_blob *
4304 drm_property_create_blob(struct drm_device *dev, size_t length,
4305                          const void *data)
4306 {
4307         struct drm_property_blob *blob;
4308         int ret;
4309
4310         if (!length || length > ULONG_MAX - sizeof(struct drm_property_blob))
4311                 return ERR_PTR(-EINVAL);
4312
4313         blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4314         if (!blob)
4315                 return ERR_PTR(-ENOMEM);
4316
4317         /* This must be explicitly initialised, so we can safely call list_del
4318          * on it in the removal handler, even if it isn't in a file list. */
4319         INIT_LIST_HEAD(&blob->head_file);
4320         blob->length = length;
4321         blob->dev = dev;
4322
4323         if (data)
4324                 memcpy(blob->data, data, length);
4325
4326         mutex_lock(&dev->mode_config.blob_lock);
4327
4328         ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4329         if (ret) {
4330                 kfree(blob);
4331                 mutex_unlock(&dev->mode_config.blob_lock);
4332                 return ERR_PTR(-EINVAL);
4333         }
4334
4335         kref_init(&blob->refcount);
4336
4337         list_add_tail(&blob->head_global,
4338                       &dev->mode_config.property_blob_list);
4339
4340         mutex_unlock(&dev->mode_config.blob_lock);
4341
4342         return blob;
4343 }
4344 EXPORT_SYMBOL(drm_property_create_blob);
4345
4346 /**
4347  * drm_property_free_blob - Blob property destructor
4348  *
4349  * Internal free function for blob properties; must not be used directly.
4350  *
4351  * @kref: Reference
4352  */
4353 static void drm_property_free_blob(struct kref *kref)
4354 {
4355         struct drm_property_blob *blob =
4356                 container_of(kref, struct drm_property_blob, refcount);
4357
4358         WARN_ON(!mutex_is_locked(&blob->dev->mode_config.blob_lock));
4359
4360         list_del(&blob->head_global);
4361         list_del(&blob->head_file);
4362         drm_mode_object_put(blob->dev, &blob->base);
4363
4364         kfree(blob);
4365 }
4366
4367 /**
4368  * drm_property_unreference_blob - Unreference a blob property
4369  *
4370  * Drop a reference on a blob property. May free the object.
4371  *
4372  * @blob: Pointer to blob property
4373  */
4374 void drm_property_unreference_blob(struct drm_property_blob *blob)
4375 {
4376         struct drm_device *dev;
4377
4378         if (!blob)
4379                 return;
4380
4381         dev = blob->dev;
4382
4383         DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4384
4385         if (kref_put_mutex(&blob->refcount, drm_property_free_blob,
4386                            &dev->mode_config.blob_lock))
4387                 mutex_unlock(&dev->mode_config.blob_lock);
4388         else
4389                 might_lock(&dev->mode_config.blob_lock);
4390 }
4391 EXPORT_SYMBOL(drm_property_unreference_blob);
4392
4393 /**
4394  * drm_property_unreference_blob_locked - Unreference a blob property with blob_lock held
4395  *
4396  * Drop a reference on a blob property. May free the object. This must be
4397  * called with blob_lock held.
4398  *
4399  * @blob: Pointer to blob property
4400  */
4401 static void drm_property_unreference_blob_locked(struct drm_property_blob *blob)
4402 {
4403         if (!blob)
4404                 return;
4405
4406         DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4407
4408         kref_put(&blob->refcount, drm_property_free_blob);
4409 }
4410
4411 /**
4412  * drm_property_destroy_user_blobs - destroy all blobs created by this client
4413  * @dev:       DRM device
4414  * @file_priv: destroy all blobs owned by this file handle
4415  */
4416 void drm_property_destroy_user_blobs(struct drm_device *dev,
4417                                      struct drm_file *file_priv)
4418 {
4419         struct drm_property_blob *blob, *bt;
4420
4421         mutex_lock(&dev->mode_config.blob_lock);
4422
4423         list_for_each_entry_safe(blob, bt, &file_priv->blobs, head_file) {
4424                 list_del_init(&blob->head_file);
4425                 drm_property_unreference_blob_locked(blob);
4426         }
4427
4428         mutex_unlock(&dev->mode_config.blob_lock);
4429 }
4430
4431 /**
4432  * drm_property_reference_blob - Take a reference on an existing property
4433  *
4434  * Take a new reference on an existing blob property.
4435  *
4436  * @blob: Pointer to blob property
4437  */
4438 struct drm_property_blob *drm_property_reference_blob(struct drm_property_blob *blob)
4439 {
4440         DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4441         kref_get(&blob->refcount);
4442         return blob;
4443 }
4444 EXPORT_SYMBOL(drm_property_reference_blob);
4445
4446 /*
4447  * Like drm_property_lookup_blob, but does not return an additional reference.
4448  * Must be called with blob_lock held.
4449  */
4450 static struct drm_property_blob *__drm_property_lookup_blob(struct drm_device *dev,
4451                                                             uint32_t id)
4452 {
4453         struct drm_mode_object *obj = NULL;
4454         struct drm_property_blob *blob;
4455
4456         WARN_ON(!mutex_is_locked(&dev->mode_config.blob_lock));
4457
4458         mutex_lock(&dev->mode_config.idr_mutex);
4459         obj = idr_find(&dev->mode_config.crtc_idr, id);
4460         if (!obj || (obj->type != DRM_MODE_OBJECT_BLOB) || (obj->id != id))
4461                 blob = NULL;
4462         else
4463                 blob = obj_to_blob(obj);
4464         mutex_unlock(&dev->mode_config.idr_mutex);
4465
4466         return blob;
4467 }
4468
4469 /**
4470  * drm_property_lookup_blob - look up a blob property and take a reference
4471  * @dev: drm device
4472  * @id: id of the blob property
4473  *
4474  * If successful, this takes an additional reference to the blob property.
4475  * callers need to make sure to eventually unreference the returned property
4476  * again, using @drm_property_unreference_blob.
4477  */
4478 struct drm_property_blob *drm_property_lookup_blob(struct drm_device *dev,
4479                                                    uint32_t id)
4480 {
4481         struct drm_property_blob *blob;
4482
4483         mutex_lock(&dev->mode_config.blob_lock);
4484         blob = __drm_property_lookup_blob(dev, id);
4485         if (blob) {
4486                 if (!kref_get_unless_zero(&blob->refcount))
4487                         blob = NULL;
4488         }
4489         mutex_unlock(&dev->mode_config.blob_lock);
4490
4491         return blob;
4492 }
4493 EXPORT_SYMBOL(drm_property_lookup_blob);
4494
4495 /**
4496  * drm_property_replace_global_blob - atomically replace existing blob property
4497  * @dev: drm device
4498  * @replace: location of blob property pointer to be replaced
4499  * @length: length of data for new blob, or 0 for no data
4500  * @data: content for new blob, or NULL for no data
4501  * @obj_holds_id: optional object for property holding blob ID
4502  * @prop_holds_id: optional property holding blob ID
4503  * @return 0 on success or error on failure
4504  *
4505  * This function will atomically replace a global property in the blob list,
4506  * optionally updating a property which holds the ID of that property. It is
4507  * guaranteed to be atomic: no caller will be allowed to see intermediate
4508  * results, and either the entire operation will succeed and clean up the
4509  * previous property, or it will fail and the state will be unchanged.
4510  *
4511  * If length is 0 or data is NULL, no new blob will be created, and the holding
4512  * property, if specified, will be set to 0.
4513  *
4514  * Access to the replace pointer is assumed to be protected by the caller, e.g.
4515  * by holding the relevant modesetting object lock for its parent.
4516  *
4517  * For example, a drm_connector has a 'PATH' property, which contains the ID
4518  * of a blob property with the value of the MST path information. Calling this
4519  * function with replace pointing to the connector's path_blob_ptr, length and
4520  * data set for the new path information, obj_holds_id set to the connector's
4521  * base object, and prop_holds_id set to the path property name, will perform
4522  * a completely atomic update. The access to path_blob_ptr is protected by the
4523  * caller holding a lock on the connector.
4524  */
4525 static int drm_property_replace_global_blob(struct drm_device *dev,
4526                                             struct drm_property_blob **replace,
4527                                             size_t length,
4528                                             const void *data,
4529                                             struct drm_mode_object *obj_holds_id,
4530                                             struct drm_property *prop_holds_id)
4531 {
4532         struct drm_property_blob *new_blob = NULL;
4533         struct drm_property_blob *old_blob = NULL;
4534         int ret;
4535
4536         WARN_ON(replace == NULL);
4537
4538         old_blob = *replace;
4539
4540         if (length && data) {
4541                 new_blob = drm_property_create_blob(dev, length, data);
4542                 if (IS_ERR(new_blob))
4543                         return PTR_ERR(new_blob);
4544         }
4545
4546         /* This does not need to be synchronised with blob_lock, as the
4547          * get_properties ioctl locks all modesetting objects, and
4548          * obj_holds_id must be locked before calling here, so we cannot
4549          * have its value out of sync with the list membership modified
4550          * below under blob_lock. */
4551         if (obj_holds_id) {
4552                 ret = drm_object_property_set_value(obj_holds_id,
4553                                                     prop_holds_id,
4554                                                     new_blob ?
4555                                                         new_blob->base.id : 0);
4556                 if (ret != 0)
4557                         goto err_created;
4558         }
4559
4560         drm_property_unreference_blob(old_blob);
4561         *replace = new_blob;
4562
4563         return 0;
4564
4565 err_created:
4566         drm_property_unreference_blob(new_blob);
4567         return ret;
4568 }
4569
4570 /**
4571  * drm_mode_getblob_ioctl - get the contents of a blob property value
4572  * @dev: DRM device
4573  * @data: ioctl data
4574  * @file_priv: DRM file info
4575  *
4576  * This function retrieves the contents of a blob property. The value stored in
4577  * an object's blob property is just a normal modeset object id.
4578  *
4579  * Called by the user via ioctl.
4580  *
4581  * Returns:
4582  * Zero on success, negative errno on failure.
4583  */
4584 int drm_mode_getblob_ioctl(struct drm_device *dev,
4585                            void *data, struct drm_file *file_priv)
4586 {
4587         struct drm_mode_get_blob *out_resp = data;
4588         struct drm_property_blob *blob;
4589         int ret = 0;
4590         void __user *blob_ptr;
4591
4592         if (!drm_core_check_feature(dev, DRIVER_MODESET))
4593                 return -EINVAL;
4594
4595         drm_modeset_lock_all(dev);
4596         mutex_lock(&dev->mode_config.blob_lock);
4597         blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
4598         if (!blob) {
4599                 ret = -ENOENT;
4600                 goto done;
4601         }
4602
4603         if (out_resp->length == blob->length) {
4604                 blob_ptr = (void __user *)(unsigned long)out_resp->data;
4605                 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
4606                         ret = -EFAULT;
4607                         goto done;
4608                 }
4609         }
4610         out_resp->length = blob->length;
4611
4612 done:
4613         mutex_unlock(&dev->mode_config.blob_lock);
4614         drm_modeset_unlock_all(dev);
4615         return ret;
4616 }
4617
4618 /**
4619  * drm_mode_createblob_ioctl - create a new blob property
4620  * @dev: DRM device
4621  * @data: ioctl data
4622  * @file_priv: DRM file info
4623  *
4624  * This function creates a new blob property with user-defined values. In order
4625  * to give us sensible validation and checking when creating, rather than at
4626  * every potential use, we also require a type to be provided upfront.
4627  *
4628  * Called by the user via ioctl.
4629  *
4630  * Returns:
4631  * Zero on success, negative errno on failure.
4632  */
4633 int drm_mode_createblob_ioctl(struct drm_device *dev,
4634                               void *data, struct drm_file *file_priv)
4635 {
4636         struct drm_mode_create_blob *out_resp = data;
4637         struct drm_property_blob *blob;
4638         void __user *blob_ptr;
4639         int ret = 0;
4640
4641         if (!drm_core_check_feature(dev, DRIVER_MODESET))
4642                 return -EINVAL;
4643
4644         blob = drm_property_create_blob(dev, out_resp->length, NULL);
4645         if (IS_ERR(blob))
4646                 return PTR_ERR(blob);
4647
4648         blob_ptr = (void __user *)(unsigned long)out_resp->data;
4649         if (copy_from_user(blob->data, blob_ptr, out_resp->length)) {
4650                 ret = -EFAULT;
4651                 goto out_blob;
4652         }
4653
4654         /* Dropping the lock between create_blob and our access here is safe
4655          * as only the same file_priv can remove the blob; at this point, it is
4656          * not associated with any file_priv. */
4657         mutex_lock(&dev->mode_config.blob_lock);
4658         out_resp->blob_id = blob->base.id;
4659         list_add_tail(&blob->head_file, &file_priv->blobs);
4660         mutex_unlock(&dev->mode_config.blob_lock);
4661
4662         return 0;
4663
4664 out_blob:
4665         drm_property_unreference_blob(blob);
4666         return ret;
4667 }
4668
4669 /**
4670  * drm_mode_destroyblob_ioctl - destroy a user blob property
4671  * @dev: DRM device
4672  * @data: ioctl data
4673  * @file_priv: DRM file info
4674  *
4675  * Destroy an existing user-defined blob property.
4676  *
4677  * Called by the user via ioctl.
4678  *
4679  * Returns:
4680  * Zero on success, negative errno on failure.
4681  */
4682 int drm_mode_destroyblob_ioctl(struct drm_device *dev,
4683                                void *data, struct drm_file *file_priv)
4684 {
4685         struct drm_mode_destroy_blob *out_resp = data;
4686         struct drm_property_blob *blob = NULL, *bt;
4687         bool found = false;
4688         int ret = 0;
4689
4690         if (!drm_core_check_feature(dev, DRIVER_MODESET))
4691                 return -EINVAL;
4692
4693         mutex_lock(&dev->mode_config.blob_lock);
4694         blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
4695         if (!blob) {
4696                 ret = -ENOENT;
4697                 goto err;
4698         }
4699
4700         /* Ensure the property was actually created by this user. */
4701         list_for_each_entry(bt, &file_priv->blobs, head_file) {
4702                 if (bt == blob) {
4703                         found = true;
4704                         break;
4705                 }
4706         }
4707
4708         if (!found) {
4709                 ret = -EPERM;
4710                 goto err;
4711         }
4712
4713         /* We must drop head_file here, because we may not be the last
4714          * reference on the blob. */
4715         list_del_init(&blob->head_file);
4716         drm_property_unreference_blob_locked(blob);
4717         mutex_unlock(&dev->mode_config.blob_lock);
4718
4719         return 0;
4720
4721 err:
4722         mutex_unlock(&dev->mode_config.blob_lock);
4723         return ret;
4724 }
4725
4726 /**
4727  * drm_mode_connector_set_path_property - set tile property on connector
4728  * @connector: connector to set property on.
4729  * @path: path to use for property; must not be NULL.
4730  *
4731  * This creates a property to expose to userspace to specify a
4732  * connector path. This is mainly used for DisplayPort MST where
4733  * connectors have a topology and we want to allow userspace to give
4734  * them more meaningful names.
4735  *
4736  * Returns:
4737  * Zero on success, negative errno on failure.
4738  */
4739 int drm_mode_connector_set_path_property(struct drm_connector *connector,
4740                                          const char *path)
4741 {
4742         struct drm_device *dev = connector->dev;
4743         int ret;
4744
4745         ret = drm_property_replace_global_blob(dev,
4746                                                &connector->path_blob_ptr,
4747                                                strlen(path) + 1,
4748                                                path,
4749                                                &connector->base,
4750                                                dev->mode_config.path_property);
4751         return ret;
4752 }
4753 EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4754
4755 /**
4756  * drm_mode_connector_set_tile_property - set tile property on connector
4757  * @connector: connector to set property on.
4758  *
4759  * This looks up the tile information for a connector, and creates a
4760  * property for userspace to parse if it exists. The property is of
4761  * the form of 8 integers using ':' as a separator.
4762  *
4763  * Returns:
4764  * Zero on success, errno on failure.
4765  */
4766 int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4767 {
4768         struct drm_device *dev = connector->dev;
4769         char tile[256];
4770         int ret;
4771
4772         if (!connector->has_tile) {
4773                 ret  = drm_property_replace_global_blob(dev,
4774                                                         &connector->tile_blob_ptr,
4775                                                         0,
4776                                                         NULL,
4777                                                         &connector->base,
4778                                                         dev->mode_config.tile_property);
4779                 return ret;
4780         }
4781
4782         snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4783                  connector->tile_group->id, connector->tile_is_single_monitor,
4784                  connector->num_h_tile, connector->num_v_tile,
4785                  connector->tile_h_loc, connector->tile_v_loc,
4786                  connector->tile_h_size, connector->tile_v_size);
4787
4788         ret = drm_property_replace_global_blob(dev,
4789                                                &connector->tile_blob_ptr,
4790                                                strlen(tile) + 1,
4791                                                tile,
4792                                                &connector->base,
4793                                                dev->mode_config.tile_property);
4794         return ret;
4795 }
4796 EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4797
4798 /**
4799  * drm_mode_connector_update_edid_property - update the edid property of a connector
4800  * @connector: drm connector
4801  * @edid: new value of the edid property
4802  *
4803  * This function creates a new blob modeset object and assigns its id to the
4804  * connector's edid property.
4805  *
4806  * Returns:
4807  * Zero on success, negative errno on failure.
4808  */
4809 int drm_mode_connector_update_edid_property(struct drm_connector *connector,
4810                                             const struct edid *edid)
4811 {
4812         struct drm_device *dev = connector->dev;
4813         size_t size = 0;
4814         int ret;
4815
4816         /* ignore requests to set edid when overridden */
4817         if (connector->override_edid)
4818                 return 0;
4819
4820         if (edid)
4821                 size = EDID_LENGTH * (1 + edid->extensions);
4822
4823         ret = drm_property_replace_global_blob(dev,
4824                                                &connector->edid_blob_ptr,
4825                                                size,
4826                                                edid,
4827                                                &connector->base,
4828                                                dev->mode_config.edid_property);
4829         return ret;
4830 }
4831 EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4832
4833 /* Some properties could refer to dynamic refcnt'd objects, or things that
4834  * need special locking to handle lifetime issues (ie. to ensure the prop
4835  * value doesn't become invalid part way through the property update due to
4836  * race).  The value returned by reference via 'obj' should be passed back
4837  * to drm_property_change_valid_put() after the property is set (and the
4838  * object to which the property is attached has a chance to take it's own
4839  * reference).
4840  */
4841 bool drm_property_change_valid_get(struct drm_property *property,
4842                                          uint64_t value, struct drm_mode_object **ref)
4843 {
4844         int i;
4845
4846         if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4847                 return false;
4848
4849         *ref = NULL;
4850
4851         if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
4852                 if (value < property->values[0] || value > property->values[1])
4853                         return false;
4854                 return true;
4855         } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4856                 int64_t svalue = U642I64(value);
4857
4858                 if (svalue < U642I64(property->values[0]) ||
4859                                 svalue > U642I64(property->values[1]))
4860                         return false;
4861                 return true;
4862         } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
4863                 uint64_t valid_mask = 0;
4864
4865                 for (i = 0; i < property->num_values; i++)
4866                         valid_mask |= (1ULL << property->values[i]);
4867                 return !(value & ~valid_mask);
4868         } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
4869                 struct drm_property_blob *blob;
4870
4871                 if (value == 0)
4872                         return true;
4873
4874                 blob = drm_property_lookup_blob(property->dev, value);
4875                 if (blob) {
4876                         *ref = &blob->base;
4877                         return true;
4878                 } else {
4879                         return false;
4880                 }
4881         } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4882                 /* a zero value for an object property translates to null: */
4883                 if (value == 0)
4884                         return true;
4885
4886                 /* handle refcnt'd objects specially: */
4887                 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4888                         struct drm_framebuffer *fb;
4889                         fb = drm_framebuffer_lookup(property->dev, value);
4890                         if (fb) {
4891                                 *ref = &fb->base;
4892                                 return true;
4893                         } else {
4894                                 return false;
4895                         }
4896                 } else {
4897                         return _object_find(property->dev, value, property->values[0]) != NULL;
4898                 }
4899         }
4900
4901         for (i = 0; i < property->num_values; i++)
4902                 if (property->values[i] == value)
4903                         return true;
4904         return false;
4905 }
4906
4907 void drm_property_change_valid_put(struct drm_property *property,
4908                 struct drm_mode_object *ref)
4909 {
4910         if (!ref)
4911                 return;
4912
4913         if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4914                 if (property->values[0] == DRM_MODE_OBJECT_FB)
4915                         drm_framebuffer_unreference(obj_to_fb(ref));
4916         } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4917                 drm_property_unreference_blob(obj_to_blob(ref));
4918 }
4919
4920 /**
4921  * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4922  * @dev: DRM device
4923  * @data: ioctl data
4924  * @file_priv: DRM file info
4925  *
4926  * This function sets the current value for a connectors's property. It also
4927  * calls into a driver's ->set_property callback to update the hardware state
4928  *
4929  * Called by the user via ioctl.
4930  *
4931  * Returns:
4932  * Zero on success, negative errno on failure.
4933  */
4934 int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4935                                        void *data, struct drm_file *file_priv)
4936 {
4937         struct drm_mode_connector_set_property *conn_set_prop = data;
4938         struct drm_mode_obj_set_property obj_set_prop = {
4939                 .value = conn_set_prop->value,
4940                 .prop_id = conn_set_prop->prop_id,
4941                 .obj_id = conn_set_prop->connector_id,
4942                 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4943         };
4944
4945         /* It does all the locking and checking we need */
4946         return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
4947 }
4948
4949 static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4950                                            struct drm_property *property,
4951                                            uint64_t value)
4952 {
4953         int ret = -EINVAL;
4954         struct drm_connector *connector = obj_to_connector(obj);
4955
4956         /* Do DPMS ourselves */
4957         if (property == connector->dev->mode_config.dpms_property) {
4958                 ret = 0;
4959                 if (connector->funcs->dpms)
4960                         ret = (*connector->funcs->dpms)(connector, (int)value);
4961         } else if (connector->funcs->set_property)
4962                 ret = connector->funcs->set_property(connector, property, value);
4963
4964         /* store the property value if successful */
4965         if (!ret)
4966                 drm_object_property_set_value(&connector->base, property, value);
4967         return ret;
4968 }
4969
4970 static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4971                                       struct drm_property *property,
4972                                       uint64_t value)
4973 {
4974         int ret = -EINVAL;
4975         struct drm_crtc *crtc = obj_to_crtc(obj);
4976
4977         if (crtc->funcs->set_property)
4978                 ret = crtc->funcs->set_property(crtc, property, value);
4979         if (!ret)
4980                 drm_object_property_set_value(obj, property, value);
4981
4982         return ret;
4983 }
4984
4985 /**
4986  * drm_mode_plane_set_obj_prop - set the value of a property
4987  * @plane: drm plane object to set property value for
4988  * @property: property to set
4989  * @value: value the property should be set to
4990  *
4991  * This functions sets a given property on a given plane object. This function
4992  * calls the driver's ->set_property callback and changes the software state of
4993  * the property if the callback succeeds.
4994  *
4995  * Returns:
4996  * Zero on success, error code on failure.
4997  */
4998 int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4999                                 struct drm_property *property,
5000                                 uint64_t value)
5001 {
5002         int ret = -EINVAL;
5003         struct drm_mode_object *obj = &plane->base;
5004
5005         if (plane->funcs->set_property)
5006                 ret = plane->funcs->set_property(plane, property, value);
5007         if (!ret)
5008                 drm_object_property_set_value(obj, property, value);
5009
5010         return ret;
5011 }
5012 EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
5013
5014 /**
5015  * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
5016  * @dev: DRM device
5017  * @data: ioctl data
5018  * @file_priv: DRM file info
5019  *
5020  * This function retrieves the current value for an object's property. Compared
5021  * to the connector specific ioctl this one is extended to also work on crtc and
5022  * plane objects.
5023  *
5024  * Called by the user via ioctl.
5025  *
5026  * Returns:
5027  * Zero on success, negative errno on failure.
5028  */
5029 int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
5030                                       struct drm_file *file_priv)
5031 {
5032         struct drm_mode_obj_get_properties *arg = data;
5033         struct drm_mode_object *obj;
5034         int ret = 0;
5035
5036         if (!drm_core_check_feature(dev, DRIVER_MODESET))
5037                 return -EINVAL;
5038
5039         drm_modeset_lock_all(dev);
5040
5041         obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
5042         if (!obj) {
5043                 ret = -ENOENT;
5044                 goto out;
5045         }
5046         if (!obj->properties) {
5047                 ret = -EINVAL;
5048                 goto out;
5049         }
5050
5051         ret = get_properties(obj, file_priv->atomic,
5052                         (uint32_t __user *)(unsigned long)(arg->props_ptr),
5053                         (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
5054                         &arg->count_props);
5055
5056 out:
5057         drm_modeset_unlock_all(dev);
5058         return ret;
5059 }
5060
5061 /**
5062  * drm_mode_obj_set_property_ioctl - set the current value of an object's property
5063  * @dev: DRM device
5064  * @data: ioctl data
5065  * @file_priv: DRM file info
5066  *
5067  * This function sets the current value for an object's property. It also calls
5068  * into a driver's ->set_property callback to update the hardware state.
5069  * Compared to the connector specific ioctl this one is extended to also work on
5070  * crtc and plane objects.
5071  *
5072  * Called by the user via ioctl.
5073  *
5074  * Returns:
5075  * Zero on success, negative errno on failure.
5076  */
5077 int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
5078                                     struct drm_file *file_priv)
5079 {
5080         struct drm_mode_obj_set_property *arg = data;
5081         struct drm_mode_object *arg_obj;
5082         struct drm_mode_object *prop_obj;
5083         struct drm_property *property;
5084         int i, ret = -EINVAL;
5085         struct drm_mode_object *ref;
5086
5087         if (!drm_core_check_feature(dev, DRIVER_MODESET))
5088                 return -EINVAL;
5089
5090         drm_modeset_lock_all(dev);
5091
5092         arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
5093         if (!arg_obj) {
5094                 ret = -ENOENT;
5095                 goto out;
5096         }
5097         if (!arg_obj->properties)
5098                 goto out;
5099
5100         for (i = 0; i < arg_obj->properties->count; i++)
5101                 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
5102                         break;
5103
5104         if (i == arg_obj->properties->count)
5105                 goto out;
5106
5107         prop_obj = drm_mode_object_find(dev, arg->prop_id,
5108                                         DRM_MODE_OBJECT_PROPERTY);
5109         if (!prop_obj) {
5110                 ret = -ENOENT;
5111                 goto out;
5112         }
5113         property = obj_to_property(prop_obj);
5114
5115         if (!drm_property_change_valid_get(property, arg->value, &ref))
5116                 goto out;
5117
5118         switch (arg_obj->type) {
5119         case DRM_MODE_OBJECT_CONNECTOR:
5120                 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
5121                                                       arg->value);
5122                 break;
5123         case DRM_MODE_OBJECT_CRTC:
5124                 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
5125                 break;
5126         case DRM_MODE_OBJECT_PLANE:
5127                 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
5128                                                   property, arg->value);
5129                 break;
5130         }
5131
5132         drm_property_change_valid_put(property, ref);
5133
5134 out:
5135         drm_modeset_unlock_all(dev);
5136         return ret;
5137 }
5138
5139 /**
5140  * drm_mode_connector_attach_encoder - attach a connector to an encoder
5141  * @connector: connector to attach
5142  * @encoder: encoder to attach @connector to
5143  *
5144  * This function links up a connector to an encoder. Note that the routing
5145  * restrictions between encoders and crtcs are exposed to userspace through the
5146  * possible_clones and possible_crtcs bitmasks.
5147  *
5148  * Returns:
5149  * Zero on success, negative errno on failure.
5150  */
5151 int drm_mode_connector_attach_encoder(struct drm_connector *connector,
5152                                       struct drm_encoder *encoder)
5153 {
5154         int i;
5155
5156         /*
5157          * In the past, drivers have attempted to model the static association
5158          * of connector to encoder in simple connector/encoder devices using a
5159          * direct assignment of connector->encoder = encoder. This connection
5160          * is a logical one and the responsibility of the core, so drivers are
5161          * expected not to mess with this.
5162          *
5163          * Note that the error return should've been enough here, but a large
5164          * majority of drivers ignores the return value, so add in a big WARN
5165          * to get people's attention.
5166          */
5167         if (WARN_ON(connector->encoder))
5168                 return -EINVAL;
5169
5170         for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
5171                 if (connector->encoder_ids[i] == 0) {
5172                         connector->encoder_ids[i] = encoder->base.id;
5173                         return 0;
5174                 }
5175         }
5176         return -ENOMEM;
5177 }
5178 EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
5179
5180 /**
5181  * drm_mode_crtc_set_gamma_size - set the gamma table size
5182  * @crtc: CRTC to set the gamma table size for
5183  * @gamma_size: size of the gamma table
5184  *
5185  * Drivers which support gamma tables should set this to the supported gamma
5186  * table size when initializing the CRTC. Currently the drm core only supports a
5187  * fixed gamma table size.
5188  *
5189  * Returns:
5190  * Zero on success, negative errno on failure.
5191  */
5192 int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
5193                                  int gamma_size)
5194 {
5195         crtc->gamma_size = gamma_size;
5196
5197         crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
5198                                     GFP_KERNEL);
5199         if (!crtc->gamma_store) {
5200                 crtc->gamma_size = 0;
5201                 return -ENOMEM;
5202         }
5203
5204         return 0;
5205 }
5206 EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
5207
5208 /**
5209  * drm_mode_gamma_set_ioctl - set the gamma table
5210  * @dev: DRM device
5211  * @data: ioctl data
5212  * @file_priv: DRM file info
5213  *
5214  * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
5215  * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
5216  *
5217  * Called by the user via ioctl.
5218  *
5219  * Returns:
5220  * Zero on success, negative errno on failure.
5221  */
5222 int drm_mode_gamma_set_ioctl(struct drm_device *dev,
5223                              void *data, struct drm_file *file_priv)
5224 {
5225         struct drm_mode_crtc_lut *crtc_lut = data;
5226         struct drm_crtc *crtc;
5227         void *r_base, *g_base, *b_base;
5228         int size;
5229         int ret = 0;
5230
5231         if (!drm_core_check_feature(dev, DRIVER_MODESET))
5232                 return -EINVAL;
5233
5234         drm_modeset_lock_all(dev);
5235         crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5236         if (!crtc) {
5237                 ret = -ENOENT;
5238                 goto out;
5239         }
5240
5241         if (crtc->funcs->gamma_set == NULL) {
5242                 ret = -ENOSYS;
5243                 goto out;
5244         }
5245
5246         /* memcpy into gamma store */
5247         if (crtc_lut->gamma_size != crtc->gamma_size) {
5248                 ret = -EINVAL;
5249                 goto out;
5250         }
5251
5252         size = crtc_lut->gamma_size * (sizeof(uint16_t));
5253         r_base = crtc->gamma_store;
5254         if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
5255                 ret = -EFAULT;
5256                 goto out;
5257         }
5258
5259         g_base = r_base + size;
5260         if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
5261                 ret = -EFAULT;
5262                 goto out;
5263         }
5264
5265         b_base = g_base + size;
5266         if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
5267                 ret = -EFAULT;
5268                 goto out;
5269         }
5270
5271         crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
5272
5273 out:
5274         drm_modeset_unlock_all(dev);
5275         return ret;
5276
5277 }
5278
5279 /**
5280  * drm_mode_gamma_get_ioctl - get the gamma table
5281  * @dev: DRM device
5282  * @data: ioctl data
5283  * @file_priv: DRM file info
5284  *
5285  * Copy the current gamma table into the storage provided. This also provides
5286  * the gamma table size the driver expects, which can be used to size the
5287  * allocated storage.
5288  *
5289  * Called by the user via ioctl.
5290  *
5291  * Returns:
5292  * Zero on success, negative errno on failure.
5293  */
5294 int drm_mode_gamma_get_ioctl(struct drm_device *dev,
5295                              void *data, struct drm_file *file_priv)
5296 {
5297         struct drm_mode_crtc_lut *crtc_lut = data;
5298         struct drm_crtc *crtc;
5299         void *r_base, *g_base, *b_base;
5300         int size;
5301         int ret = 0;
5302
5303         if (!drm_core_check_feature(dev, DRIVER_MODESET))
5304                 return -EINVAL;
5305
5306         drm_modeset_lock_all(dev);
5307         crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5308         if (!crtc) {
5309                 ret = -ENOENT;
5310                 goto out;
5311         }
5312
5313         /* memcpy into gamma store */
5314         if (crtc_lut->gamma_size != crtc->gamma_size) {
5315                 ret = -EINVAL;
5316                 goto out;
5317         }
5318
5319         size = crtc_lut->gamma_size * (sizeof(uint16_t));
5320         r_base = crtc->gamma_store;
5321         if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
5322                 ret = -EFAULT;
5323                 goto out;
5324         }
5325
5326         g_base = r_base + size;
5327         if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
5328                 ret = -EFAULT;
5329                 goto out;
5330         }
5331
5332         b_base = g_base + size;
5333         if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
5334                 ret = -EFAULT;
5335                 goto out;
5336         }
5337 out:
5338         drm_modeset_unlock_all(dev);
5339         return ret;
5340 }
5341
5342 /**
5343  * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
5344  * @dev: DRM device
5345  * @data: ioctl data
5346  * @file_priv: DRM file info
5347  *
5348  * This schedules an asynchronous update on a given CRTC, called page flip.
5349  * Optionally a drm event is generated to signal the completion of the event.
5350  * Generic drivers cannot assume that a pageflip with changed framebuffer
5351  * properties (including driver specific metadata like tiling layout) will work,
5352  * but some drivers support e.g. pixel format changes through the pageflip
5353  * ioctl.
5354  *
5355  * Called by the user via ioctl.
5356  *
5357  * Returns:
5358  * Zero on success, negative errno on failure.
5359  */
5360 int drm_mode_page_flip_ioctl(struct drm_device *dev,
5361                              void *data, struct drm_file *file_priv)
5362 {
5363         struct drm_mode_crtc_page_flip *page_flip = data;
5364         struct drm_crtc *crtc;
5365         struct drm_framebuffer *fb = NULL;
5366         struct drm_pending_vblank_event *e = NULL;
5367         unsigned long flags;
5368         int ret = -EINVAL;
5369
5370         if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
5371             page_flip->reserved != 0)
5372                 return -EINVAL;
5373
5374         if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
5375                 return -EINVAL;
5376
5377         crtc = drm_crtc_find(dev, page_flip->crtc_id);
5378         if (!crtc)
5379                 return -ENOENT;
5380
5381         drm_modeset_lock_crtc(crtc, crtc->primary);
5382         if (crtc->primary->fb == NULL) {
5383                 /* The framebuffer is currently unbound, presumably
5384                  * due to a hotplug event, that userspace has not
5385                  * yet discovered.
5386                  */
5387                 ret = -EBUSY;
5388                 goto out;
5389         }
5390
5391         if (crtc->funcs->page_flip == NULL)
5392                 goto out;
5393
5394         fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
5395         if (!fb) {
5396                 ret = -ENOENT;
5397                 goto out;
5398         }
5399
5400         if (crtc->state) {
5401                 const struct drm_plane_state *state = crtc->primary->state;
5402
5403                 ret = check_src_coords(state->src_x, state->src_y,
5404                                        state->src_w, state->src_h, fb);
5405         } else {
5406                 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
5407         }
5408         if (ret)
5409                 goto out;
5410
5411         if (crtc->primary->fb->pixel_format != fb->pixel_format) {
5412                 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
5413                 ret = -EINVAL;
5414                 goto out;
5415         }
5416
5417         if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5418                 ret = -ENOMEM;
5419                 spin_lock_irqsave(&dev->event_lock, flags);
5420                 if (file_priv->event_space < sizeof(e->event)) {
5421                         spin_unlock_irqrestore(&dev->event_lock, flags);
5422                         goto out;
5423                 }
5424                 file_priv->event_space -= sizeof(e->event);
5425                 spin_unlock_irqrestore(&dev->event_lock, flags);
5426
5427                 e = kzalloc(sizeof(*e), GFP_KERNEL);
5428                 if (e == NULL) {
5429                         spin_lock_irqsave(&dev->event_lock, flags);
5430                         file_priv->event_space += sizeof(e->event);
5431                         spin_unlock_irqrestore(&dev->event_lock, flags);
5432                         goto out;
5433                 }
5434
5435                 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
5436                 e->event.base.length = sizeof(e->event);
5437                 e->event.user_data = page_flip->user_data;
5438                 e->base.event = &e->event.base;
5439                 e->base.file_priv = file_priv;
5440                 e->base.destroy =
5441                         (void (*) (struct drm_pending_event *)) kfree;
5442         }
5443
5444         crtc->primary->old_fb = crtc->primary->fb;
5445         ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
5446         if (ret) {
5447                 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5448                         spin_lock_irqsave(&dev->event_lock, flags);
5449                         file_priv->event_space += sizeof(e->event);
5450                         spin_unlock_irqrestore(&dev->event_lock, flags);
5451                         kfree(e);
5452                 }
5453                 /* Keep the old fb, don't unref it. */
5454                 crtc->primary->old_fb = NULL;
5455         } else {
5456                 crtc->primary->fb = fb;
5457                 /* Unref only the old framebuffer. */
5458                 fb = NULL;
5459         }
5460
5461 out:
5462         if (fb)
5463                 drm_framebuffer_unreference(fb);
5464         if (crtc->primary->old_fb)
5465                 drm_framebuffer_unreference(crtc->primary->old_fb);
5466         crtc->primary->old_fb = NULL;
5467         drm_modeset_unlock_crtc(crtc);
5468
5469         return ret;
5470 }
5471
5472 /**
5473  * drm_mode_config_reset - call ->reset callbacks
5474  * @dev: drm device
5475  *
5476  * This functions calls all the crtc's, encoder's and connector's ->reset
5477  * callback. Drivers can use this in e.g. their driver load or resume code to
5478  * reset hardware and software state.
5479  */
5480 void drm_mode_config_reset(struct drm_device *dev)
5481 {
5482         struct drm_crtc *crtc;
5483         struct drm_plane *plane;
5484         struct drm_encoder *encoder;
5485         struct drm_connector *connector;
5486
5487         drm_for_each_plane(plane, dev)
5488                 if (plane->funcs->reset)
5489                         plane->funcs->reset(plane);
5490
5491         drm_for_each_crtc(crtc, dev)
5492                 if (crtc->funcs->reset)
5493                         crtc->funcs->reset(crtc);
5494
5495         drm_for_each_encoder(encoder, dev)
5496                 if (encoder->funcs->reset)
5497                         encoder->funcs->reset(encoder);
5498
5499         mutex_lock(&dev->mode_config.mutex);
5500         drm_for_each_connector(connector, dev)
5501                 if (connector->funcs->reset)
5502                         connector->funcs->reset(connector);
5503         mutex_unlock(&dev->mode_config.mutex);
5504 }
5505 EXPORT_SYMBOL(drm_mode_config_reset);
5506
5507 /**
5508  * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
5509  * @dev: DRM device
5510  * @data: ioctl data
5511  * @file_priv: DRM file info
5512  *
5513  * This creates a new dumb buffer in the driver's backing storage manager (GEM,
5514  * TTM or something else entirely) and returns the resulting buffer handle. This
5515  * handle can then be wrapped up into a framebuffer modeset object.
5516  *
5517  * Note that userspace is not allowed to use such objects for render
5518  * acceleration - drivers must create their own private ioctls for such a use
5519  * case.
5520  *
5521  * Called by the user via ioctl.
5522  *
5523  * Returns:
5524  * Zero on success, negative errno on failure.
5525  */
5526 int drm_mode_create_dumb_ioctl(struct drm_device *dev,
5527                                void *data, struct drm_file *file_priv)
5528 {
5529         struct drm_mode_create_dumb *args = data;
5530         u32 cpp, stride, size;
5531
5532         if (!dev->driver->dumb_create)
5533                 return -ENOSYS;
5534         if (!args->width || !args->height || !args->bpp)
5535                 return -EINVAL;
5536
5537         /* overflow checks for 32bit size calculations */
5538         /* NOTE: DIV_ROUND_UP() can overflow */
5539         cpp = DIV_ROUND_UP(args->bpp, 8);
5540         if (!cpp || cpp > 0xffffffffU / args->width)
5541                 return -EINVAL;
5542         stride = cpp * args->width;
5543         if (args->height > 0xffffffffU / stride)
5544                 return -EINVAL;
5545
5546         /* test for wrap-around */
5547         size = args->height * stride;
5548         if (PAGE_ALIGN(size) == 0)
5549                 return -EINVAL;
5550
5551         /*
5552          * handle, pitch and size are output parameters. Zero them out to
5553          * prevent drivers from accidentally using uninitialized data. Since
5554          * not all existing userspace is clearing these fields properly we
5555          * cannot reject IOCTL with garbage in them.
5556          */
5557         args->handle = 0;
5558         args->pitch = 0;
5559         args->size = 0;
5560
5561         return dev->driver->dumb_create(file_priv, dev, args);
5562 }
5563
5564 /**
5565  * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5566  * @dev: DRM device
5567  * @data: ioctl data
5568  * @file_priv: DRM file info
5569  *
5570  * Allocate an offset in the drm device node's address space to be able to
5571  * memory map a dumb buffer.
5572  *
5573  * Called by the user via ioctl.
5574  *
5575  * Returns:
5576  * Zero on success, negative errno on failure.
5577  */
5578 int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5579                              void *data, struct drm_file *file_priv)
5580 {
5581         struct drm_mode_map_dumb *args = data;
5582
5583         /* call driver ioctl to get mmap offset */
5584         if (!dev->driver->dumb_map_offset)
5585                 return -ENOSYS;
5586
5587         return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5588 }
5589
5590 /**
5591  * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5592  * @dev: DRM device
5593  * @data: ioctl data
5594  * @file_priv: DRM file info
5595  *
5596  * This destroys the userspace handle for the given dumb backing storage buffer.
5597  * Since buffer objects must be reference counted in the kernel a buffer object
5598  * won't be immediately freed if a framebuffer modeset object still uses it.
5599  *
5600  * Called by the user via ioctl.
5601  *
5602  * Returns:
5603  * Zero on success, negative errno on failure.
5604  */
5605 int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5606                                 void *data, struct drm_file *file_priv)
5607 {
5608         struct drm_mode_destroy_dumb *args = data;
5609
5610         if (!dev->driver->dumb_destroy)
5611                 return -ENOSYS;
5612
5613         return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5614 }
5615
5616 /**
5617  * drm_fb_get_bpp_depth - get the bpp/depth values for format
5618  * @format: pixel format (DRM_FORMAT_*)
5619  * @depth: storage for the depth value
5620  * @bpp: storage for the bpp value
5621  *
5622  * This only supports RGB formats here for compat with code that doesn't use
5623  * pixel formats directly yet.
5624  */
5625 void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5626                           int *bpp)
5627 {
5628         switch (format) {
5629         case DRM_FORMAT_C8:
5630         case DRM_FORMAT_RGB332:
5631         case DRM_FORMAT_BGR233:
5632                 *depth = 8;
5633                 *bpp = 8;
5634                 break;
5635         case DRM_FORMAT_XRGB1555:
5636         case DRM_FORMAT_XBGR1555:
5637         case DRM_FORMAT_RGBX5551:
5638         case DRM_FORMAT_BGRX5551:
5639         case DRM_FORMAT_ARGB1555:
5640         case DRM_FORMAT_ABGR1555:
5641         case DRM_FORMAT_RGBA5551:
5642         case DRM_FORMAT_BGRA5551:
5643                 *depth = 15;
5644                 *bpp = 16;
5645                 break;
5646         case DRM_FORMAT_RGB565:
5647         case DRM_FORMAT_BGR565:
5648                 *depth = 16;
5649                 *bpp = 16;
5650                 break;
5651         case DRM_FORMAT_RGB888:
5652         case DRM_FORMAT_BGR888:
5653                 *depth = 24;
5654                 *bpp = 24;
5655                 break;
5656         case DRM_FORMAT_XRGB8888:
5657         case DRM_FORMAT_XBGR8888:
5658         case DRM_FORMAT_RGBX8888:
5659         case DRM_FORMAT_BGRX8888:
5660                 *depth = 24;
5661                 *bpp = 32;
5662                 break;
5663         case DRM_FORMAT_XRGB2101010:
5664         case DRM_FORMAT_XBGR2101010:
5665         case DRM_FORMAT_RGBX1010102:
5666         case DRM_FORMAT_BGRX1010102:
5667         case DRM_FORMAT_ARGB2101010:
5668         case DRM_FORMAT_ABGR2101010:
5669         case DRM_FORMAT_RGBA1010102:
5670         case DRM_FORMAT_BGRA1010102:
5671                 *depth = 30;
5672                 *bpp = 32;
5673                 break;
5674         case DRM_FORMAT_ARGB8888:
5675         case DRM_FORMAT_ABGR8888:
5676         case DRM_FORMAT_RGBA8888:
5677         case DRM_FORMAT_BGRA8888:
5678                 *depth = 32;
5679                 *bpp = 32;
5680                 break;
5681         default:
5682                 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5683                               drm_get_format_name(format));
5684                 *depth = 0;
5685                 *bpp = 0;
5686                 break;
5687         }
5688 }
5689 EXPORT_SYMBOL(drm_fb_get_bpp_depth);
5690
5691 /**
5692  * drm_format_num_planes - get the number of planes for format
5693  * @format: pixel format (DRM_FORMAT_*)
5694  *
5695  * Returns:
5696  * The number of planes used by the specified pixel format.
5697  */
5698 int drm_format_num_planes(uint32_t format)
5699 {
5700         switch (format) {
5701         case DRM_FORMAT_YUV410:
5702         case DRM_FORMAT_YVU410:
5703         case DRM_FORMAT_YUV411:
5704         case DRM_FORMAT_YVU411:
5705         case DRM_FORMAT_YUV420:
5706         case DRM_FORMAT_YVU420:
5707         case DRM_FORMAT_YUV422:
5708         case DRM_FORMAT_YVU422:
5709         case DRM_FORMAT_YUV444:
5710         case DRM_FORMAT_YVU444:
5711                 return 3;
5712         case DRM_FORMAT_NV12:
5713         case DRM_FORMAT_NV21:
5714         case DRM_FORMAT_NV16:
5715         case DRM_FORMAT_NV61:
5716         case DRM_FORMAT_NV24:
5717         case DRM_FORMAT_NV42:
5718                 return 2;
5719         default:
5720                 return 1;
5721         }
5722 }
5723 EXPORT_SYMBOL(drm_format_num_planes);
5724
5725 /**
5726  * drm_format_plane_cpp - determine the bytes per pixel value
5727  * @format: pixel format (DRM_FORMAT_*)
5728  * @plane: plane index
5729  *
5730  * Returns:
5731  * The bytes per pixel value for the specified plane.
5732  */
5733 int drm_format_plane_cpp(uint32_t format, int plane)
5734 {
5735         unsigned int depth;
5736         int bpp;
5737
5738         if (plane >= drm_format_num_planes(format))
5739                 return 0;
5740
5741         switch (format) {
5742         case DRM_FORMAT_YUYV:
5743         case DRM_FORMAT_YVYU:
5744         case DRM_FORMAT_UYVY:
5745         case DRM_FORMAT_VYUY:
5746                 return 2;
5747         case DRM_FORMAT_NV12:
5748         case DRM_FORMAT_NV21:
5749         case DRM_FORMAT_NV16:
5750         case DRM_FORMAT_NV61:
5751         case DRM_FORMAT_NV24:
5752         case DRM_FORMAT_NV42:
5753                 return plane ? 2 : 1;
5754         case DRM_FORMAT_YUV410:
5755         case DRM_FORMAT_YVU410:
5756         case DRM_FORMAT_YUV411:
5757         case DRM_FORMAT_YVU411:
5758         case DRM_FORMAT_YUV420:
5759         case DRM_FORMAT_YVU420:
5760         case DRM_FORMAT_YUV422:
5761         case DRM_FORMAT_YVU422:
5762         case DRM_FORMAT_YUV444:
5763         case DRM_FORMAT_YVU444:
5764                 return 1;
5765         default:
5766                 drm_fb_get_bpp_depth(format, &depth, &bpp);
5767                 return bpp >> 3;
5768         }
5769 }
5770 EXPORT_SYMBOL(drm_format_plane_cpp);
5771
5772 /**
5773  * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5774  * @format: pixel format (DRM_FORMAT_*)
5775  *
5776  * Returns:
5777  * The horizontal chroma subsampling factor for the
5778  * specified pixel format.
5779  */
5780 int drm_format_horz_chroma_subsampling(uint32_t format)
5781 {
5782         switch (format) {
5783         case DRM_FORMAT_YUV411:
5784         case DRM_FORMAT_YVU411:
5785         case DRM_FORMAT_YUV410:
5786         case DRM_FORMAT_YVU410:
5787                 return 4;
5788         case DRM_FORMAT_YUYV:
5789         case DRM_FORMAT_YVYU:
5790         case DRM_FORMAT_UYVY:
5791         case DRM_FORMAT_VYUY:
5792         case DRM_FORMAT_NV12:
5793         case DRM_FORMAT_NV21:
5794         case DRM_FORMAT_NV16:
5795         case DRM_FORMAT_NV61:
5796         case DRM_FORMAT_YUV422:
5797         case DRM_FORMAT_YVU422:
5798         case DRM_FORMAT_YUV420:
5799         case DRM_FORMAT_YVU420:
5800                 return 2;
5801         default:
5802                 return 1;
5803         }
5804 }
5805 EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5806
5807 /**
5808  * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5809  * @format: pixel format (DRM_FORMAT_*)
5810  *
5811  * Returns:
5812  * The vertical chroma subsampling factor for the
5813  * specified pixel format.
5814  */
5815 int drm_format_vert_chroma_subsampling(uint32_t format)
5816 {
5817         switch (format) {
5818         case DRM_FORMAT_YUV410:
5819         case DRM_FORMAT_YVU410:
5820                 return 4;
5821         case DRM_FORMAT_YUV420:
5822         case DRM_FORMAT_YVU420:
5823         case DRM_FORMAT_NV12:
5824         case DRM_FORMAT_NV21:
5825                 return 2;
5826         default:
5827                 return 1;
5828         }
5829 }
5830 EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
5831
5832 /**
5833  * drm_rotation_simplify() - Try to simplify the rotation
5834  * @rotation: Rotation to be simplified
5835  * @supported_rotations: Supported rotations
5836  *
5837  * Attempt to simplify the rotation to a form that is supported.
5838  * Eg. if the hardware supports everything except DRM_REFLECT_X
5839  * one could call this function like this:
5840  *
5841  * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5842  *                       BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5843  *                       BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5844  *
5845  * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5846  * transforms the hardware supports, this function may not
5847  * be able to produce a supported transform, so the caller should
5848  * check the result afterwards.
5849  */
5850 unsigned int drm_rotation_simplify(unsigned int rotation,
5851                                    unsigned int supported_rotations)
5852 {
5853         if (rotation & ~supported_rotations) {
5854                 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5855                 rotation = (rotation & DRM_REFLECT_MASK) |
5856                            BIT((ffs(rotation & DRM_ROTATE_MASK) + 1) % 4);
5857         }
5858
5859         return rotation;
5860 }
5861 EXPORT_SYMBOL(drm_rotation_simplify);
5862
5863 /**
5864  * drm_mode_config_init - initialize DRM mode_configuration structure
5865  * @dev: DRM device
5866  *
5867  * Initialize @dev's mode_config structure, used for tracking the graphics
5868  * configuration of @dev.
5869  *
5870  * Since this initializes the modeset locks, no locking is possible. Which is no
5871  * problem, since this should happen single threaded at init time. It is the
5872  * driver's problem to ensure this guarantee.
5873  *
5874  */
5875 void drm_mode_config_init(struct drm_device *dev)
5876 {
5877         mutex_init(&dev->mode_config.mutex);
5878         drm_modeset_lock_init(&dev->mode_config.connection_mutex);
5879         mutex_init(&dev->mode_config.idr_mutex);
5880         mutex_init(&dev->mode_config.fb_lock);
5881         mutex_init(&dev->mode_config.blob_lock);
5882         INIT_LIST_HEAD(&dev->mode_config.fb_list);
5883         INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5884         INIT_LIST_HEAD(&dev->mode_config.connector_list);
5885         INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5886         INIT_LIST_HEAD(&dev->mode_config.property_list);
5887         INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5888         INIT_LIST_HEAD(&dev->mode_config.plane_list);
5889         idr_init(&dev->mode_config.crtc_idr);
5890         idr_init(&dev->mode_config.tile_idr);
5891
5892         drm_modeset_lock_all(dev);
5893         drm_mode_create_standard_properties(dev);
5894         drm_modeset_unlock_all(dev);
5895
5896         /* Just to be sure */
5897         dev->mode_config.num_fb = 0;
5898         dev->mode_config.num_connector = 0;
5899         dev->mode_config.num_crtc = 0;
5900         dev->mode_config.num_encoder = 0;
5901         dev->mode_config.num_overlay_plane = 0;
5902         dev->mode_config.num_total_plane = 0;
5903 }
5904 EXPORT_SYMBOL(drm_mode_config_init);
5905
5906 /**
5907  * drm_mode_config_cleanup - free up DRM mode_config info
5908  * @dev: DRM device
5909  *
5910  * Free up all the connectors and CRTCs associated with this DRM device, then
5911  * free up the framebuffers and associated buffer objects.
5912  *
5913  * Note that since this /should/ happen single-threaded at driver/device
5914  * teardown time, no locking is required. It's the driver's job to ensure that
5915  * this guarantee actually holds true.
5916  *
5917  * FIXME: cleanup any dangling user buffer objects too
5918  */
5919 void drm_mode_config_cleanup(struct drm_device *dev)
5920 {
5921         struct drm_connector *connector, *ot;
5922         struct drm_crtc *crtc, *ct;
5923         struct drm_encoder *encoder, *enct;
5924         struct drm_framebuffer *fb, *fbt;
5925         struct drm_property *property, *pt;
5926         struct drm_property_blob *blob, *bt;
5927         struct drm_plane *plane, *plt;
5928
5929         list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5930                                  head) {
5931                 encoder->funcs->destroy(encoder);
5932         }
5933
5934         list_for_each_entry_safe(connector, ot,
5935                                  &dev->mode_config.connector_list, head) {
5936                 connector->funcs->destroy(connector);
5937         }
5938
5939         list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5940                                  head) {
5941                 drm_property_destroy(dev, property);
5942         }
5943
5944         list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5945                                  head_global) {
5946                 drm_property_unreference_blob(blob);
5947         }
5948
5949         /*
5950          * Single-threaded teardown context, so it's not required to grab the
5951          * fb_lock to protect against concurrent fb_list access. Contrary, it
5952          * would actually deadlock with the drm_framebuffer_cleanup function.
5953          *
5954          * Also, if there are any framebuffers left, that's a driver leak now,
5955          * so politely WARN about this.
5956          */
5957         WARN_ON(!list_empty(&dev->mode_config.fb_list));
5958         list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5959                 drm_framebuffer_free(&fb->refcount);
5960         }
5961
5962         list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5963                                  head) {
5964                 plane->funcs->destroy(plane);
5965         }
5966
5967         list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5968                 crtc->funcs->destroy(crtc);
5969         }
5970
5971         idr_destroy(&dev->mode_config.tile_idr);
5972         idr_destroy(&dev->mode_config.crtc_idr);
5973         drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
5974 }
5975 EXPORT_SYMBOL(drm_mode_config_cleanup);
5976
5977 struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5978                                                        unsigned int supported_rotations)
5979 {
5980         static const struct drm_prop_enum_list props[] = {
5981                 { DRM_ROTATE_0,   "rotate-0" },
5982                 { DRM_ROTATE_90,  "rotate-90" },
5983                 { DRM_ROTATE_180, "rotate-180" },
5984                 { DRM_ROTATE_270, "rotate-270" },
5985                 { DRM_REFLECT_X,  "reflect-x" },
5986                 { DRM_REFLECT_Y,  "reflect-y" },
5987         };
5988
5989         return drm_property_create_bitmask(dev, 0, "rotation",
5990                                            props, ARRAY_SIZE(props),
5991                                            supported_rotations);
5992 }
5993 EXPORT_SYMBOL(drm_mode_create_rotation_property);
5994
5995 /**
5996  * DOC: Tile group
5997  *
5998  * Tile groups are used to represent tiled monitors with a unique
5999  * integer identifier. Tiled monitors using DisplayID v1.3 have
6000  * a unique 8-byte handle, we store this in a tile group, so we
6001  * have a common identifier for all tiles in a monitor group.
6002  */
6003 static void drm_tile_group_free(struct kref *kref)
6004 {
6005         struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
6006         struct drm_device *dev = tg->dev;
6007         mutex_lock(&dev->mode_config.idr_mutex);
6008         idr_remove(&dev->mode_config.tile_idr, tg->id);
6009         mutex_unlock(&dev->mode_config.idr_mutex);
6010         kfree(tg);
6011 }
6012
6013 /**
6014  * drm_mode_put_tile_group - drop a reference to a tile group.
6015  * @dev: DRM device
6016  * @tg: tile group to drop reference to.
6017  *
6018  * drop reference to tile group and free if 0.
6019  */
6020 void drm_mode_put_tile_group(struct drm_device *dev,
6021                              struct drm_tile_group *tg)
6022 {
6023         kref_put(&tg->refcount, drm_tile_group_free);
6024 }
6025
6026 /**
6027  * drm_mode_get_tile_group - get a reference to an existing tile group
6028  * @dev: DRM device
6029  * @topology: 8-bytes unique per monitor.
6030  *
6031  * Use the unique bytes to get a reference to an existing tile group.
6032  *
6033  * RETURNS:
6034  * tile group or NULL if not found.
6035  */
6036 struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
6037                                                char topology[8])
6038 {
6039         struct drm_tile_group *tg;
6040         int id;
6041         mutex_lock(&dev->mode_config.idr_mutex);
6042         idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
6043                 if (!memcmp(tg->group_data, topology, 8)) {
6044                         if (!kref_get_unless_zero(&tg->refcount))
6045                                 tg = NULL;
6046                         mutex_unlock(&dev->mode_config.idr_mutex);
6047                         return tg;
6048                 }
6049         }
6050         mutex_unlock(&dev->mode_config.idr_mutex);
6051         return NULL;
6052 }
6053 EXPORT_SYMBOL(drm_mode_get_tile_group);
6054
6055 /**
6056  * drm_mode_create_tile_group - create a tile group from a displayid description
6057  * @dev: DRM device
6058  * @topology: 8-bytes unique per monitor.
6059  *
6060  * Create a tile group for the unique monitor, and get a unique
6061  * identifier for the tile group.
6062  *
6063  * RETURNS:
6064  * new tile group or error.
6065  */
6066 struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
6067                                                   char topology[8])
6068 {
6069         struct drm_tile_group *tg;
6070         int ret;
6071
6072         tg = kzalloc(sizeof(*tg), GFP_KERNEL);
6073         if (!tg)
6074                 return ERR_PTR(-ENOMEM);
6075
6076         kref_init(&tg->refcount);
6077         memcpy(tg->group_data, topology, 8);
6078         tg->dev = dev;
6079
6080         mutex_lock(&dev->mode_config.idr_mutex);
6081         ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
6082         if (ret >= 0) {
6083                 tg->id = ret;
6084         } else {
6085                 kfree(tg);
6086                 tg = ERR_PTR(ret);
6087         }
6088
6089         mutex_unlock(&dev->mode_config.idr_mutex);
6090         return tg;
6091 }
6092 EXPORT_SYMBOL(drm_mode_create_tile_group);