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