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