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