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