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