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