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