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