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