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