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