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