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