blob: e79c8d3700d838ff87f1095bcb92a773dbe36018 [file] [log] [blame]
Dave Airlief453ba02008-11-07 14:05:41 -08001/*
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 */
Ville Syrjälä6ba6d032013-06-10 11:15:10 +030032#include <linux/ctype.h>
Dave Airlief453ba02008-11-07 14:05:41 -080033#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040035#include <linux/export.h>
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/drmP.h>
37#include <drm/drm_crtc.h>
38#include <drm/drm_edid.h>
39#include <drm/drm_fourcc.h>
Rob Clark51fd3712013-11-19 12:10:12 -050040#include <drm/drm_modeset_lock.h>
Dave Airlief453ba02008-11-07 14:05:41 -080041
Daniel Vetter8bd441b2014-01-23 15:35:24 +010042#include "drm_crtc_internal.h"
Daniel Vetter67d0ec42014-09-10 12:43:53 +020043#include "drm_internal.h"
Daniel Vetter8bd441b2014-01-23 15:35:24 +010044
Matt Roperc394c2b2014-06-10 08:28:08 -070045static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
46 struct drm_mode_fb_cmd2 *r,
47 struct drm_file *file_priv);
48
Dave Airlief453ba02008-11-07 14:05:41 -080049/* Avoid boilerplate. I'm tired of typing. */
50#define DRM_ENUM_NAME_FN(fnname, list) \
Ville Syrjäläd20d3172013-06-07 15:43:07 +000051 const char *fnname(int val) \
Dave Airlief453ba02008-11-07 14:05:41 -080052 { \
53 int i; \
54 for (i = 0; i < ARRAY_SIZE(list); i++) { \
55 if (list[i].type == val) \
56 return list[i].name; \
57 } \
58 return "(unknown)"; \
59 }
60
61/*
62 * Global properties
63 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +000064static const struct drm_prop_enum_list drm_dpms_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -080065{ { DRM_MODE_DPMS_ON, "On" },
66 { DRM_MODE_DPMS_STANDBY, "Standby" },
67 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
68 { DRM_MODE_DPMS_OFF, "Off" }
69};
70
71DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
72
Rob Clark9922ab52014-04-01 20:16:57 -040073static const struct drm_prop_enum_list drm_plane_type_enum_list[] =
74{
75 { DRM_PLANE_TYPE_OVERLAY, "Overlay" },
76 { DRM_PLANE_TYPE_PRIMARY, "Primary" },
77 { DRM_PLANE_TYPE_CURSOR, "Cursor" },
78};
79
Dave Airlief453ba02008-11-07 14:05:41 -080080/*
81 * Optional properties
82 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +000083static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -080084{
Jesse Barnes53bd8382009-07-01 10:04:40 -070085 { DRM_MODE_SCALE_NONE, "None" },
86 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
87 { DRM_MODE_SCALE_CENTER, "Center" },
88 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
Dave Airlief453ba02008-11-07 14:05:41 -080089};
90
Vandana Kannanff587e42014-06-11 10:46:48 +053091static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
92 { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
93 { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
94 { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
95};
96
Dave Airlief453ba02008-11-07 14:05:41 -080097/*
98 * Non-global properties, but "required" for certain connectors.
99 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000100static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800101{
102 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
103 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
104 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
105};
106
107DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
108
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000109static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800110{
111 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
112 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
113 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
114};
115
116DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
117 drm_dvi_i_subconnector_enum_list)
118
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000119static const struct drm_prop_enum_list drm_tv_select_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800120{
121 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
122 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
123 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
124 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200125 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800126};
127
128DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
129
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000130static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800131{
132 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
133 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
134 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
135 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200136 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800137};
138
139DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
140 drm_tv_subconnector_enum_list)
141
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000142static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000143 { DRM_MODE_DIRTY_OFF, "Off" },
144 { DRM_MODE_DIRTY_ON, "On" },
145 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
146};
147
Dave Airlief453ba02008-11-07 14:05:41 -0800148struct drm_conn_prop_enum_list {
149 int type;
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000150 const char *name;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400151 struct ida ida;
Dave Airlief453ba02008-11-07 14:05:41 -0800152};
153
154/*
155 * Connector and encoder types.
156 */
157static struct drm_conn_prop_enum_list drm_connector_enum_list[] =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400158{ { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
159 { DRM_MODE_CONNECTOR_VGA, "VGA" },
160 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
161 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
162 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
163 { DRM_MODE_CONNECTOR_Composite, "Composite" },
164 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
165 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
166 { DRM_MODE_CONNECTOR_Component, "Component" },
167 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
168 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
169 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
170 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
171 { DRM_MODE_CONNECTOR_TV, "TV" },
172 { DRM_MODE_CONNECTOR_eDP, "eDP" },
173 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300174 { DRM_MODE_CONNECTOR_DSI, "DSI" },
Dave Airlief453ba02008-11-07 14:05:41 -0800175};
176
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000177static const struct drm_prop_enum_list drm_encoder_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800178{ { DRM_MODE_ENCODER_NONE, "None" },
179 { DRM_MODE_ENCODER_DAC, "DAC" },
180 { DRM_MODE_ENCODER_TMDS, "TMDS" },
181 { DRM_MODE_ENCODER_LVDS, "LVDS" },
182 { DRM_MODE_ENCODER_TVDAC, "TV" },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200183 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300184 { DRM_MODE_ENCODER_DSI, "DSI" },
Dave Airlie182407a2014-05-02 11:09:54 +1000185 { DRM_MODE_ENCODER_DPMST, "DP MST" },
Dave Airlief453ba02008-11-07 14:05:41 -0800186};
187
Jesse Barnesac1bb362014-02-10 15:32:44 -0800188static const struct drm_prop_enum_list drm_subpixel_enum_list[] =
189{
190 { SubPixelUnknown, "Unknown" },
191 { SubPixelHorizontalRGB, "Horizontal RGB" },
192 { SubPixelHorizontalBGR, "Horizontal BGR" },
193 { SubPixelVerticalRGB, "Vertical RGB" },
194 { SubPixelVerticalBGR, "Vertical BGR" },
195 { SubPixelNone, "None" },
196};
197
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400198void drm_connector_ida_init(void)
199{
200 int i;
201
202 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
203 ida_init(&drm_connector_enum_list[i].ida);
204}
205
206void drm_connector_ida_destroy(void)
207{
208 int i;
209
210 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
211 ida_destroy(&drm_connector_enum_list[i].ida);
212}
213
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100214/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100215 * drm_get_connector_status_name - return a string for connector status
216 * @status: connector status to compute name of
217 *
218 * In contrast to the other drm_get_*_name functions this one here returns a
219 * const pointer and hence is threadsafe.
220 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000221const char *drm_get_connector_status_name(enum drm_connector_status status)
Dave Airlief453ba02008-11-07 14:05:41 -0800222{
223 if (status == connector_status_connected)
224 return "connected";
225 else if (status == connector_status_disconnected)
226 return "disconnected";
227 else
228 return "unknown";
229}
Lespiau, Damiened7951d2013-05-10 12:36:42 +0000230EXPORT_SYMBOL(drm_get_connector_status_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800231
Jesse Barnesac1bb362014-02-10 15:32:44 -0800232/**
233 * drm_get_subpixel_order_name - return a string for a given subpixel enum
234 * @order: enum of subpixel_order
235 *
236 * Note you could abuse this and return something out of bounds, but that
237 * would be a caller error. No unscrubbed user data should make it here.
238 */
239const char *drm_get_subpixel_order_name(enum subpixel_order order)
240{
241 return drm_subpixel_enum_list[order].name;
242}
243EXPORT_SYMBOL(drm_get_subpixel_order_name);
244
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300245static char printable_char(int c)
246{
247 return isascii(c) && isprint(c) ? c : '?';
248}
249
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100250/**
251 * drm_get_format_name - return a string for drm fourcc format
252 * @format: format to compute name of
253 *
254 * Note that the buffer used by this function is globally shared and owned by
255 * the function itself.
256 *
257 * FIXME: This isn't really multithreading safe.
258 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000259const char *drm_get_format_name(uint32_t format)
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300260{
261 static char buf[32];
262
263 snprintf(buf, sizeof(buf),
264 "%c%c%c%c %s-endian (0x%08x)",
265 printable_char(format & 0xff),
266 printable_char((format >> 8) & 0xff),
267 printable_char((format >> 16) & 0xff),
268 printable_char((format >> 24) & 0x7f),
269 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
270 format);
271
272 return buf;
273}
274EXPORT_SYMBOL(drm_get_format_name);
275
Dave Airlie2ee39452014-07-24 11:53:45 +1000276/*
277 * Internal function to assign a slot in the object idr and optionally
278 * register the object into the idr.
279 */
280static int drm_mode_object_get_reg(struct drm_device *dev,
281 struct drm_mode_object *obj,
282 uint32_t obj_type,
283 bool register_obj)
284{
285 int ret;
286
287 mutex_lock(&dev->mode_config.idr_mutex);
288 ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
289 if (ret >= 0) {
290 /*
291 * Set up the object linking under the protection of the idr
292 * lock so that other users can't see inconsistent state.
293 */
294 obj->id = ret;
295 obj->type = obj_type;
296 }
297 mutex_unlock(&dev->mode_config.idr_mutex);
298
299 return ret < 0 ? ret : 0;
300}
301
Dave Airlief453ba02008-11-07 14:05:41 -0800302/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100303 * drm_mode_object_get - allocate a new modeset identifier
Dave Airlief453ba02008-11-07 14:05:41 -0800304 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100305 * @obj: object pointer, used to generate unique ID
306 * @obj_type: object type
Dave Airlief453ba02008-11-07 14:05:41 -0800307 *
Dave Airlief453ba02008-11-07 14:05:41 -0800308 * Create a unique identifier based on @ptr in @dev's identifier space. Used
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100309 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
310 * modeset identifiers are _not_ reference counted. Hence don't use this for
311 * reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800312 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100313 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -0800314 * New unique (relative to other objects in @dev) integer identifier for the
315 * object.
316 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100317int drm_mode_object_get(struct drm_device *dev,
318 struct drm_mode_object *obj, uint32_t obj_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800319{
Dave Airlie2ee39452014-07-24 11:53:45 +1000320 return drm_mode_object_get_reg(dev, obj, obj_type, true);
321}
Dave Airlief453ba02008-11-07 14:05:41 -0800322
Dave Airlie2ee39452014-07-24 11:53:45 +1000323static void drm_mode_object_register(struct drm_device *dev,
324 struct drm_mode_object *obj)
325{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000326 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlie2ee39452014-07-24 11:53:45 +1000327 idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000328 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800329}
330
331/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100332 * drm_mode_object_put - free a modeset identifer
Dave Airlief453ba02008-11-07 14:05:41 -0800333 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100334 * @object: object to free
Dave Airlief453ba02008-11-07 14:05:41 -0800335 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100336 * Free @id from @dev's unique identifier pool. Note that despite the _get
337 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
338 * for reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800339 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100340void drm_mode_object_put(struct drm_device *dev,
341 struct drm_mode_object *object)
Dave Airlief453ba02008-11-07 14:05:41 -0800342{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000343 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800344 idr_remove(&dev->mode_config.crtc_idr, object->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000345 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800346}
347
Rob Clark98f75de2014-05-30 11:37:03 -0400348static struct drm_mode_object *_object_find(struct drm_device *dev,
349 uint32_t id, uint32_t type)
350{
351 struct drm_mode_object *obj = NULL;
352
353 mutex_lock(&dev->mode_config.idr_mutex);
354 obj = idr_find(&dev->mode_config.crtc_idr, id);
Daniel Vetter168c02e2014-07-24 12:12:45 +0200355 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
356 obj = NULL;
357 if (obj && obj->id != id)
358 obj = NULL;
359 /* don't leak out unref'd fb's */
360 if (obj && (obj->type == DRM_MODE_OBJECT_FB))
Rob Clark98f75de2014-05-30 11:37:03 -0400361 obj = NULL;
362 mutex_unlock(&dev->mode_config.idr_mutex);
363
364 return obj;
365}
366
Daniel Vetter786b99e2012-12-02 21:53:40 +0100367/**
368 * drm_mode_object_find - look up a drm object with static lifetime
369 * @dev: drm device
370 * @id: id of the mode object
371 * @type: type of the mode object
372 *
373 * Note that framebuffers cannot be looked up with this functions - since those
Rob Clark98f75de2014-05-30 11:37:03 -0400374 * are reference counted, they need special treatment. Even with
375 * DRM_MODE_OBJECT_ANY (although that will simply return NULL
376 * rather than WARN_ON()).
Daniel Vetter786b99e2012-12-02 21:53:40 +0100377 */
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200378struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
379 uint32_t id, uint32_t type)
Dave Airlief453ba02008-11-07 14:05:41 -0800380{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000381 struct drm_mode_object *obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800382
Daniel Vetter786b99e2012-12-02 21:53:40 +0100383 /* Framebuffers are reference counted and need their own lookup
384 * function.*/
385 WARN_ON(type == DRM_MODE_OBJECT_FB);
Rob Clark98f75de2014-05-30 11:37:03 -0400386 obj = _object_find(dev, id, type);
Dave Airlief453ba02008-11-07 14:05:41 -0800387 return obj;
388}
389EXPORT_SYMBOL(drm_mode_object_find);
390
391/**
Dave Airlief453ba02008-11-07 14:05:41 -0800392 * drm_framebuffer_init - initialize a framebuffer
393 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100394 * @fb: framebuffer to be initialized
395 * @funcs: ... with these functions
Dave Airlief453ba02008-11-07 14:05:41 -0800396 *
Dave Airlief453ba02008-11-07 14:05:41 -0800397 * Allocates an ID for the framebuffer's parent mode object, sets its mode
398 * functions & device file and adds it to the master fd list.
399 *
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100400 * IMPORTANT:
401 * This functions publishes the fb and makes it available for concurrent access
402 * by other users. Which means by this point the fb _must_ be fully set up -
403 * since all the fb attributes are invariant over its lifetime, no further
404 * locking but only correct reference counting is required.
405 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100406 * Returns:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200407 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800408 */
409int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
410 const struct drm_framebuffer_funcs *funcs)
411{
412 int ret;
413
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100414 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000415 kref_init(&fb->refcount);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100416 INIT_LIST_HEAD(&fb->filp_head);
417 fb->dev = dev;
418 fb->funcs = funcs;
Rob Clarkf7eff602012-09-05 21:48:38 +0000419
Dave Airlief453ba02008-11-07 14:05:41 -0800420 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200421 if (ret)
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100422 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800423
Dave Airlief453ba02008-11-07 14:05:41 -0800424 dev->mode_config.num_fb++;
425 list_add(&fb->head, &dev->mode_config.fb_list);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100426out:
427 mutex_unlock(&dev->mode_config.fb_lock);
Dave Airlief453ba02008-11-07 14:05:41 -0800428
429 return 0;
430}
431EXPORT_SYMBOL(drm_framebuffer_init);
432
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200433/* dev->mode_config.fb_lock must be held! */
434static void __drm_framebuffer_unregister(struct drm_device *dev,
435 struct drm_framebuffer *fb)
436{
437 mutex_lock(&dev->mode_config.idr_mutex);
438 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
439 mutex_unlock(&dev->mode_config.idr_mutex);
440
441 fb->base.id = 0;
442}
443
Rob Clarkf7eff602012-09-05 21:48:38 +0000444static void drm_framebuffer_free(struct kref *kref)
445{
446 struct drm_framebuffer *fb =
447 container_of(kref, struct drm_framebuffer, refcount);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200448 struct drm_device *dev = fb->dev;
449
450 /*
451 * The lookup idr holds a weak reference, which has not necessarily been
452 * removed at this point. Check for that.
453 */
454 mutex_lock(&dev->mode_config.fb_lock);
455 if (fb->base.id) {
456 /* Mark fb as reaped and drop idr ref. */
457 __drm_framebuffer_unregister(dev, fb);
458 }
459 mutex_unlock(&dev->mode_config.fb_lock);
460
Rob Clarkf7eff602012-09-05 21:48:38 +0000461 fb->funcs->destroy(fb);
462}
463
Daniel Vetter2b677e82012-12-10 21:16:05 +0100464static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
465 uint32_t id)
466{
467 struct drm_mode_object *obj = NULL;
468 struct drm_framebuffer *fb;
469
470 mutex_lock(&dev->mode_config.idr_mutex);
471 obj = idr_find(&dev->mode_config.crtc_idr, id);
472 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
473 fb = NULL;
474 else
475 fb = obj_to_fb(obj);
476 mutex_unlock(&dev->mode_config.idr_mutex);
477
478 return fb;
479}
480
Rob Clarkf7eff602012-09-05 21:48:38 +0000481/**
Daniel Vetter786b99e2012-12-02 21:53:40 +0100482 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
483 * @dev: drm device
484 * @id: id of the fb object
485 *
486 * If successful, this grabs an additional reference to the framebuffer -
487 * callers need to make sure to eventually unreference the returned framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100488 * again, using @drm_framebuffer_unreference.
Daniel Vetter786b99e2012-12-02 21:53:40 +0100489 */
490struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
491 uint32_t id)
492{
Daniel Vetter786b99e2012-12-02 21:53:40 +0100493 struct drm_framebuffer *fb;
494
495 mutex_lock(&dev->mode_config.fb_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100496 fb = __drm_framebuffer_lookup(dev, id);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200497 if (fb) {
498 if (!kref_get_unless_zero(&fb->refcount))
499 fb = NULL;
500 }
Daniel Vetter786b99e2012-12-02 21:53:40 +0100501 mutex_unlock(&dev->mode_config.fb_lock);
502
503 return fb;
504}
505EXPORT_SYMBOL(drm_framebuffer_lookup);
506
507/**
Rob Clarkf7eff602012-09-05 21:48:38 +0000508 * drm_framebuffer_unreference - unref a framebuffer
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100509 * @fb: framebuffer to unref
510 *
511 * This functions decrements the fb's refcount and frees it if it drops to zero.
Rob Clarkf7eff602012-09-05 21:48:38 +0000512 */
513void drm_framebuffer_unreference(struct drm_framebuffer *fb)
514{
Rob Clark82912722014-03-18 10:07:08 -0400515 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000516 kref_put(&fb->refcount, drm_framebuffer_free);
517}
518EXPORT_SYMBOL(drm_framebuffer_unreference);
519
520/**
521 * drm_framebuffer_reference - incr the fb refcnt
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100522 * @fb: framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100523 *
524 * This functions increments the fb's refcount.
Rob Clarkf7eff602012-09-05 21:48:38 +0000525 */
526void drm_framebuffer_reference(struct drm_framebuffer *fb)
527{
Rob Clark82912722014-03-18 10:07:08 -0400528 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000529 kref_get(&fb->refcount);
530}
531EXPORT_SYMBOL(drm_framebuffer_reference);
532
Daniel Vetter2b677e82012-12-10 21:16:05 +0100533static void drm_framebuffer_free_bug(struct kref *kref)
534{
535 BUG();
536}
537
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100538static void __drm_framebuffer_unreference(struct drm_framebuffer *fb)
539{
Rob Clark82912722014-03-18 10:07:08 -0400540 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100541 kref_put(&fb->refcount, drm_framebuffer_free_bug);
542}
543
Dave Airlief453ba02008-11-07 14:05:41 -0800544/**
Daniel Vetter36206362012-12-10 20:42:17 +0100545 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
546 * @fb: fb to unregister
547 *
548 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
549 * those used for fbdev. Note that the caller must hold a reference of it's own,
550 * i.e. the object may not be destroyed through this call (since it'll lead to a
551 * locking inversion).
552 */
553void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
554{
Daniel Vetter2b677e82012-12-10 21:16:05 +0100555 struct drm_device *dev = fb->dev;
556
557 mutex_lock(&dev->mode_config.fb_lock);
558 /* Mark fb as reaped and drop idr ref. */
559 __drm_framebuffer_unregister(dev, fb);
560 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100561}
562EXPORT_SYMBOL(drm_framebuffer_unregister_private);
563
564/**
Dave Airlief453ba02008-11-07 14:05:41 -0800565 * drm_framebuffer_cleanup - remove a framebuffer object
566 * @fb: framebuffer to remove
567 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100568 * Cleanup framebuffer. This function is intended to be used from the drivers
569 * ->destroy callback. It can also be used to clean up driver private
570 * framebuffers embedded into a larger structure.
Daniel Vetter36206362012-12-10 20:42:17 +0100571 *
572 * Note that this function does not remove the fb from active usuage - if it is
573 * still used anywhere, hilarity can ensue since userspace could call getfb on
574 * the id and get back -EINVAL. Obviously no concern at driver unload time.
575 *
576 * Also, the framebuffer will not be removed from the lookup idr - for
577 * user-created framebuffers this will happen in in the rmfb ioctl. For
578 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
579 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800580 */
581void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
582{
583 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100584
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100585 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000586 list_del(&fb->head);
587 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100588 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000589}
590EXPORT_SYMBOL(drm_framebuffer_cleanup);
591
592/**
593 * drm_framebuffer_remove - remove and unreference a framebuffer object
594 * @fb: framebuffer to remove
595 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000596 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100597 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100598 * passed-in framebuffer. Might take the modeset locks.
599 *
600 * Note that this function optimizes the cleanup away if the caller holds the
601 * last reference to the framebuffer. It is also guaranteed to not take the
602 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000603 */
604void drm_framebuffer_remove(struct drm_framebuffer *fb)
605{
606 struct drm_device *dev = fb->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800607 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800608 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000609 struct drm_mode_set set;
610 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800611
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100612 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100613
Daniel Vetterb62584e2012-12-11 16:51:35 +0100614 /*
615 * drm ABI mandates that we remove any deleted framebuffers from active
616 * useage. But since most sane clients only remove framebuffers they no
617 * longer need, try to optimize this away.
618 *
619 * Since we're holding a reference ourselves, observing a refcount of 1
620 * means that we're the last holder and can skip it. Also, the refcount
621 * can never increase from 1 again, so we don't need any barriers or
622 * locks.
623 *
624 * Note that userspace could try to race with use and instate a new
625 * usage _after_ we've cleared all current ones. End result will be an
626 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
627 * in this manner.
628 */
629 if (atomic_read(&fb->refcount.refcount) > 1) {
630 drm_modeset_lock_all(dev);
631 /* remove from any CRTC */
632 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -0700633 if (crtc->primary->fb == fb) {
Daniel Vetterb62584e2012-12-11 16:51:35 +0100634 /* should turn off the crtc */
635 memset(&set, 0, sizeof(struct drm_mode_set));
636 set.crtc = crtc;
637 set.fb = NULL;
638 ret = drm_mode_set_config_internal(&set);
639 if (ret)
640 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
641 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000642 }
Dave Airlief453ba02008-11-07 14:05:41 -0800643
Daniel Vetterb62584e2012-12-11 16:51:35 +0100644 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300645 if (plane->fb == fb)
646 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800647 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100648 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800649 }
650
Rob Clarkf7eff602012-09-05 21:48:38 +0000651 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800652}
Rob Clarkf7eff602012-09-05 21:48:38 +0000653EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800654
Rob Clark51fd3712013-11-19 12:10:12 -0500655DEFINE_WW_CLASS(crtc_ww_class);
656
Dave Airlief453ba02008-11-07 14:05:41 -0800657/**
Matt Ropere13161a2014-04-01 15:22:38 -0700658 * drm_crtc_init_with_planes - Initialise a new CRTC object with
659 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800660 * @dev: DRM device
661 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700662 * @primary: Primary plane for CRTC
663 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800664 * @funcs: callbacks for the new CRTC
665 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000666 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200667 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100668 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200669 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800670 */
Matt Ropere13161a2014-04-01 15:22:38 -0700671int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
672 struct drm_plane *primary,
Matt Roperfc1d3e42014-06-10 08:28:11 -0700673 struct drm_plane *cursor,
Matt Ropere13161a2014-04-01 15:22:38 -0700674 const struct drm_crtc_funcs *funcs)
Dave Airlief453ba02008-11-07 14:05:41 -0800675{
Rob Clark51fd3712013-11-19 12:10:12 -0500676 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200677 int ret;
678
Dave Airlief453ba02008-11-07 14:05:41 -0800679 crtc->dev = dev;
680 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000681 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800682
Rob Clark51fd3712013-11-19 12:10:12 -0500683 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200684 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
685 if (ret)
686 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800687
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300688 crtc->base.properties = &crtc->properties;
689
Rob Clark51fd3712013-11-19 12:10:12 -0500690 list_add_tail(&crtc->head, &config->crtc_list);
691 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200692
Matt Ropere13161a2014-04-01 15:22:38 -0700693 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700694 crtc->cursor = cursor;
Matt Ropere13161a2014-04-01 15:22:38 -0700695 if (primary)
696 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Roperfc1d3e42014-06-10 08:28:11 -0700697 if (cursor)
698 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700699
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200700 out:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200701
702 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800703}
Matt Ropere13161a2014-04-01 15:22:38 -0700704EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800705
706/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000707 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800708 * @crtc: CRTC to cleanup
709 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000710 * This function cleans up @crtc and removes it from the DRM mode setting
711 * core. Note that the function does *not* free the crtc structure itself,
712 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800713 */
714void drm_crtc_cleanup(struct drm_crtc *crtc)
715{
716 struct drm_device *dev = crtc->dev;
717
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000718 kfree(crtc->gamma_store);
719 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800720
Rob Clark51fd3712013-11-19 12:10:12 -0500721 drm_modeset_lock_fini(&crtc->mutex);
722
Dave Airlief453ba02008-11-07 14:05:41 -0800723 drm_mode_object_put(dev, &crtc->base);
724 list_del(&crtc->head);
725 dev->mode_config.num_crtc--;
726}
727EXPORT_SYMBOL(drm_crtc_cleanup);
728
729/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000730 * drm_crtc_index - find the index of a registered CRTC
731 * @crtc: CRTC to find index for
732 *
733 * Given a registered CRTC, return the index of that CRTC within a DRM
734 * device's list of CRTCs.
735 */
736unsigned int drm_crtc_index(struct drm_crtc *crtc)
737{
738 unsigned int index = 0;
739 struct drm_crtc *tmp;
740
741 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
742 if (tmp == crtc)
743 return index;
744
745 index++;
746 }
747
748 BUG();
749}
750EXPORT_SYMBOL(drm_crtc_index);
751
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100752/*
Dave Airlief453ba02008-11-07 14:05:41 -0800753 * drm_mode_remove - remove and free a mode
754 * @connector: connector list to modify
755 * @mode: mode to remove
756 *
Dave Airlief453ba02008-11-07 14:05:41 -0800757 * Remove @mode from @connector's mode list, then free it.
758 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100759static void drm_mode_remove(struct drm_connector *connector,
760 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800761{
762 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100763 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800764}
Dave Airlief453ba02008-11-07 14:05:41 -0800765
766/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200767 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
768 * @connector: connector to quwery
769 * @mode: returned mode
770 *
771 * The kernel supports per-connector configration of its consoles through
772 * use of the video= parameter. This function parses that option and
773 * extracts the user's specified mode (or enable/disable status) for a
774 * particular connector. This is typically only used during the early fbdev
775 * setup.
776 */
777static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
778{
779 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
780 char *option = NULL;
781
782 if (fb_get_options(connector->name, &option))
783 return;
784
785 if (!drm_mode_parse_command_line_for_connector(option,
786 connector,
787 mode))
788 return;
789
790 if (mode->force) {
791 const char *s;
792
793 switch (mode->force) {
794 case DRM_FORCE_OFF:
795 s = "OFF";
796 break;
797 case DRM_FORCE_ON_DIGITAL:
798 s = "ON - dig";
799 break;
800 default:
801 case DRM_FORCE_ON:
802 s = "ON";
803 break;
804 }
805
806 DRM_INFO("forcing %s connector %s\n", connector->name, s);
807 connector->force = mode->force;
808 }
809
810 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
811 connector->name,
812 mode->xres, mode->yres,
813 mode->refresh_specified ? mode->refresh : 60,
814 mode->rb ? " reduced blanking" : "",
815 mode->margins ? " with margins" : "",
816 mode->interlace ? " interlaced" : "");
817}
818
819/**
Dave Airlief453ba02008-11-07 14:05:41 -0800820 * drm_connector_init - Init a preallocated connector
821 * @dev: DRM device
822 * @connector: the connector to init
823 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100824 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800825 *
Dave Airlief453ba02008-11-07 14:05:41 -0800826 * Initialises a preallocated connector. Connectors should be
827 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200828 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100829 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200830 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800831 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200832int drm_connector_init(struct drm_device *dev,
833 struct drm_connector *connector,
834 const struct drm_connector_funcs *funcs,
835 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800836{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200837 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400838 struct ida *connector_ida =
839 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200840
Daniel Vetter84849902012-12-02 00:28:11 +0100841 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800842
Dave Airlie2ee39452014-07-24 11:53:45 +1000843 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200844 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300845 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200846
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300847 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800848 connector->dev = dev;
849 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800850 connector->connector_type = connector_type;
851 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400852 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
853 if (connector->connector_type_id < 0) {
854 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300855 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400856 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300857 connector->name =
858 kasprintf(GFP_KERNEL, "%s-%d",
859 drm_connector_enum_list[connector_type].name,
860 connector->connector_type_id);
861 if (!connector->name) {
862 ret = -ENOMEM;
863 goto out_put;
864 }
865
Dave Airlief453ba02008-11-07 14:05:41 -0800866 INIT_LIST_HEAD(&connector->probed_modes);
867 INIT_LIST_HEAD(&connector->modes);
868 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000869 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800870
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200871 drm_connector_get_cmdline_mode(connector);
872
Dave Airlief453ba02008-11-07 14:05:41 -0800873 list_add_tail(&connector->head, &dev->mode_config.connector_list);
874 dev->mode_config.num_connector++;
875
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200876 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500877 drm_object_attach_property(&connector->base,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200878 dev->mode_config.edid_property,
879 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800880
Rob Clark58495562012-10-11 20:50:56 -0500881 drm_object_attach_property(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -0800882 dev->mode_config.dpms_property, 0);
883
Thomas Wood30f65702014-06-18 17:52:32 +0100884 connector->debugfs_entry = NULL;
885
Jani Nikula2abdd312014-05-14 16:58:19 +0300886out_put:
887 if (ret)
888 drm_mode_object_put(dev, &connector->base);
889
890out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100891 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200892
893 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800894}
895EXPORT_SYMBOL(drm_connector_init);
896
897/**
898 * drm_connector_cleanup - cleans up an initialised connector
899 * @connector: connector to cleanup
900 *
Dave Airlief453ba02008-11-07 14:05:41 -0800901 * Cleans up the connector but doesn't free the object.
902 */
903void drm_connector_cleanup(struct drm_connector *connector)
904{
905 struct drm_device *dev = connector->dev;
906 struct drm_display_mode *mode, *t;
907
908 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
909 drm_mode_remove(connector, mode);
910
911 list_for_each_entry_safe(mode, t, &connector->modes, head)
912 drm_mode_remove(connector, mode);
913
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400914 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
915 connector->connector_type_id);
916
Dave Airlief453ba02008-11-07 14:05:41 -0800917 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300918 kfree(connector->name);
919 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800920 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000921 dev->mode_config.num_connector--;
Dave Airlief453ba02008-11-07 14:05:41 -0800922}
923EXPORT_SYMBOL(drm_connector_cleanup);
924
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100925/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200926 * drm_connector_index - find the index of a registered connector
927 * @connector: connector to find index for
928 *
929 * Given a registered connector, return the index of that connector within a DRM
930 * device's list of connectors.
931 */
932unsigned int drm_connector_index(struct drm_connector *connector)
933{
934 unsigned int index = 0;
935 struct drm_connector *tmp;
936
937 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
938 if (tmp == connector)
939 return index;
940
941 index++;
942 }
943
944 BUG();
945}
946EXPORT_SYMBOL(drm_connector_index);
947
948/**
Thomas Wood34ea3d32014-05-29 16:57:41 +0100949 * drm_connector_register - register a connector
950 * @connector: the connector to register
951 *
952 * Register userspace interfaces for a connector
953 *
954 * Returns:
955 * Zero on success, error code on failure.
956 */
957int drm_connector_register(struct drm_connector *connector)
958{
Thomas Wood30f65702014-06-18 17:52:32 +0100959 int ret;
960
Dave Airlie2ee39452014-07-24 11:53:45 +1000961 drm_mode_object_register(connector->dev, &connector->base);
962
Thomas Wood30f65702014-06-18 17:52:32 +0100963 ret = drm_sysfs_connector_add(connector);
964 if (ret)
965 return ret;
966
967 ret = drm_debugfs_connector_add(connector);
968 if (ret) {
969 drm_sysfs_connector_remove(connector);
970 return ret;
971 }
972
973 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +0100974}
975EXPORT_SYMBOL(drm_connector_register);
976
977/**
978 * drm_connector_unregister - unregister a connector
979 * @connector: the connector to unregister
980 *
981 * Unregister userspace interfaces for a connector
982 */
983void drm_connector_unregister(struct drm_connector *connector)
984{
985 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +0100986 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +0100987}
988EXPORT_SYMBOL(drm_connector_unregister);
989
990
991/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100992 * drm_connector_unplug_all - unregister connector userspace interfaces
993 * @dev: drm device
994 *
995 * This function unregisters all connector userspace interfaces in sysfs. Should
996 * be call when the device is disconnected, e.g. from an usb driver's
997 * ->disconnect callback.
998 */
Dave Airliecbc7e222012-02-20 14:16:40 +0000999void drm_connector_unplug_all(struct drm_device *dev)
1000{
1001 struct drm_connector *connector;
1002
1003 /* taking the mode config mutex ends up in a clash with sysfs */
1004 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001005 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001006
1007}
1008EXPORT_SYMBOL(drm_connector_unplug_all);
1009
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001010/**
1011 * drm_bridge_init - initialize a drm transcoder/bridge
1012 * @dev: drm device
1013 * @bridge: transcoder/bridge to set up
1014 * @funcs: bridge function table
1015 *
1016 * Initialises a preallocated bridge. Bridges should be
1017 * subclassed as part of driver connector objects.
1018 *
1019 * Returns:
1020 * Zero on success, error code on failure.
1021 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001022int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
1023 const struct drm_bridge_funcs *funcs)
1024{
1025 int ret;
1026
1027 drm_modeset_lock_all(dev);
1028
1029 ret = drm_mode_object_get(dev, &bridge->base, DRM_MODE_OBJECT_BRIDGE);
1030 if (ret)
1031 goto out;
1032
1033 bridge->dev = dev;
1034 bridge->funcs = funcs;
1035
1036 list_add_tail(&bridge->head, &dev->mode_config.bridge_list);
1037 dev->mode_config.num_bridge++;
1038
1039 out:
1040 drm_modeset_unlock_all(dev);
1041 return ret;
1042}
1043EXPORT_SYMBOL(drm_bridge_init);
1044
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001045/**
1046 * drm_bridge_cleanup - cleans up an initialised bridge
1047 * @bridge: bridge to cleanup
1048 *
1049 * Cleans up the bridge but doesn't free the object.
1050 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001051void drm_bridge_cleanup(struct drm_bridge *bridge)
1052{
1053 struct drm_device *dev = bridge->dev;
1054
1055 drm_modeset_lock_all(dev);
1056 drm_mode_object_put(dev, &bridge->base);
1057 list_del(&bridge->head);
1058 dev->mode_config.num_bridge--;
1059 drm_modeset_unlock_all(dev);
1060}
1061EXPORT_SYMBOL(drm_bridge_cleanup);
1062
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001063/**
1064 * drm_encoder_init - Init a preallocated encoder
1065 * @dev: drm device
1066 * @encoder: the encoder to init
1067 * @funcs: callbacks for this encoder
1068 * @encoder_type: user visible type of the encoder
1069 *
1070 * Initialises a preallocated encoder. Encoder should be
1071 * subclassed as part of driver encoder objects.
1072 *
1073 * Returns:
1074 * Zero on success, error code on failure.
1075 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001076int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001077 struct drm_encoder *encoder,
1078 const struct drm_encoder_funcs *funcs,
1079 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001080{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001081 int ret;
1082
Daniel Vetter84849902012-12-02 00:28:11 +01001083 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001084
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001085 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1086 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001087 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001088
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001089 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001090 encoder->encoder_type = encoder_type;
1091 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001092 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1093 drm_encoder_enum_list[encoder_type].name,
1094 encoder->base.id);
1095 if (!encoder->name) {
1096 ret = -ENOMEM;
1097 goto out_put;
1098 }
Dave Airlief453ba02008-11-07 14:05:41 -08001099
1100 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1101 dev->mode_config.num_encoder++;
1102
Jani Nikulae5748942014-05-14 16:58:20 +03001103out_put:
1104 if (ret)
1105 drm_mode_object_put(dev, &encoder->base);
1106
1107out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001108 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001109
1110 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001111}
1112EXPORT_SYMBOL(drm_encoder_init);
1113
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001114/**
1115 * drm_encoder_cleanup - cleans up an initialised encoder
1116 * @encoder: encoder to cleanup
1117 *
1118 * Cleans up the encoder but doesn't free the object.
1119 */
Dave Airlief453ba02008-11-07 14:05:41 -08001120void drm_encoder_cleanup(struct drm_encoder *encoder)
1121{
1122 struct drm_device *dev = encoder->dev;
Daniel Vetter84849902012-12-02 00:28:11 +01001123 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001124 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001125 kfree(encoder->name);
1126 encoder->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001127 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001128 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001129 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001130}
1131EXPORT_SYMBOL(drm_encoder_cleanup);
1132
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001133/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001134 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001135 * @dev: DRM device
1136 * @plane: plane object to init
1137 * @possible_crtcs: bitmask of possible CRTCs
1138 * @funcs: callbacks for the new plane
1139 * @formats: array of supported formats (%DRM_FORMAT_*)
1140 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001141 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001142 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001143 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001144 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001145 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001146 * Zero on success, error code on failure.
1147 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001148int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1149 unsigned long possible_crtcs,
1150 const struct drm_plane_funcs *funcs,
1151 const uint32_t *formats, uint32_t format_count,
1152 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001153{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001154 int ret;
1155
Daniel Vetter84849902012-12-02 00:28:11 +01001156 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001157
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001158 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1159 if (ret)
1160 goto out;
1161
Rob Clark4d939142012-05-17 02:23:27 -06001162 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001163 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001164 plane->funcs = funcs;
1165 plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
1166 GFP_KERNEL);
1167 if (!plane->format_types) {
1168 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1169 drm_mode_object_put(dev, &plane->base);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001170 ret = -ENOMEM;
1171 goto out;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001172 }
1173
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001174 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001175 plane->format_count = format_count;
1176 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001177 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001178
Matt Roperdc415ff2014-04-01 15:22:36 -07001179 list_add_tail(&plane->head, &dev->mode_config.plane_list);
1180 dev->mode_config.num_total_plane++;
1181 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1182 dev->mode_config.num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001183
Rob Clark9922ab52014-04-01 20:16:57 -04001184 drm_object_attach_property(&plane->base,
1185 dev->mode_config.plane_type_property,
1186 plane->type);
1187
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001188 out:
Daniel Vetter84849902012-12-02 00:28:11 +01001189 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001190
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001191 return ret;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001192}
Matt Roperdc415ff2014-04-01 15:22:36 -07001193EXPORT_SYMBOL(drm_universal_plane_init);
1194
1195/**
1196 * drm_plane_init - Initialize a legacy plane
1197 * @dev: DRM device
1198 * @plane: plane object to init
1199 * @possible_crtcs: bitmask of possible CRTCs
1200 * @funcs: callbacks for the new plane
1201 * @formats: array of supported formats (%DRM_FORMAT_*)
1202 * @format_count: number of elements in @formats
1203 * @is_primary: plane type (primary vs overlay)
1204 *
1205 * Legacy API to initialize a DRM plane.
1206 *
1207 * New drivers should call drm_universal_plane_init() instead.
1208 *
1209 * Returns:
1210 * Zero on success, error code on failure.
1211 */
1212int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1213 unsigned long possible_crtcs,
1214 const struct drm_plane_funcs *funcs,
1215 const uint32_t *formats, uint32_t format_count,
1216 bool is_primary)
1217{
1218 enum drm_plane_type type;
1219
1220 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1221 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1222 formats, format_count, type);
1223}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001224EXPORT_SYMBOL(drm_plane_init);
1225
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001226/**
1227 * drm_plane_cleanup - Clean up the core plane usage
1228 * @plane: plane to cleanup
1229 *
1230 * This function cleans up @plane and removes it from the DRM mode setting
1231 * core. Note that the function does *not* free the plane structure itself,
1232 * this is the responsibility of the caller.
1233 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001234void drm_plane_cleanup(struct drm_plane *plane)
1235{
1236 struct drm_device *dev = plane->dev;
1237
Daniel Vetter84849902012-12-02 00:28:11 +01001238 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001239 kfree(plane->format_types);
1240 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001241
1242 BUG_ON(list_empty(&plane->head));
1243
1244 list_del(&plane->head);
1245 dev->mode_config.num_total_plane--;
1246 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1247 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001248 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001249}
1250EXPORT_SYMBOL(drm_plane_cleanup);
1251
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001252/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001253 * drm_plane_index - find the index of a registered plane
1254 * @plane: plane to find index for
1255 *
1256 * Given a registered plane, return the index of that CRTC within a DRM
1257 * device's list of planes.
1258 */
1259unsigned int drm_plane_index(struct drm_plane *plane)
1260{
1261 unsigned int index = 0;
1262 struct drm_plane *tmp;
1263
1264 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1265 if (tmp == plane)
1266 return index;
1267
1268 index++;
1269 }
1270
1271 BUG();
1272}
1273EXPORT_SYMBOL(drm_plane_index);
1274
1275/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001276 * drm_plane_force_disable - Forcibly disable a plane
1277 * @plane: plane to disable
1278 *
1279 * Forces the plane to be disabled.
1280 *
1281 * Used when the plane's current framebuffer is destroyed,
1282 * and when restoring fbdev mode.
1283 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001284void drm_plane_force_disable(struct drm_plane *plane)
1285{
1286 int ret;
1287
Daniel Vetter3d30a592014-07-27 13:42:42 +02001288 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001289 return;
1290
Daniel Vetter3d30a592014-07-27 13:42:42 +02001291 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001292 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001293 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001294 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001295 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001296 return;
1297 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001298 /* disconnect the plane from the fb and crtc: */
Daniel Vetter3d30a592014-07-27 13:42:42 +02001299 __drm_framebuffer_unreference(plane->old_fb);
1300 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001301 plane->fb = NULL;
1302 plane->crtc = NULL;
1303}
1304EXPORT_SYMBOL(drm_plane_force_disable);
1305
Dave Airlief453ba02008-11-07 14:05:41 -08001306static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
1307{
1308 struct drm_property *edid;
1309 struct drm_property *dpms;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001310 struct drm_property *dev_path;
Dave Airlief453ba02008-11-07 14:05:41 -08001311
1312 /*
1313 * Standard properties (apply to all connectors)
1314 */
1315 edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1316 DRM_MODE_PROP_IMMUTABLE,
1317 "EDID", 0);
1318 dev->mode_config.edid_property = edid;
1319
Sascha Hauer4a67d392012-02-06 10:58:17 +01001320 dpms = drm_property_create_enum(dev, 0,
1321 "DPMS", drm_dpms_enum_list,
1322 ARRAY_SIZE(drm_dpms_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001323 dev->mode_config.dpms_property = dpms;
1324
Dave Airlie43aba7e2014-06-05 14:01:31 +10001325 dev_path = drm_property_create(dev,
1326 DRM_MODE_PROP_BLOB |
1327 DRM_MODE_PROP_IMMUTABLE,
1328 "PATH", 0);
1329 dev->mode_config.path_property = dev_path;
1330
Dave Airlief453ba02008-11-07 14:05:41 -08001331 return 0;
1332}
1333
Rob Clark9922ab52014-04-01 20:16:57 -04001334static int drm_mode_create_standard_plane_properties(struct drm_device *dev)
1335{
1336 struct drm_property *type;
1337
1338 /*
1339 * Standard properties (apply to all planes)
1340 */
1341 type = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1342 "type", drm_plane_type_enum_list,
1343 ARRAY_SIZE(drm_plane_type_enum_list));
1344 dev->mode_config.plane_type_property = type;
1345
1346 return 0;
1347}
1348
Dave Airlief453ba02008-11-07 14:05:41 -08001349/**
1350 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1351 * @dev: DRM device
1352 *
1353 * Called by a driver the first time a DVI-I connector is made.
1354 */
1355int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1356{
1357 struct drm_property *dvi_i_selector;
1358 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001359
1360 if (dev->mode_config.dvi_i_select_subconnector_property)
1361 return 0;
1362
1363 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001364 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001365 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001366 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001367 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001368 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1369
Sascha Hauer4a67d392012-02-06 10:58:17 +01001370 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001371 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001372 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001373 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001374 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1375
1376 return 0;
1377}
1378EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1379
1380/**
1381 * drm_create_tv_properties - create TV specific connector properties
1382 * @dev: DRM device
1383 * @num_modes: number of different TV formats (modes) supported
1384 * @modes: array of pointers to strings containing name of each format
1385 *
1386 * Called by a driver's TV initialization routine, this function creates
1387 * the TV specific connector properties for a given device. Caller is
1388 * responsible for allocating a list of format names and passing them to
1389 * this routine.
1390 */
1391int drm_mode_create_tv_properties(struct drm_device *dev, int num_modes,
1392 char *modes[])
1393{
1394 struct drm_property *tv_selector;
1395 struct drm_property *tv_subconnector;
1396 int i;
1397
1398 if (dev->mode_config.tv_select_subconnector_property)
1399 return 0;
1400
1401 /*
1402 * Basic connector properties
1403 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001404 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001405 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001406 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001407 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001408 dev->mode_config.tv_select_subconnector_property = tv_selector;
1409
1410 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001411 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1412 "subconnector",
1413 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001414 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001415 dev->mode_config.tv_subconnector_property = tv_subconnector;
1416
1417 /*
1418 * Other, TV specific properties: margins & TV modes.
1419 */
1420 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001421 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001422
1423 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001424 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001425
1426 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001427 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001428
1429 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001430 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001431
1432 dev->mode_config.tv_mode_property =
1433 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1434 "mode", num_modes);
1435 for (i = 0; i < num_modes; i++)
1436 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1437 i, modes[i]);
1438
Francisco Jerezb6b79022009-08-02 04:19:20 +02001439 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001440 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001441
1442 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001443 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001444
1445 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001446 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001447
Francisco Jereza75f0232009-08-12 02:30:10 +02001448 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001449 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001450
1451 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001452 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001453
1454 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001455 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001456
Dave Airlief453ba02008-11-07 14:05:41 -08001457 return 0;
1458}
1459EXPORT_SYMBOL(drm_mode_create_tv_properties);
1460
1461/**
1462 * drm_mode_create_scaling_mode_property - create scaling mode property
1463 * @dev: DRM device
1464 *
1465 * Called by a driver the first time it's needed, must be attached to desired
1466 * connectors.
1467 */
1468int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1469{
1470 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001471
1472 if (dev->mode_config.scaling_mode_property)
1473 return 0;
1474
1475 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001476 drm_property_create_enum(dev, 0, "scaling mode",
1477 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001478 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001479
1480 dev->mode_config.scaling_mode_property = scaling_mode;
1481
1482 return 0;
1483}
1484EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1485
1486/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301487 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1488 * @dev: DRM device
1489 *
1490 * Called by a driver the first time it's needed, must be attached to desired
1491 * connectors.
1492 *
1493 * Returns:
1494 * Zero on success, errno on failure.
1495 */
1496int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1497{
1498 if (dev->mode_config.aspect_ratio_property)
1499 return 0;
1500
1501 dev->mode_config.aspect_ratio_property =
1502 drm_property_create_enum(dev, 0, "aspect ratio",
1503 drm_aspect_ratio_enum_list,
1504 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1505
1506 if (dev->mode_config.aspect_ratio_property == NULL)
1507 return -ENOMEM;
1508
1509 return 0;
1510}
1511EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1512
1513/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001514 * drm_mode_create_dirty_property - create dirty property
1515 * @dev: DRM device
1516 *
1517 * Called by a driver the first time it's needed, must be attached to desired
1518 * connectors.
1519 */
1520int drm_mode_create_dirty_info_property(struct drm_device *dev)
1521{
1522 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001523
1524 if (dev->mode_config.dirty_info_property)
1525 return 0;
1526
1527 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001528 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001529 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001530 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001531 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001532 dev->mode_config.dirty_info_property = dirty_info;
1533
1534 return 0;
1535}
1536EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1537
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001538static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001539{
1540 uint32_t total_objects = 0;
1541
1542 total_objects += dev->mode_config.num_crtc;
1543 total_objects += dev->mode_config.num_connector;
1544 total_objects += dev->mode_config.num_encoder;
Sean Paul3b336ec2013-08-14 16:47:37 -04001545 total_objects += dev->mode_config.num_bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001546
Dave Airlief453ba02008-11-07 14:05:41 -08001547 group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1548 if (!group->id_list)
1549 return -ENOMEM;
1550
1551 group->num_crtcs = 0;
1552 group->num_connectors = 0;
1553 group->num_encoders = 0;
Sean Paul3b336ec2013-08-14 16:47:37 -04001554 group->num_bridges = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001555 return 0;
1556}
1557
Dave Airliead222792014-05-02 13:22:19 +10001558void drm_mode_group_destroy(struct drm_mode_group *group)
1559{
1560 kfree(group->id_list);
1561 group->id_list = NULL;
1562}
1563
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001564/*
1565 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1566 * the drm core's responsibility to set up mode control groups.
1567 */
Dave Airlief453ba02008-11-07 14:05:41 -08001568int drm_mode_group_init_legacy_group(struct drm_device *dev,
1569 struct drm_mode_group *group)
1570{
1571 struct drm_crtc *crtc;
1572 struct drm_encoder *encoder;
1573 struct drm_connector *connector;
Sean Paul3b336ec2013-08-14 16:47:37 -04001574 struct drm_bridge *bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001575 int ret;
1576
1577 if ((ret = drm_mode_group_init(dev, group)))
1578 return ret;
1579
1580 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1581 group->id_list[group->num_crtcs++] = crtc->base.id;
1582
1583 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1584 group->id_list[group->num_crtcs + group->num_encoders++] =
1585 encoder->base.id;
1586
1587 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1588 group->id_list[group->num_crtcs + group->num_encoders +
1589 group->num_connectors++] = connector->base.id;
1590
Sean Paul3b336ec2013-08-14 16:47:37 -04001591 list_for_each_entry(bridge, &dev->mode_config.bridge_list, head)
1592 group->id_list[group->num_crtcs + group->num_encoders +
1593 group->num_connectors + group->num_bridges++] =
1594 bridge->base.id;
1595
Dave Airlief453ba02008-11-07 14:05:41 -08001596 return 0;
1597}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001598EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001599
Dave Airlie2390cd12014-06-05 14:01:29 +10001600void drm_reinit_primary_mode_group(struct drm_device *dev)
1601{
1602 drm_modeset_lock_all(dev);
1603 drm_mode_group_destroy(&dev->primary->mode_group);
1604 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1605 drm_modeset_unlock_all(dev);
1606}
1607EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1608
Dave Airlief453ba02008-11-07 14:05:41 -08001609/**
Dave Airlief453ba02008-11-07 14:05:41 -08001610 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1611 * @out: drm_mode_modeinfo struct to return to the user
1612 * @in: drm_display_mode to use
1613 *
Dave Airlief453ba02008-11-07 14:05:41 -08001614 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1615 * the user.
1616 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001617static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1618 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001619{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001620 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1621 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1622 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1623 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1624 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1625 "timing values too large for mode info\n");
1626
Dave Airlief453ba02008-11-07 14:05:41 -08001627 out->clock = in->clock;
1628 out->hdisplay = in->hdisplay;
1629 out->hsync_start = in->hsync_start;
1630 out->hsync_end = in->hsync_end;
1631 out->htotal = in->htotal;
1632 out->hskew = in->hskew;
1633 out->vdisplay = in->vdisplay;
1634 out->vsync_start = in->vsync_start;
1635 out->vsync_end = in->vsync_end;
1636 out->vtotal = in->vtotal;
1637 out->vscan = in->vscan;
1638 out->vrefresh = in->vrefresh;
1639 out->flags = in->flags;
1640 out->type = in->type;
1641 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1642 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1643}
1644
1645/**
Marc-André Lureau74afee72013-10-18 16:11:27 +02001646 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
Dave Airlief453ba02008-11-07 14:05:41 -08001647 * @out: drm_display_mode to return to the user
1648 * @in: drm_mode_modeinfo to use
1649 *
Dave Airlief453ba02008-11-07 14:05:41 -08001650 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1651 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001652 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001653 * Returns:
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001654 * Zero on success, errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001655 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001656static int drm_crtc_convert_umode(struct drm_display_mode *out,
1657 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001658{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001659 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1660 return -ERANGE;
1661
Damien Lespiau5848ad42013-09-27 12:11:50 +01001662 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1663 return -EINVAL;
1664
Dave Airlief453ba02008-11-07 14:05:41 -08001665 out->clock = in->clock;
1666 out->hdisplay = in->hdisplay;
1667 out->hsync_start = in->hsync_start;
1668 out->hsync_end = in->hsync_end;
1669 out->htotal = in->htotal;
1670 out->hskew = in->hskew;
1671 out->vdisplay = in->vdisplay;
1672 out->vsync_start = in->vsync_start;
1673 out->vsync_end = in->vsync_end;
1674 out->vtotal = in->vtotal;
1675 out->vscan = in->vscan;
1676 out->vrefresh = in->vrefresh;
1677 out->flags = in->flags;
1678 out->type = in->type;
1679 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1680 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001681
1682 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001683}
1684
1685/**
1686 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001687 * @dev: drm device for the ioctl
1688 * @data: data pointer for the ioctl
1689 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001690 *
Dave Airlief453ba02008-11-07 14:05:41 -08001691 * Construct a set of configuration description structures and return
1692 * them to the user, including CRTC, connector and framebuffer configuration.
1693 *
1694 * Called by the user via ioctl.
1695 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001696 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08001697 * Zero on success, errno on failure.
1698 */
1699int drm_mode_getresources(struct drm_device *dev, void *data,
1700 struct drm_file *file_priv)
1701{
1702 struct drm_mode_card_res *card_res = data;
1703 struct list_head *lh;
1704 struct drm_framebuffer *fb;
1705 struct drm_connector *connector;
1706 struct drm_crtc *crtc;
1707 struct drm_encoder *encoder;
1708 int ret = 0;
1709 int connector_count = 0;
1710 int crtc_count = 0;
1711 int fb_count = 0;
1712 int encoder_count = 0;
1713 int copied = 0, i;
1714 uint32_t __user *fb_id;
1715 uint32_t __user *crtc_id;
1716 uint32_t __user *connector_id;
1717 uint32_t __user *encoder_id;
1718 struct drm_mode_group *mode_group;
1719
Dave Airliefb3b06c2011-02-08 13:55:21 +10001720 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1721 return -EINVAL;
1722
Dave Airlief453ba02008-11-07 14:05:41 -08001723
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001724 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001725 /*
1726 * For the non-control nodes we need to limit the list of resources
1727 * by IDs in the group list for this node
1728 */
1729 list_for_each(lh, &file_priv->fbs)
1730 fb_count++;
1731
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001732 /* handle this in 4 parts */
1733 /* FBs */
1734 if (card_res->count_fbs >= fb_count) {
1735 copied = 0;
1736 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1737 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1738 if (put_user(fb->base.id, fb_id + copied)) {
1739 mutex_unlock(&file_priv->fbs_lock);
1740 return -EFAULT;
1741 }
1742 copied++;
1743 }
1744 }
1745 card_res->count_fbs = fb_count;
1746 mutex_unlock(&file_priv->fbs_lock);
1747
1748 drm_modeset_lock_all(dev);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001749 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001750
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001751 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001752 list_for_each(lh, &dev->mode_config.crtc_list)
1753 crtc_count++;
1754
1755 list_for_each(lh, &dev->mode_config.connector_list)
1756 connector_count++;
1757
1758 list_for_each(lh, &dev->mode_config.encoder_list)
1759 encoder_count++;
1760 } else {
1761
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001762 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001763 crtc_count = mode_group->num_crtcs;
1764 connector_count = mode_group->num_connectors;
1765 encoder_count = mode_group->num_encoders;
1766 }
1767
1768 card_res->max_height = dev->mode_config.max_height;
1769 card_res->min_height = dev->mode_config.min_height;
1770 card_res->max_width = dev->mode_config.max_width;
1771 card_res->min_width = dev->mode_config.min_width;
1772
Dave Airlief453ba02008-11-07 14:05:41 -08001773 /* CRTCs */
1774 if (card_res->count_crtcs >= crtc_count) {
1775 copied = 0;
1776 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001777 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001778 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1779 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001780 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001781 if (put_user(crtc->base.id, crtc_id + copied)) {
1782 ret = -EFAULT;
1783 goto out;
1784 }
1785 copied++;
1786 }
1787 } else {
1788 for (i = 0; i < mode_group->num_crtcs; i++) {
1789 if (put_user(mode_group->id_list[i],
1790 crtc_id + copied)) {
1791 ret = -EFAULT;
1792 goto out;
1793 }
1794 copied++;
1795 }
1796 }
1797 }
1798 card_res->count_crtcs = crtc_count;
1799
1800 /* Encoders */
1801 if (card_res->count_encoders >= encoder_count) {
1802 copied = 0;
1803 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001804 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001805 list_for_each_entry(encoder,
1806 &dev->mode_config.encoder_list,
1807 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001808 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001809 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001810 if (put_user(encoder->base.id, encoder_id +
1811 copied)) {
1812 ret = -EFAULT;
1813 goto out;
1814 }
1815 copied++;
1816 }
1817 } else {
1818 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1819 if (put_user(mode_group->id_list[i],
1820 encoder_id + copied)) {
1821 ret = -EFAULT;
1822 goto out;
1823 }
1824 copied++;
1825 }
1826
1827 }
1828 }
1829 card_res->count_encoders = encoder_count;
1830
1831 /* Connectors */
1832 if (card_res->count_connectors >= connector_count) {
1833 copied = 0;
1834 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001835 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001836 list_for_each_entry(connector,
1837 &dev->mode_config.connector_list,
1838 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001839 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1840 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001841 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001842 if (put_user(connector->base.id,
1843 connector_id + copied)) {
1844 ret = -EFAULT;
1845 goto out;
1846 }
1847 copied++;
1848 }
1849 } else {
1850 int start = mode_group->num_crtcs +
1851 mode_group->num_encoders;
1852 for (i = start; i < start + mode_group->num_connectors; i++) {
1853 if (put_user(mode_group->id_list[i],
1854 connector_id + copied)) {
1855 ret = -EFAULT;
1856 goto out;
1857 }
1858 copied++;
1859 }
1860 }
1861 }
1862 card_res->count_connectors = connector_count;
1863
Jerome Glisse94401062010-07-15 15:43:25 -04001864 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001865 card_res->count_connectors, card_res->count_encoders);
1866
1867out:
Daniel Vetter84849902012-12-02 00:28:11 +01001868 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001869 return ret;
1870}
1871
1872/**
1873 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001874 * @dev: drm device for the ioctl
1875 * @data: data pointer for the ioctl
1876 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001877 *
Dave Airlief453ba02008-11-07 14:05:41 -08001878 * Construct a CRTC configuration structure to return to the user.
1879 *
1880 * Called by the user via ioctl.
1881 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001882 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08001883 * Zero on success, errno on failure.
1884 */
1885int drm_mode_getcrtc(struct drm_device *dev,
1886 void *data, struct drm_file *file_priv)
1887{
1888 struct drm_mode_crtc *crtc_resp = data;
1889 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001890 int ret = 0;
1891
Dave Airliefb3b06c2011-02-08 13:55:21 +10001892 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1893 return -EINVAL;
1894
Daniel Vetter84849902012-12-02 00:28:11 +01001895 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001896
Rob Clarka2b34e22013-10-05 16:36:52 -04001897 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
1898 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03001899 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001900 goto out;
1901 }
Dave Airlief453ba02008-11-07 14:05:41 -08001902
1903 crtc_resp->x = crtc->x;
1904 crtc_resp->y = crtc->y;
1905 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07001906 if (crtc->primary->fb)
1907 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08001908 else
1909 crtc_resp->fb_id = 0;
1910
1911 if (crtc->enabled) {
1912
1913 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1914 crtc_resp->mode_valid = 1;
1915
1916 } else {
1917 crtc_resp->mode_valid = 0;
1918 }
1919
1920out:
Daniel Vetter84849902012-12-02 00:28:11 +01001921 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001922 return ret;
1923}
1924
Damien Lespiau61d8e322013-09-25 16:45:22 +01001925static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1926 const struct drm_file *file_priv)
1927{
1928 /*
1929 * If user-space hasn't configured the driver to expose the stereo 3D
1930 * modes, don't expose them.
1931 */
1932 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1933 return false;
1934
1935 return true;
1936}
1937
Dave Airlief453ba02008-11-07 14:05:41 -08001938/**
1939 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001940 * @dev: drm device for the ioctl
1941 * @data: data pointer for the ioctl
1942 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001943 *
Dave Airlief453ba02008-11-07 14:05:41 -08001944 * Construct a connector configuration structure to return to the user.
1945 *
1946 * Called by the user via ioctl.
1947 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001948 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08001949 * Zero on success, errno on failure.
1950 */
1951int drm_mode_getconnector(struct drm_device *dev, void *data,
1952 struct drm_file *file_priv)
1953{
1954 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08001955 struct drm_connector *connector;
1956 struct drm_display_mode *mode;
1957 int mode_count = 0;
1958 int props_count = 0;
1959 int encoders_count = 0;
1960 int ret = 0;
1961 int copied = 0;
1962 int i;
1963 struct drm_mode_modeinfo u_mode;
1964 struct drm_mode_modeinfo __user *mode_ptr;
1965 uint32_t __user *prop_ptr;
1966 uint64_t __user *prop_values;
1967 uint32_t __user *encoder_ptr;
1968
Dave Airliefb3b06c2011-02-08 13:55:21 +10001969 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1970 return -EINVAL;
1971
Dave Airlief453ba02008-11-07 14:05:41 -08001972 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1973
Jerome Glisse94401062010-07-15 15:43:25 -04001974 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08001975
Daniel Vetter7b240562012-12-12 00:35:33 +01001976 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001977
Rob Clarka2b34e22013-10-05 16:36:52 -04001978 connector = drm_connector_find(dev, out_resp->connector_id);
1979 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03001980 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001981 goto out;
1982 }
Dave Airlief453ba02008-11-07 14:05:41 -08001983
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001984 props_count = connector->properties.count;
Dave Airlief453ba02008-11-07 14:05:41 -08001985
1986 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1987 if (connector->encoder_ids[i] != 0) {
1988 encoders_count++;
1989 }
1990 }
1991
1992 if (out_resp->count_modes == 0) {
1993 connector->funcs->fill_modes(connector,
1994 dev->mode_config.max_width,
1995 dev->mode_config.max_height);
1996 }
1997
1998 /* delayed so we get modes regardless of pre-fill_modes state */
1999 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002000 if (drm_mode_expose_to_userspace(mode, file_priv))
2001 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002002
2003 out_resp->connector_id = connector->base.id;
2004 out_resp->connector_type = connector->connector_type;
2005 out_resp->connector_type_id = connector->connector_type_id;
2006 out_resp->mm_width = connector->display_info.width_mm;
2007 out_resp->mm_height = connector->display_info.height_mm;
2008 out_resp->subpixel = connector->display_info.subpixel_order;
2009 out_resp->connection = connector->status;
Daniel Vetter832fd392014-06-05 11:07:20 +02002010 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Dave Airlief453ba02008-11-07 14:05:41 -08002011 if (connector->encoder)
2012 out_resp->encoder_id = connector->encoder->base.id;
2013 else
2014 out_resp->encoder_id = 0;
Daniel Vetter832fd392014-06-05 11:07:20 +02002015 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002016
2017 /*
2018 * This ioctl is called twice, once to determine how much space is
2019 * needed, and the 2nd time to fill it.
2020 */
2021 if ((out_resp->count_modes >= mode_count) && mode_count) {
2022 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002023 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002024 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002025 if (!drm_mode_expose_to_userspace(mode, file_priv))
2026 continue;
2027
Dave Airlief453ba02008-11-07 14:05:41 -08002028 drm_crtc_convert_to_umode(&u_mode, mode);
2029 if (copy_to_user(mode_ptr + copied,
2030 &u_mode, sizeof(u_mode))) {
2031 ret = -EFAULT;
2032 goto out;
2033 }
2034 copied++;
2035 }
2036 }
2037 out_resp->count_modes = mode_count;
2038
2039 if ((out_resp->count_props >= props_count) && props_count) {
2040 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002041 prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
2042 prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002043 for (i = 0; i < connector->properties.count; i++) {
2044 if (put_user(connector->properties.ids[i],
2045 prop_ptr + copied)) {
2046 ret = -EFAULT;
2047 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002048 }
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002049
2050 if (put_user(connector->properties.values[i],
2051 prop_values + copied)) {
2052 ret = -EFAULT;
2053 goto out;
2054 }
2055 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08002056 }
2057 }
2058 out_resp->count_props = props_count;
2059
2060 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2061 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002062 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002063 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2064 if (connector->encoder_ids[i] != 0) {
2065 if (put_user(connector->encoder_ids[i],
2066 encoder_ptr + copied)) {
2067 ret = -EFAULT;
2068 goto out;
2069 }
2070 copied++;
2071 }
2072 }
2073 }
2074 out_resp->count_encoders = encoders_count;
2075
2076out:
Daniel Vetter7b240562012-12-12 00:35:33 +01002077 mutex_unlock(&dev->mode_config.mutex);
2078
Dave Airlief453ba02008-11-07 14:05:41 -08002079 return ret;
2080}
2081
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002082/**
2083 * drm_mode_getencoder - get encoder configuration
2084 * @dev: drm device for the ioctl
2085 * @data: data pointer for the ioctl
2086 * @file_priv: drm file for the ioctl call
2087 *
2088 * Construct a encoder configuration structure to return to the user.
2089 *
2090 * Called by the user via ioctl.
2091 *
2092 * Returns:
2093 * Zero on success, errno on failure.
2094 */
Dave Airlief453ba02008-11-07 14:05:41 -08002095int drm_mode_getencoder(struct drm_device *dev, void *data,
2096 struct drm_file *file_priv)
2097{
2098 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002099 struct drm_encoder *encoder;
2100 int ret = 0;
2101
Dave Airliefb3b06c2011-02-08 13:55:21 +10002102 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2103 return -EINVAL;
2104
Daniel Vetter84849902012-12-02 00:28:11 +01002105 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002106 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
2107 if (!encoder) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002108 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002109 goto out;
2110 }
Dave Airlief453ba02008-11-07 14:05:41 -08002111
2112 if (encoder->crtc)
2113 enc_resp->crtc_id = encoder->crtc->base.id;
2114 else
2115 enc_resp->crtc_id = 0;
2116 enc_resp->encoder_type = encoder->encoder_type;
2117 enc_resp->encoder_id = encoder->base.id;
2118 enc_resp->possible_crtcs = encoder->possible_crtcs;
2119 enc_resp->possible_clones = encoder->possible_clones;
2120
2121out:
Daniel Vetter84849902012-12-02 00:28:11 +01002122 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002123 return ret;
2124}
2125
2126/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002127 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002128 * @dev: DRM device
2129 * @data: ioctl data
2130 * @file_priv: DRM file info
2131 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002132 * Construct a list of plane ids to return to the user.
2133 *
2134 * Called by the user via ioctl.
2135 *
2136 * Returns:
2137 * Zero on success, errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002138 */
2139int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002140 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002141{
2142 struct drm_mode_get_plane_res *plane_resp = data;
2143 struct drm_mode_config *config;
2144 struct drm_plane *plane;
2145 uint32_t __user *plane_ptr;
2146 int copied = 0, ret = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002147 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002148
2149 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2150 return -EINVAL;
2151
Daniel Vetter84849902012-12-02 00:28:11 +01002152 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002153 config = &dev->mode_config;
2154
Matt Roper681e7ec2014-04-01 15:22:42 -07002155 if (file_priv->universal_planes)
2156 num_planes = config->num_total_plane;
2157 else
2158 num_planes = config->num_overlay_plane;
2159
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002160 /*
2161 * This ioctl is called twice, once to determine how much space is
2162 * needed, and the 2nd time to fill it.
2163 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002164 if (num_planes &&
2165 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002166 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002167
2168 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002169 /*
2170 * Unless userspace set the 'universal planes'
2171 * capability bit, only advertise overlays.
2172 */
2173 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2174 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002175 continue;
2176
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002177 if (put_user(plane->base.id, plane_ptr + copied)) {
2178 ret = -EFAULT;
2179 goto out;
2180 }
2181 copied++;
2182 }
2183 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002184 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002185
2186out:
Daniel Vetter84849902012-12-02 00:28:11 +01002187 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002188 return ret;
2189}
2190
2191/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002192 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002193 * @dev: DRM device
2194 * @data: ioctl data
2195 * @file_priv: DRM file info
2196 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002197 * Construct a plane configuration structure to return to the user.
2198 *
2199 * Called by the user via ioctl.
2200 *
2201 * Returns:
2202 * Zero on success, errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002203 */
2204int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002205 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002206{
2207 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002208 struct drm_plane *plane;
2209 uint32_t __user *format_ptr;
2210 int ret = 0;
2211
2212 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2213 return -EINVAL;
2214
Daniel Vetter84849902012-12-02 00:28:11 +01002215 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002216 plane = drm_plane_find(dev, plane_resp->plane_id);
2217 if (!plane) {
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002218 ret = -ENOENT;
2219 goto out;
2220 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002221
2222 if (plane->crtc)
2223 plane_resp->crtc_id = plane->crtc->base.id;
2224 else
2225 plane_resp->crtc_id = 0;
2226
2227 if (plane->fb)
2228 plane_resp->fb_id = plane->fb->base.id;
2229 else
2230 plane_resp->fb_id = 0;
2231
2232 plane_resp->plane_id = plane->base.id;
2233 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002234 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002235
2236 /*
2237 * This ioctl is called twice, once to determine how much space is
2238 * needed, and the 2nd time to fill it.
2239 */
2240 if (plane->format_count &&
2241 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002242 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002243 if (copy_to_user(format_ptr,
2244 plane->format_types,
2245 sizeof(uint32_t) * plane->format_count)) {
2246 ret = -EFAULT;
2247 goto out;
2248 }
2249 }
2250 plane_resp->count_format_types = plane->format_count;
2251
2252out:
Daniel Vetter84849902012-12-02 00:28:11 +01002253 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002254 return ret;
2255}
2256
Matt Roperb36552b2014-06-10 08:28:09 -07002257/*
2258 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002259 *
Matt Roperb36552b2014-06-10 08:28:09 -07002260 * Note that we assume an extra reference has already been taken on fb. If the
2261 * update fails, this reference will be dropped before return; if it succeeds,
2262 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002263 *
Matt Roperb36552b2014-06-10 08:28:09 -07002264 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002265 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002266static int __setplane_internal(struct drm_plane *plane,
2267 struct drm_crtc *crtc,
2268 struct drm_framebuffer *fb,
2269 int32_t crtc_x, int32_t crtc_y,
2270 uint32_t crtc_w, uint32_t crtc_h,
2271 /* src_{x,y,w,h} values are 16.16 fixed point */
2272 uint32_t src_x, uint32_t src_y,
2273 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002274{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002275 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002276 unsigned int fb_width, fb_height;
Ville Syrjälä62443be2011-12-20 00:06:47 +02002277 int i;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002278
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002279 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002280 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002281 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002282 ret = plane->funcs->disable_plane(plane);
2283 if (!ret) {
2284 plane->crtc = NULL;
2285 plane->fb = NULL;
2286 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002287 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002288 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002289 goto out;
2290 }
2291
Matt Roper7f994f32014-05-29 08:06:51 -07002292 /* Check whether this plane is usable on this CRTC */
2293 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2294 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2295 ret = -EINVAL;
2296 goto out;
2297 }
2298
Ville Syrjälä62443be2011-12-20 00:06:47 +02002299 /* Check whether this plane supports the fb pixel format. */
2300 for (i = 0; i < plane->format_count; i++)
2301 if (fb->pixel_format == plane->format_types[i])
2302 break;
2303 if (i == plane->format_count) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002304 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2305 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002306 ret = -EINVAL;
2307 goto out;
2308 }
2309
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002310 fb_width = fb->width << 16;
2311 fb_height = fb->height << 16;
2312
2313 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002314 if (src_w > fb_width ||
2315 src_x > fb_width - src_w ||
2316 src_h > fb_height ||
2317 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002318 DRM_DEBUG_KMS("Invalid source coordinates "
2319 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002320 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2321 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2322 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2323 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002324 ret = -ENOSPC;
2325 goto out;
2326 }
2327
Daniel Vetter3d30a592014-07-27 13:42:42 +02002328 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002329 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002330 crtc_x, crtc_y, crtc_w, crtc_h,
2331 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002332 if (!ret) {
2333 plane->crtc = crtc;
2334 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002335 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002336 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002337 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002338 }
2339
2340out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002341 if (fb)
2342 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002343 if (plane->old_fb)
2344 drm_framebuffer_unreference(plane->old_fb);
2345 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002346
2347 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002348}
Matt Roperb36552b2014-06-10 08:28:09 -07002349
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002350static int setplane_internal(struct drm_plane *plane,
2351 struct drm_crtc *crtc,
2352 struct drm_framebuffer *fb,
2353 int32_t crtc_x, int32_t crtc_y,
2354 uint32_t crtc_w, uint32_t crtc_h,
2355 /* src_{x,y,w,h} values are 16.16 fixed point */
2356 uint32_t src_x, uint32_t src_y,
2357 uint32_t src_w, uint32_t src_h)
2358{
2359 int ret;
2360
2361 drm_modeset_lock_all(plane->dev);
2362 ret = __setplane_internal(plane, crtc, fb,
2363 crtc_x, crtc_y, crtc_w, crtc_h,
2364 src_x, src_y, src_w, src_h);
2365 drm_modeset_unlock_all(plane->dev);
2366
2367 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002368}
2369
2370/**
2371 * drm_mode_setplane - configure a plane's configuration
2372 * @dev: DRM device
2373 * @data: ioctl data*
2374 * @file_priv: DRM file info
2375 *
2376 * Set plane configuration, including placement, fb, scaling, and other factors.
2377 * Or pass a NULL fb to disable (planes may be disabled without providing a
2378 * valid crtc).
2379 *
2380 * Returns:
2381 * Zero on success, errno on failure.
2382 */
2383int drm_mode_setplane(struct drm_device *dev, void *data,
2384 struct drm_file *file_priv)
2385{
2386 struct drm_mode_set_plane *plane_req = data;
2387 struct drm_mode_object *obj;
2388 struct drm_plane *plane;
2389 struct drm_crtc *crtc = NULL;
2390 struct drm_framebuffer *fb = NULL;
2391
2392 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2393 return -EINVAL;
2394
2395 /* Give drivers some help against integer overflows */
2396 if (plane_req->crtc_w > INT_MAX ||
2397 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2398 plane_req->crtc_h > INT_MAX ||
2399 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2400 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2401 plane_req->crtc_w, plane_req->crtc_h,
2402 plane_req->crtc_x, plane_req->crtc_y);
2403 return -ERANGE;
2404 }
2405
2406 /*
2407 * First, find the plane, crtc, and fb objects. If not available,
2408 * we don't bother to call the driver.
2409 */
2410 obj = drm_mode_object_find(dev, plane_req->plane_id,
2411 DRM_MODE_OBJECT_PLANE);
2412 if (!obj) {
2413 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2414 plane_req->plane_id);
2415 return -ENOENT;
2416 }
2417 plane = obj_to_plane(obj);
2418
2419 if (plane_req->fb_id) {
2420 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2421 if (!fb) {
2422 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2423 plane_req->fb_id);
2424 return -ENOENT;
2425 }
2426
2427 obj = drm_mode_object_find(dev, plane_req->crtc_id,
2428 DRM_MODE_OBJECT_CRTC);
2429 if (!obj) {
2430 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2431 plane_req->crtc_id);
2432 return -ENOENT;
2433 }
2434 crtc = obj_to_crtc(obj);
2435 }
2436
Matt Roper161d0dc2014-06-10 08:28:10 -07002437 /*
2438 * setplane_internal will take care of deref'ing either the old or new
2439 * framebuffer depending on success.
2440 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002441 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002442 plane_req->crtc_x, plane_req->crtc_y,
2443 plane_req->crtc_w, plane_req->crtc_h,
2444 plane_req->src_x, plane_req->src_y,
2445 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002446}
2447
2448/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002449 * drm_mode_set_config_internal - helper to call ->set_config
2450 * @set: modeset config to set
2451 *
2452 * This is a little helper to wrap internal calls to the ->set_config driver
2453 * interface. The only thing it adds is correct refcounting dance.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002454 *
2455 * Returns:
2456 * Zero on success, errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002457 */
2458int drm_mode_set_config_internal(struct drm_mode_set *set)
2459{
2460 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002461 struct drm_framebuffer *fb;
2462 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002463 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002464
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002465 /*
2466 * NOTE: ->set_config can also disable other crtcs (if we steal all
2467 * connectors from it), hence we need to refcount the fbs across all
2468 * crtcs. Atomic modeset will have saner semantics ...
2469 */
2470 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002471 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002472
Daniel Vetterb0d12322012-12-11 01:07:12 +01002473 fb = set->fb;
2474
2475 ret = crtc->funcs->set_config(set);
2476 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002477 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002478 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002479 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002480
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002481 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002482 if (tmp->primary->fb)
2483 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002484 if (tmp->primary->old_fb)
2485 drm_framebuffer_unreference(tmp->primary->old_fb);
2486 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002487 }
2488
2489 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002490}
2491EXPORT_SYMBOL(drm_mode_set_config_internal);
2492
Matt Roperaf936292014-04-01 15:22:34 -07002493/**
2494 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2495 * CRTC viewport
2496 * @crtc: CRTC that framebuffer will be displayed on
2497 * @x: x panning
2498 * @y: y panning
2499 * @mode: mode that framebuffer will be displayed under
2500 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002501 */
Matt Roperaf936292014-04-01 15:22:34 -07002502int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2503 int x, int y,
2504 const struct drm_display_mode *mode,
2505 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002506
2507{
2508 int hdisplay, vdisplay;
2509
2510 hdisplay = mode->hdisplay;
2511 vdisplay = mode->vdisplay;
2512
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002513 if (drm_mode_is_stereo(mode)) {
2514 struct drm_display_mode adjusted = *mode;
2515
2516 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE);
2517 hdisplay = adjusted.crtc_hdisplay;
2518 vdisplay = adjusted.crtc_vdisplay;
2519 }
2520
Damien Lespiauc11e9282013-09-25 16:45:30 +01002521 if (crtc->invert_dimensions)
2522 swap(hdisplay, vdisplay);
2523
2524 if (hdisplay > fb->width ||
2525 vdisplay > fb->height ||
2526 x > fb->width - hdisplay ||
2527 y > fb->height - vdisplay) {
2528 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2529 fb->width, fb->height, hdisplay, vdisplay, x, y,
2530 crtc->invert_dimensions ? " (inverted)" : "");
2531 return -ENOSPC;
2532 }
2533
2534 return 0;
2535}
Matt Roperaf936292014-04-01 15:22:34 -07002536EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002537
Daniel Vetter2d13b672012-12-11 13:47:23 +01002538/**
Dave Airlief453ba02008-11-07 14:05:41 -08002539 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002540 * @dev: drm device for the ioctl
2541 * @data: data pointer for the ioctl
2542 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002543 *
Dave Airlief453ba02008-11-07 14:05:41 -08002544 * Build a new CRTC configuration based on user request.
2545 *
2546 * Called by the user via ioctl.
2547 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002548 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08002549 * Zero on success, errno on failure.
2550 */
2551int drm_mode_setcrtc(struct drm_device *dev, void *data,
2552 struct drm_file *file_priv)
2553{
2554 struct drm_mode_config *config = &dev->mode_config;
2555 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002556 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002557 struct drm_connector **connector_set = NULL, *connector;
2558 struct drm_framebuffer *fb = NULL;
2559 struct drm_display_mode *mode = NULL;
2560 struct drm_mode_set set;
2561 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002562 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002563 int i;
2564
Dave Airliefb3b06c2011-02-08 13:55:21 +10002565 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2566 return -EINVAL;
2567
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002568 /* For some reason crtc x/y offsets are signed internally. */
2569 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2570 return -ERANGE;
2571
Daniel Vetter84849902012-12-02 00:28:11 +01002572 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002573 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2574 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002575 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002576 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002577 goto out;
2578 }
Jerome Glisse94401062010-07-15 15:43:25 -04002579 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002580
2581 if (crtc_req->mode_valid) {
2582 /* If we have a mode we need a framebuffer. */
2583 /* If we pass -1, set the mode with the currently bound fb */
2584 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002585 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002586 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2587 ret = -EINVAL;
2588 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002589 }
Matt Roperf4510a22014-04-01 15:22:40 -07002590 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002591 /* Make refcounting symmetric with the lookup path. */
2592 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002593 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002594 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2595 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002596 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2597 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002598 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002599 goto out;
2600 }
Dave Airlief453ba02008-11-07 14:05:41 -08002601 }
2602
2603 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002604 if (!mode) {
2605 ret = -ENOMEM;
2606 goto out;
2607 }
2608
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002609 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2610 if (ret) {
2611 DRM_DEBUG_KMS("Invalid mode\n");
2612 goto out;
2613 }
2614
Dave Airlief453ba02008-11-07 14:05:41 -08002615 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002616
Damien Lespiauc11e9282013-09-25 16:45:30 +01002617 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2618 mode, fb);
2619 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002620 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002621
Dave Airlief453ba02008-11-07 14:05:41 -08002622 }
2623
2624 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002625 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002626 ret = -EINVAL;
2627 goto out;
2628 }
2629
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002630 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002631 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002632 crtc_req->count_connectors);
2633 ret = -EINVAL;
2634 goto out;
2635 }
2636
2637 if (crtc_req->count_connectors > 0) {
2638 u32 out_id;
2639
2640 /* Avoid unbounded kernel memory allocation */
2641 if (crtc_req->count_connectors > config->num_connector) {
2642 ret = -EINVAL;
2643 goto out;
2644 }
2645
2646 connector_set = kmalloc(crtc_req->count_connectors *
2647 sizeof(struct drm_connector *),
2648 GFP_KERNEL);
2649 if (!connector_set) {
2650 ret = -ENOMEM;
2651 goto out;
2652 }
2653
2654 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002655 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002656 if (get_user(out_id, &set_connectors_ptr[i])) {
2657 ret = -EFAULT;
2658 goto out;
2659 }
2660
Rob Clarka2b34e22013-10-05 16:36:52 -04002661 connector = drm_connector_find(dev, out_id);
2662 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002663 DRM_DEBUG_KMS("Connector id %d unknown\n",
2664 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002665 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002666 goto out;
2667 }
Jerome Glisse94401062010-07-15 15:43:25 -04002668 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2669 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002670 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002671
2672 connector_set[i] = connector;
2673 }
2674 }
2675
2676 set.crtc = crtc;
2677 set.x = crtc_req->x;
2678 set.y = crtc_req->y;
2679 set.mode = mode;
2680 set.connectors = connector_set;
2681 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002682 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002683 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002684
2685out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002686 if (fb)
2687 drm_framebuffer_unreference(fb);
2688
Dave Airlief453ba02008-11-07 14:05:41 -08002689 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002690 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002691 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002692 return ret;
2693}
2694
Matt Roper161d0dc2014-06-10 08:28:10 -07002695/**
2696 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2697 * universal plane handler call
2698 * @crtc: crtc to update cursor for
2699 * @req: data pointer for the ioctl
2700 * @file_priv: drm file for the ioctl call
2701 *
2702 * Legacy cursor ioctl's work directly with driver buffer handles. To
2703 * translate legacy ioctl calls into universal plane handler calls, we need to
2704 * wrap the native buffer handle in a drm_framebuffer.
2705 *
2706 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2707 * buffer with a pitch of 4*width; the universal plane interface should be used
2708 * directly in cases where the hardware can support other buffer settings and
2709 * userspace wants to make use of these capabilities.
2710 *
2711 * Returns:
2712 * Zero on success, errno on failure.
2713 */
2714static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2715 struct drm_mode_cursor2 *req,
2716 struct drm_file *file_priv)
2717{
2718 struct drm_device *dev = crtc->dev;
2719 struct drm_framebuffer *fb = NULL;
2720 struct drm_mode_fb_cmd2 fbreq = {
2721 .width = req->width,
2722 .height = req->height,
2723 .pixel_format = DRM_FORMAT_ARGB8888,
2724 .pitches = { req->width * 4 },
2725 .handles = { req->handle },
2726 };
2727 int32_t crtc_x, crtc_y;
2728 uint32_t crtc_w = 0, crtc_h = 0;
2729 uint32_t src_w = 0, src_h = 0;
2730 int ret = 0;
2731
2732 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002733 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002734
2735 /*
2736 * Obtain fb we'll be using (either new or existing) and take an extra
2737 * reference to it if fb != null. setplane will take care of dropping
2738 * the reference if the plane update fails.
2739 */
2740 if (req->flags & DRM_MODE_CURSOR_BO) {
2741 if (req->handle) {
2742 fb = add_framebuffer_internal(dev, &fbreq, file_priv);
2743 if (IS_ERR(fb)) {
2744 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2745 return PTR_ERR(fb);
2746 }
2747
2748 drm_framebuffer_reference(fb);
2749 } else {
2750 fb = NULL;
2751 }
2752 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002753 fb = crtc->cursor->fb;
2754 if (fb)
2755 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002756 }
2757
2758 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2759 crtc_x = req->x;
2760 crtc_y = req->y;
2761 } else {
2762 crtc_x = crtc->cursor_x;
2763 crtc_y = crtc->cursor_y;
2764 }
2765
2766 if (fb) {
2767 crtc_w = fb->width;
2768 crtc_h = fb->height;
2769 src_w = fb->width << 16;
2770 src_h = fb->height << 16;
2771 }
2772
2773 /*
2774 * setplane_internal will take care of deref'ing either the old or new
2775 * framebuffer depending on success.
2776 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002777 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002778 crtc_x, crtc_y, crtc_w, crtc_h,
2779 0, 0, src_w, src_h);
2780
2781 /* Update successful; save new cursor position, if necessary */
2782 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2783 crtc->cursor_x = req->x;
2784 crtc->cursor_y = req->y;
2785 }
2786
2787 return ret;
2788}
2789
Dave Airlie4c813d42013-06-20 11:48:52 +10002790static int drm_mode_cursor_common(struct drm_device *dev,
2791 struct drm_mode_cursor2 *req,
2792 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002793{
Dave Airlief453ba02008-11-07 14:05:41 -08002794 struct drm_crtc *crtc;
2795 int ret = 0;
2796
Dave Airliefb3b06c2011-02-08 13:55:21 +10002797 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2798 return -EINVAL;
2799
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002800 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002801 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002802
Rob Clarka2b34e22013-10-05 16:36:52 -04002803 crtc = drm_crtc_find(dev, req->crtc_id);
2804 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002805 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002806 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002807 }
Dave Airlief453ba02008-11-07 14:05:41 -08002808
Matt Roper161d0dc2014-06-10 08:28:10 -07002809 /*
2810 * If this crtc has a universal cursor plane, call that plane's update
2811 * handler rather than using legacy cursor handlers.
2812 */
Daniel Vetterd059f652014-07-25 18:07:40 +02002813 drm_modeset_lock_crtc(crtc);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002814 if (crtc->cursor) {
2815 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2816 goto out;
2817 }
2818
Dave Airlief453ba02008-11-07 14:05:41 -08002819 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002820 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002821 ret = -ENXIO;
2822 goto out;
2823 }
2824 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002825 if (crtc->funcs->cursor_set2)
2826 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2827 req->width, req->height, req->hot_x, req->hot_y);
2828 else
2829 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2830 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002831 }
2832
2833 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2834 if (crtc->funcs->cursor_move) {
2835 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2836 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002837 ret = -EFAULT;
2838 goto out;
2839 }
2840 }
2841out:
Daniel Vetterd059f652014-07-25 18:07:40 +02002842 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01002843
Dave Airlief453ba02008-11-07 14:05:41 -08002844 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10002845
2846}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002847
2848
2849/**
2850 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2851 * @dev: drm device for the ioctl
2852 * @data: data pointer for the ioctl
2853 * @file_priv: drm file for the ioctl call
2854 *
2855 * Set the cursor configuration based on user request.
2856 *
2857 * Called by the user via ioctl.
2858 *
2859 * Returns:
2860 * Zero on success, errno on failure.
2861 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002862int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002863 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10002864{
2865 struct drm_mode_cursor *req = data;
2866 struct drm_mode_cursor2 new_req;
2867
2868 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
2869 new_req.hot_x = new_req.hot_y = 0;
2870
2871 return drm_mode_cursor_common(dev, &new_req, file_priv);
2872}
2873
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002874/**
2875 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
2876 * @dev: drm device for the ioctl
2877 * @data: data pointer for the ioctl
2878 * @file_priv: drm file for the ioctl call
2879 *
2880 * Set the cursor configuration based on user request. This implements the 2nd
2881 * version of the cursor ioctl, which allows userspace to additionally specify
2882 * the hotspot of the pointer.
2883 *
2884 * Called by the user via ioctl.
2885 *
2886 * Returns:
2887 * Zero on success, errno on failure.
2888 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002889int drm_mode_cursor2_ioctl(struct drm_device *dev,
2890 void *data, struct drm_file *file_priv)
2891{
2892 struct drm_mode_cursor2 *req = data;
2893 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08002894}
2895
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002896/**
2897 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
2898 * @bpp: bits per pixels
2899 * @depth: bit depth per pixel
2900 *
2901 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
2902 * Useful in fbdev emulation code, since that deals in those values.
2903 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002904uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2905{
2906 uint32_t fmt;
2907
2908 switch (bpp) {
2909 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02002910 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002911 break;
2912 case 16:
2913 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002914 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002915 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002916 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002917 break;
2918 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002919 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002920 break;
2921 case 32:
2922 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002923 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002924 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002925 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002926 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002927 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002928 break;
2929 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002930 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2931 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002932 break;
2933 }
2934
2935 return fmt;
2936}
2937EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2938
Dave Airlief453ba02008-11-07 14:05:41 -08002939/**
2940 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002941 * @dev: drm device for the ioctl
2942 * @data: data pointer for the ioctl
2943 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002944 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002945 * Add a new FB to the specified CRTC, given a user request. This is the
2946 * original addfb ioclt which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08002947 *
2948 * Called by the user via ioctl.
2949 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002950 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08002951 * Zero on success, errno on failure.
2952 */
2953int drm_mode_addfb(struct drm_device *dev,
2954 void *data, struct drm_file *file_priv)
2955{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002956 struct drm_mode_fb_cmd *or = data;
2957 struct drm_mode_fb_cmd2 r = {};
2958 struct drm_mode_config *config = &dev->mode_config;
2959 struct drm_framebuffer *fb;
2960 int ret = 0;
2961
2962 /* Use new struct with format internally */
2963 r.fb_id = or->fb_id;
2964 r.width = or->width;
2965 r.height = or->height;
2966 r.pitches[0] = or->pitch;
2967 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
2968 r.handles[0] = or->handle;
2969
2970 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2971 return -EINVAL;
2972
Jesse Barnesacb4b992011-11-07 12:03:23 -08002973 if ((config->min_width > r.width) || (r.width > config->max_width))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002974 return -EINVAL;
Jesse Barnesacb4b992011-11-07 12:03:23 -08002975
2976 if ((config->min_height > r.height) || (r.height > config->max_height))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002977 return -EINVAL;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002978
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002979 fb = dev->mode_config.funcs->fb_create(dev, file_priv, &r);
2980 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002981 DRM_DEBUG_KMS("could not create framebuffer\n");
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002982 return PTR_ERR(fb);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002983 }
2984
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002985 mutex_lock(&file_priv->fbs_lock);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002986 or->fb_id = fb->base.id;
2987 list_add(&fb->filp_head, &file_priv->fbs);
2988 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002989 mutex_unlock(&file_priv->fbs_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002990
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002991 return ret;
2992}
2993
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002994static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02002995{
2996 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
2997
2998 switch (format) {
2999 case DRM_FORMAT_C8:
3000 case DRM_FORMAT_RGB332:
3001 case DRM_FORMAT_BGR233:
3002 case DRM_FORMAT_XRGB4444:
3003 case DRM_FORMAT_XBGR4444:
3004 case DRM_FORMAT_RGBX4444:
3005 case DRM_FORMAT_BGRX4444:
3006 case DRM_FORMAT_ARGB4444:
3007 case DRM_FORMAT_ABGR4444:
3008 case DRM_FORMAT_RGBA4444:
3009 case DRM_FORMAT_BGRA4444:
3010 case DRM_FORMAT_XRGB1555:
3011 case DRM_FORMAT_XBGR1555:
3012 case DRM_FORMAT_RGBX5551:
3013 case DRM_FORMAT_BGRX5551:
3014 case DRM_FORMAT_ARGB1555:
3015 case DRM_FORMAT_ABGR1555:
3016 case DRM_FORMAT_RGBA5551:
3017 case DRM_FORMAT_BGRA5551:
3018 case DRM_FORMAT_RGB565:
3019 case DRM_FORMAT_BGR565:
3020 case DRM_FORMAT_RGB888:
3021 case DRM_FORMAT_BGR888:
3022 case DRM_FORMAT_XRGB8888:
3023 case DRM_FORMAT_XBGR8888:
3024 case DRM_FORMAT_RGBX8888:
3025 case DRM_FORMAT_BGRX8888:
3026 case DRM_FORMAT_ARGB8888:
3027 case DRM_FORMAT_ABGR8888:
3028 case DRM_FORMAT_RGBA8888:
3029 case DRM_FORMAT_BGRA8888:
3030 case DRM_FORMAT_XRGB2101010:
3031 case DRM_FORMAT_XBGR2101010:
3032 case DRM_FORMAT_RGBX1010102:
3033 case DRM_FORMAT_BGRX1010102:
3034 case DRM_FORMAT_ARGB2101010:
3035 case DRM_FORMAT_ABGR2101010:
3036 case DRM_FORMAT_RGBA1010102:
3037 case DRM_FORMAT_BGRA1010102:
3038 case DRM_FORMAT_YUYV:
3039 case DRM_FORMAT_YVYU:
3040 case DRM_FORMAT_UYVY:
3041 case DRM_FORMAT_VYUY:
3042 case DRM_FORMAT_AYUV:
3043 case DRM_FORMAT_NV12:
3044 case DRM_FORMAT_NV21:
3045 case DRM_FORMAT_NV16:
3046 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003047 case DRM_FORMAT_NV24:
3048 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003049 case DRM_FORMAT_YUV410:
3050 case DRM_FORMAT_YVU410:
3051 case DRM_FORMAT_YUV411:
3052 case DRM_FORMAT_YVU411:
3053 case DRM_FORMAT_YUV420:
3054 case DRM_FORMAT_YVU420:
3055 case DRM_FORMAT_YUV422:
3056 case DRM_FORMAT_YVU422:
3057 case DRM_FORMAT_YUV444:
3058 case DRM_FORMAT_YVU444:
3059 return 0;
3060 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003061 DRM_DEBUG_KMS("invalid pixel format %s\n",
3062 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003063 return -EINVAL;
3064 }
3065}
3066
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003067static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003068{
3069 int ret, hsub, vsub, num_planes, i;
3070
3071 ret = format_check(r);
3072 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003073 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3074 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003075 return ret;
3076 }
3077
3078 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3079 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3080 num_planes = drm_format_num_planes(r->pixel_format);
3081
3082 if (r->width == 0 || r->width % hsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003083 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003084 return -EINVAL;
3085 }
3086
3087 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003088 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003089 return -EINVAL;
3090 }
3091
3092 for (i = 0; i < num_planes; i++) {
3093 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003094 unsigned int height = r->height / (i != 0 ? vsub : 1);
3095 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003096
3097 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003098 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003099 return -EINVAL;
3100 }
3101
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003102 if ((uint64_t) width * cpp > UINT_MAX)
3103 return -ERANGE;
3104
3105 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3106 return -ERANGE;
3107
3108 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003109 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003110 return -EINVAL;
3111 }
3112 }
3113
3114 return 0;
3115}
3116
Matt Roperc394c2b2014-06-10 08:28:08 -07003117static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
3118 struct drm_mode_fb_cmd2 *r,
3119 struct drm_file *file_priv)
3120{
3121 struct drm_mode_config *config = &dev->mode_config;
3122 struct drm_framebuffer *fb;
3123 int ret;
3124
3125 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
3126 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3127 return ERR_PTR(-EINVAL);
3128 }
3129
3130 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3131 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3132 r->width, config->min_width, config->max_width);
3133 return ERR_PTR(-EINVAL);
3134 }
3135 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3136 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3137 r->height, config->min_height, config->max_height);
3138 return ERR_PTR(-EINVAL);
3139 }
3140
3141 ret = framebuffer_check(r);
3142 if (ret)
3143 return ERR_PTR(ret);
3144
3145 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3146 if (IS_ERR(fb)) {
3147 DRM_DEBUG_KMS("could not create framebuffer\n");
3148 return fb;
3149 }
3150
3151 mutex_lock(&file_priv->fbs_lock);
3152 r->fb_id = fb->base.id;
3153 list_add(&fb->filp_head, &file_priv->fbs);
3154 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3155 mutex_unlock(&file_priv->fbs_lock);
3156
3157 return fb;
3158}
3159
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003160/**
3161 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003162 * @dev: drm device for the ioctl
3163 * @data: data pointer for the ioctl
3164 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003165 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003166 * Add a new FB to the specified CRTC, given a user request with format. This is
3167 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3168 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003169 *
3170 * Called by the user via ioctl.
3171 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003172 * Returns:
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003173 * Zero on success, errno on failure.
3174 */
3175int drm_mode_addfb2(struct drm_device *dev,
3176 void *data, struct drm_file *file_priv)
3177{
Dave Airlief453ba02008-11-07 14:05:41 -08003178 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003179
Dave Airliefb3b06c2011-02-08 13:55:21 +10003180 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3181 return -EINVAL;
3182
Matt Roperc394c2b2014-06-10 08:28:08 -07003183 fb = add_framebuffer_internal(dev, data, file_priv);
3184 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003185 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003186
Matt Roperc394c2b2014-06-10 08:28:08 -07003187 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003188}
3189
3190/**
3191 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003192 * @dev: drm device for the ioctl
3193 * @data: data pointer for the ioctl
3194 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003195 *
Dave Airlief453ba02008-11-07 14:05:41 -08003196 * Remove the FB specified by the user.
3197 *
3198 * Called by the user via ioctl.
3199 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003200 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08003201 * Zero on success, errno on failure.
3202 */
3203int drm_mode_rmfb(struct drm_device *dev,
3204 void *data, struct drm_file *file_priv)
3205{
Dave Airlief453ba02008-11-07 14:05:41 -08003206 struct drm_framebuffer *fb = NULL;
3207 struct drm_framebuffer *fbl = NULL;
3208 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003209 int found = 0;
3210
Dave Airliefb3b06c2011-02-08 13:55:21 +10003211 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3212 return -EINVAL;
3213
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003214 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003215 mutex_lock(&dev->mode_config.fb_lock);
3216 fb = __drm_framebuffer_lookup(dev, *id);
3217 if (!fb)
3218 goto fail_lookup;
3219
Dave Airlief453ba02008-11-07 14:05:41 -08003220 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3221 if (fb == fbl)
3222 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003223 if (!found)
3224 goto fail_lookup;
3225
3226 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3227 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003228
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003229 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003230 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003231 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003232
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003233 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003234
Daniel Vetter2b677e82012-12-10 21:16:05 +01003235 return 0;
3236
3237fail_lookup:
3238 mutex_unlock(&dev->mode_config.fb_lock);
3239 mutex_unlock(&file_priv->fbs_lock);
3240
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003241 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003242}
3243
3244/**
3245 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003246 * @dev: drm device for the ioctl
3247 * @data: data pointer for the ioctl
3248 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003249 *
Dave Airlief453ba02008-11-07 14:05:41 -08003250 * Lookup the FB given its ID and return info about it.
3251 *
3252 * Called by the user via ioctl.
3253 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003254 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08003255 * Zero on success, errno on failure.
3256 */
3257int drm_mode_getfb(struct drm_device *dev,
3258 void *data, struct drm_file *file_priv)
3259{
3260 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003261 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003262 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003263
Dave Airliefb3b06c2011-02-08 13:55:21 +10003264 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3265 return -EINVAL;
3266
Daniel Vetter786b99e2012-12-02 21:53:40 +01003267 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003268 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003269 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003270
3271 r->height = fb->height;
3272 r->width = fb->width;
3273 r->depth = fb->depth;
3274 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003275 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003276 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003277 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003278 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003279 ret = fb->funcs->create_handle(fb, file_priv,
3280 &r->handle);
3281 } else {
3282 /* GET_FB() is an unprivileged ioctl so we must not
3283 * return a buffer-handle to non-master processes! For
3284 * backwards-compatibility reasons, we cannot make
3285 * GET_FB() privileged, so just return an invalid handle
3286 * for non-masters. */
3287 r->handle = 0;
3288 ret = 0;
3289 }
3290 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003291 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003292 }
Dave Airlief453ba02008-11-07 14:05:41 -08003293
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003294 drm_framebuffer_unreference(fb);
3295
Dave Airlief453ba02008-11-07 14:05:41 -08003296 return ret;
3297}
3298
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003299/**
3300 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3301 * @dev: drm device for the ioctl
3302 * @data: data pointer for the ioctl
3303 * @file_priv: drm file for the ioctl call
3304 *
3305 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3306 * rectangle list. Generic userspace which does frontbuffer rendering must call
3307 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3308 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3309 *
3310 * Modesetting drivers which always update the frontbuffer do not need to
3311 * implement the corresponding ->dirty framebuffer callback.
3312 *
3313 * Called by the user via ioctl.
3314 *
3315 * Returns:
3316 * Zero on success, errno on failure.
3317 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003318int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3319 void *data, struct drm_file *file_priv)
3320{
3321 struct drm_clip_rect __user *clips_ptr;
3322 struct drm_clip_rect *clips = NULL;
3323 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003324 struct drm_framebuffer *fb;
3325 unsigned flags;
3326 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003327 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003328
Dave Airliefb3b06c2011-02-08 13:55:21 +10003329 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3330 return -EINVAL;
3331
Daniel Vetter786b99e2012-12-02 21:53:40 +01003332 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003333 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003334 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003335
3336 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003337 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003338
3339 if (!num_clips != !clips_ptr) {
3340 ret = -EINVAL;
3341 goto out_err1;
3342 }
3343
3344 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3345
3346 /* If userspace annotates copy, clips must come in pairs */
3347 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3348 ret = -EINVAL;
3349 goto out_err1;
3350 }
3351
3352 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003353 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3354 ret = -EINVAL;
3355 goto out_err1;
3356 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003357 clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
3358 if (!clips) {
3359 ret = -ENOMEM;
3360 goto out_err1;
3361 }
3362
3363 ret = copy_from_user(clips, clips_ptr,
3364 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003365 if (ret) {
3366 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003367 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003368 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003369 }
3370
3371 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003372 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3373 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003374 } else {
3375 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003376 }
3377
3378out_err2:
3379 kfree(clips);
3380out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003381 drm_framebuffer_unreference(fb);
3382
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003383 return ret;
3384}
3385
3386
Dave Airlief453ba02008-11-07 14:05:41 -08003387/**
3388 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003389 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003390 *
Dave Airlief453ba02008-11-07 14:05:41 -08003391 * Destroy all the FBs associated with @filp.
3392 *
3393 * Called by the user via ioctl.
3394 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003395 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08003396 * Zero on success, errno on failure.
3397 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003398void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003399{
Dave Airlief453ba02008-11-07 14:05:41 -08003400 struct drm_device *dev = priv->minor->dev;
3401 struct drm_framebuffer *fb, *tfb;
3402
Daniel Vetter1b116292014-09-24 21:51:06 +02003403 /*
3404 * When the file gets released that means no one else can access the fb
3405 * list any more, so no need to grab fpriv->fbs_lock. And we need to to
3406 * avoid upsetting lockdep since the universal cursor code adds a
3407 * framebuffer while holding mutex locks.
3408 *
3409 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3410 * locks is impossible here since no one else but this function can get
3411 * at it any more.
3412 */
Dave Airlief453ba02008-11-07 14:05:41 -08003413 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003414
3415 mutex_lock(&dev->mode_config.fb_lock);
3416 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3417 __drm_framebuffer_unregister(dev, fb);
3418 mutex_unlock(&dev->mode_config.fb_lock);
3419
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003420 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003421
3422 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003423 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003424 }
Dave Airlief453ba02008-11-07 14:05:41 -08003425}
3426
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003427/**
3428 * drm_property_create - create a new property type
3429 * @dev: drm device
3430 * @flags: flags specifying the property type
3431 * @name: name of the property
3432 * @num_values: number of pre-defined values
3433 *
3434 * This creates a new generic drm property which can then be attached to a drm
3435 * object with drm_object_attach_property. The returned property object must be
3436 * freed with drm_property_destroy.
3437 *
3438 * Returns:
3439 * A pointer to the newly created property on success, NULL on failure.
3440 */
Dave Airlief453ba02008-11-07 14:05:41 -08003441struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3442 const char *name, int num_values)
3443{
3444 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003445 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003446
3447 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3448 if (!property)
3449 return NULL;
3450
Rob Clark98f75de2014-05-30 11:37:03 -04003451 property->dev = dev;
3452
Dave Airlief453ba02008-11-07 14:05:41 -08003453 if (num_values) {
3454 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
3455 if (!property->values)
3456 goto fail;
3457 }
3458
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003459 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3460 if (ret)
3461 goto fail;
3462
Dave Airlief453ba02008-11-07 14:05:41 -08003463 property->flags = flags;
3464 property->num_values = num_values;
3465 INIT_LIST_HEAD(&property->enum_blob_list);
3466
Vinson Lee471dd2e2011-11-10 11:55:40 -08003467 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003468 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003469 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3470 }
Dave Airlief453ba02008-11-07 14:05:41 -08003471
3472 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003473
3474 WARN_ON(!drm_property_type_valid(property));
3475
Dave Airlief453ba02008-11-07 14:05:41 -08003476 return property;
3477fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003478 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003479 kfree(property);
3480 return NULL;
3481}
3482EXPORT_SYMBOL(drm_property_create);
3483
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003484/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003485 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003486 * @dev: drm device
3487 * @flags: flags specifying the property type
3488 * @name: name of the property
3489 * @props: enumeration lists with property values
3490 * @num_values: number of pre-defined values
3491 *
3492 * This creates a new generic drm property which can then be attached to a drm
3493 * object with drm_object_attach_property. The returned property object must be
3494 * freed with drm_property_destroy.
3495 *
3496 * Userspace is only allowed to set one of the predefined values for enumeration
3497 * properties.
3498 *
3499 * Returns:
3500 * A pointer to the newly created property on success, NULL on failure.
3501 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003502struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3503 const char *name,
3504 const struct drm_prop_enum_list *props,
3505 int num_values)
3506{
3507 struct drm_property *property;
3508 int i, ret;
3509
3510 flags |= DRM_MODE_PROP_ENUM;
3511
3512 property = drm_property_create(dev, flags, name, num_values);
3513 if (!property)
3514 return NULL;
3515
3516 for (i = 0; i < num_values; i++) {
3517 ret = drm_property_add_enum(property, i,
3518 props[i].type,
3519 props[i].name);
3520 if (ret) {
3521 drm_property_destroy(dev, property);
3522 return NULL;
3523 }
3524 }
3525
3526 return property;
3527}
3528EXPORT_SYMBOL(drm_property_create_enum);
3529
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003530/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003531 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003532 * @dev: drm device
3533 * @flags: flags specifying the property type
3534 * @name: name of the property
3535 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003536 * @num_props: size of the @props array
3537 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003538 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003539 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003540 * object with drm_object_attach_property. The returned property object must be
3541 * freed with drm_property_destroy.
3542 *
3543 * Compared to plain enumeration properties userspace is allowed to set any
3544 * or'ed together combination of the predefined property bitflag values
3545 *
3546 * Returns:
3547 * A pointer to the newly created property on success, NULL on failure.
3548 */
Rob Clark49e27542012-05-17 02:23:26 -06003549struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3550 int flags, const char *name,
3551 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303552 int num_props,
3553 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003554{
3555 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303556 int i, ret, index = 0;
3557 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003558
3559 flags |= DRM_MODE_PROP_BITMASK;
3560
3561 property = drm_property_create(dev, flags, name, num_values);
3562 if (!property)
3563 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303564 for (i = 0; i < num_props; i++) {
3565 if (!(supported_bits & (1ULL << props[i].type)))
3566 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003567
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303568 if (WARN_ON(index >= num_values)) {
3569 drm_property_destroy(dev, property);
3570 return NULL;
3571 }
3572
3573 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003574 props[i].type,
3575 props[i].name);
3576 if (ret) {
3577 drm_property_destroy(dev, property);
3578 return NULL;
3579 }
3580 }
3581
3582 return property;
3583}
3584EXPORT_SYMBOL(drm_property_create_bitmask);
3585
Rob Clarkebc44cf2012-09-12 22:22:31 -05003586static struct drm_property *property_create_range(struct drm_device *dev,
3587 int flags, const char *name,
3588 uint64_t min, uint64_t max)
3589{
3590 struct drm_property *property;
3591
3592 property = drm_property_create(dev, flags, name, 2);
3593 if (!property)
3594 return NULL;
3595
3596 property->values[0] = min;
3597 property->values[1] = max;
3598
3599 return property;
3600}
3601
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003602/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003603 * drm_property_create_range - create a new ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003604 * @dev: drm device
3605 * @flags: flags specifying the property type
3606 * @name: name of the property
3607 * @min: minimum value of the property
3608 * @max: maximum value of the property
3609 *
3610 * This creates a new generic drm property which can then be attached to a drm
3611 * object with drm_object_attach_property. The returned property object must be
3612 * freed with drm_property_destroy.
3613 *
3614 * Userspace is allowed to set any interger value in the (min, max) range
3615 * inclusive.
3616 *
3617 * Returns:
3618 * A pointer to the newly created property on success, NULL on failure.
3619 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003620struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3621 const char *name,
3622 uint64_t min, uint64_t max)
3623{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003624 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3625 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003626}
3627EXPORT_SYMBOL(drm_property_create_range);
3628
Rob Clarkebc44cf2012-09-12 22:22:31 -05003629struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3630 int flags, const char *name,
3631 int64_t min, int64_t max)
3632{
3633 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3634 name, I642U64(min), I642U64(max));
3635}
3636EXPORT_SYMBOL(drm_property_create_signed_range);
3637
Rob Clark98f75de2014-05-30 11:37:03 -04003638struct drm_property *drm_property_create_object(struct drm_device *dev,
3639 int flags, const char *name, uint32_t type)
3640{
3641 struct drm_property *property;
3642
3643 flags |= DRM_MODE_PROP_OBJECT;
3644
3645 property = drm_property_create(dev, flags, name, 1);
3646 if (!property)
3647 return NULL;
3648
3649 property->values[0] = type;
3650
3651 return property;
3652}
3653EXPORT_SYMBOL(drm_property_create_object);
3654
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003655/**
3656 * drm_property_add_enum - add a possible value to an enumeration property
3657 * @property: enumeration property to change
3658 * @index: index of the new enumeration
3659 * @value: value of the new enumeration
3660 * @name: symbolic name of the new enumeration
3661 *
3662 * This functions adds enumerations to a property.
3663 *
3664 * It's use is deprecated, drivers should use one of the more specific helpers
3665 * to directly create the property with all enumerations already attached.
3666 *
3667 * Returns:
3668 * Zero on success, error code on failure.
3669 */
Dave Airlief453ba02008-11-07 14:05:41 -08003670int drm_property_add_enum(struct drm_property *property, int index,
3671 uint64_t value, const char *name)
3672{
3673 struct drm_property_enum *prop_enum;
3674
Rob Clark5ea22f22014-05-30 11:34:01 -04003675 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3676 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003677 return -EINVAL;
3678
3679 /*
3680 * Bitmask enum properties have the additional constraint of values
3681 * from 0 to 63
3682 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003683 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3684 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003685 return -EINVAL;
3686
3687 if (!list_empty(&property->enum_blob_list)) {
3688 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3689 if (prop_enum->value == value) {
3690 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3691 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3692 return 0;
3693 }
3694 }
3695 }
3696
3697 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3698 if (!prop_enum)
3699 return -ENOMEM;
3700
3701 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3702 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3703 prop_enum->value = value;
3704
3705 property->values[index] = value;
3706 list_add_tail(&prop_enum->head, &property->enum_blob_list);
3707 return 0;
3708}
3709EXPORT_SYMBOL(drm_property_add_enum);
3710
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003711/**
3712 * drm_property_destroy - destroy a drm property
3713 * @dev: drm device
3714 * @property: property to destry
3715 *
3716 * This function frees a property including any attached resources like
3717 * enumeration values.
3718 */
Dave Airlief453ba02008-11-07 14:05:41 -08003719void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3720{
3721 struct drm_property_enum *prop_enum, *pt;
3722
3723 list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
3724 list_del(&prop_enum->head);
3725 kfree(prop_enum);
3726 }
3727
3728 if (property->num_values)
3729 kfree(property->values);
3730 drm_mode_object_put(dev, &property->base);
3731 list_del(&property->head);
3732 kfree(property);
3733}
3734EXPORT_SYMBOL(drm_property_destroy);
3735
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003736/**
3737 * drm_object_attach_property - attach a property to a modeset object
3738 * @obj: drm modeset object
3739 * @property: property to attach
3740 * @init_val: initial value of the property
3741 *
3742 * This attaches the given property to the modeset object with the given initial
3743 * value. Currently this function cannot fail since the properties are stored in
3744 * a statically sized array.
3745 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003746void drm_object_attach_property(struct drm_mode_object *obj,
3747 struct drm_property *property,
3748 uint64_t init_val)
3749{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003750 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003751
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003752 if (count == DRM_OBJECT_MAX_PROPERTY) {
3753 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3754 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3755 "you see this message on the same object type.\n",
3756 obj->type);
3757 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03003758 }
3759
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003760 obj->properties->ids[count] = property->base.id;
3761 obj->properties->values[count] = init_val;
3762 obj->properties->count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03003763}
3764EXPORT_SYMBOL(drm_object_attach_property);
3765
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003766/**
3767 * drm_object_property_set_value - set the value of a property
3768 * @obj: drm mode object to set property value for
3769 * @property: property to set
3770 * @val: value the property should be set to
3771 *
3772 * This functions sets a given property on a given object. This function only
3773 * changes the software state of the property, it does not call into the
3774 * driver's ->set_property callback.
3775 *
3776 * Returns:
3777 * Zero on success, error code on failure.
3778 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003779int drm_object_property_set_value(struct drm_mode_object *obj,
3780 struct drm_property *property, uint64_t val)
3781{
3782 int i;
3783
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003784 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003785 if (obj->properties->ids[i] == property->base.id) {
3786 obj->properties->values[i] = val;
3787 return 0;
3788 }
3789 }
3790
3791 return -EINVAL;
3792}
3793EXPORT_SYMBOL(drm_object_property_set_value);
3794
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003795/**
3796 * drm_object_property_get_value - retrieve the value of a property
3797 * @obj: drm mode object to get property value from
3798 * @property: property to retrieve
3799 * @val: storage for the property value
3800 *
3801 * This function retrieves the softare state of the given property for the given
3802 * property. Since there is no driver callback to retrieve the current property
3803 * value this might be out of sync with the hardware, depending upon the driver
3804 * and property.
3805 *
3806 * Returns:
3807 * Zero on success, error code on failure.
3808 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003809int drm_object_property_get_value(struct drm_mode_object *obj,
3810 struct drm_property *property, uint64_t *val)
3811{
3812 int i;
3813
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003814 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003815 if (obj->properties->ids[i] == property->base.id) {
3816 *val = obj->properties->values[i];
3817 return 0;
3818 }
3819 }
3820
3821 return -EINVAL;
3822}
3823EXPORT_SYMBOL(drm_object_property_get_value);
3824
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003825/**
3826 * drm_mode_getproperty_ioctl - get the current value of a connector's property
3827 * @dev: DRM device
3828 * @data: ioctl data
3829 * @file_priv: DRM file info
3830 *
3831 * This function retrieves the current value for an connectors's property.
3832 *
3833 * Called by the user via ioctl.
3834 *
3835 * Returns:
3836 * Zero on success, errno on failure.
3837 */
Dave Airlief453ba02008-11-07 14:05:41 -08003838int drm_mode_getproperty_ioctl(struct drm_device *dev,
3839 void *data, struct drm_file *file_priv)
3840{
Dave Airlief453ba02008-11-07 14:05:41 -08003841 struct drm_mode_get_property *out_resp = data;
3842 struct drm_property *property;
3843 int enum_count = 0;
3844 int blob_count = 0;
3845 int value_count = 0;
3846 int ret = 0, i;
3847 int copied;
3848 struct drm_property_enum *prop_enum;
3849 struct drm_mode_property_enum __user *enum_ptr;
3850 struct drm_property_blob *prop_blob;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003851 uint32_t __user *blob_id_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003852 uint64_t __user *values_ptr;
3853 uint32_t __user *blob_length_ptr;
3854
Dave Airliefb3b06c2011-02-08 13:55:21 +10003855 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3856 return -EINVAL;
3857
Daniel Vetter84849902012-12-02 00:28:11 +01003858 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04003859 property = drm_property_find(dev, out_resp->prop_id);
3860 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003861 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003862 goto done;
3863 }
Dave Airlief453ba02008-11-07 14:05:41 -08003864
Rob Clark5ea22f22014-05-30 11:34:01 -04003865 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3866 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003867 list_for_each_entry(prop_enum, &property->enum_blob_list, head)
3868 enum_count++;
Rob Clark5ea22f22014-05-30 11:34:01 -04003869 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003870 list_for_each_entry(prop_blob, &property->enum_blob_list, head)
3871 blob_count++;
3872 }
3873
3874 value_count = property->num_values;
3875
3876 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
3877 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
3878 out_resp->flags = property->flags;
3879
3880 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003881 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003882 for (i = 0; i < value_count; i++) {
3883 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
3884 ret = -EFAULT;
3885 goto done;
3886 }
3887 }
3888 }
3889 out_resp->count_values = value_count;
3890
Rob Clark5ea22f22014-05-30 11:34:01 -04003891 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3892 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003893 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
3894 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003895 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003896 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3897
3898 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
3899 ret = -EFAULT;
3900 goto done;
3901 }
3902
3903 if (copy_to_user(&enum_ptr[copied].name,
3904 &prop_enum->name, DRM_PROP_NAME_LEN)) {
3905 ret = -EFAULT;
3906 goto done;
3907 }
3908 copied++;
3909 }
3910 }
3911 out_resp->count_enum_blobs = enum_count;
3912 }
3913
Rob Clark5ea22f22014-05-30 11:34:01 -04003914 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003915 if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
3916 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003917 blob_id_ptr = (uint32_t __user *)(unsigned long)out_resp->enum_blob_ptr;
3918 blob_length_ptr = (uint32_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003919
3920 list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
3921 if (put_user(prop_blob->base.id, blob_id_ptr + copied)) {
3922 ret = -EFAULT;
3923 goto done;
3924 }
3925
3926 if (put_user(prop_blob->length, blob_length_ptr + copied)) {
3927 ret = -EFAULT;
3928 goto done;
3929 }
3930
3931 copied++;
3932 }
3933 }
3934 out_resp->count_enum_blobs = blob_count;
3935 }
3936done:
Daniel Vetter84849902012-12-02 00:28:11 +01003937 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003938 return ret;
3939}
3940
3941static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
3942 void *data)
3943{
3944 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003945 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003946
3947 if (!length || !data)
3948 return NULL;
3949
3950 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3951 if (!blob)
3952 return NULL;
3953
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003954 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
3955 if (ret) {
3956 kfree(blob);
3957 return NULL;
3958 }
3959
Dave Airlief453ba02008-11-07 14:05:41 -08003960 blob->length = length;
3961
3962 memcpy(blob->data, data, length);
3963
Dave Airlief453ba02008-11-07 14:05:41 -08003964 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
3965 return blob;
3966}
3967
3968static void drm_property_destroy_blob(struct drm_device *dev,
3969 struct drm_property_blob *blob)
3970{
3971 drm_mode_object_put(dev, &blob->base);
3972 list_del(&blob->head);
3973 kfree(blob);
3974}
3975
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003976/**
3977 * drm_mode_getblob_ioctl - get the contents of a blob property value
3978 * @dev: DRM device
3979 * @data: ioctl data
3980 * @file_priv: DRM file info
3981 *
3982 * This function retrieves the contents of a blob property. The value stored in
3983 * an object's blob property is just a normal modeset object id.
3984 *
3985 * Called by the user via ioctl.
3986 *
3987 * Returns:
3988 * Zero on success, errno on failure.
3989 */
Dave Airlief453ba02008-11-07 14:05:41 -08003990int drm_mode_getblob_ioctl(struct drm_device *dev,
3991 void *data, struct drm_file *file_priv)
3992{
Dave Airlief453ba02008-11-07 14:05:41 -08003993 struct drm_mode_get_blob *out_resp = data;
3994 struct drm_property_blob *blob;
3995 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003996 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003997
Dave Airliefb3b06c2011-02-08 13:55:21 +10003998 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3999 return -EINVAL;
4000
Daniel Vetter84849902012-12-02 00:28:11 +01004001 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004002 blob = drm_property_blob_find(dev, out_resp->blob_id);
4003 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004004 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004005 goto done;
4006 }
Dave Airlief453ba02008-11-07 14:05:41 -08004007
4008 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004009 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Dave Airlief453ba02008-11-07 14:05:41 -08004010 if (copy_to_user(blob_ptr, blob->data, blob->length)){
4011 ret = -EFAULT;
4012 goto done;
4013 }
4014 }
4015 out_resp->length = blob->length;
4016
4017done:
Daniel Vetter84849902012-12-02 00:28:11 +01004018 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004019 return ret;
4020}
4021
Dave Airlie43aba7e2014-06-05 14:01:31 +10004022int drm_mode_connector_set_path_property(struct drm_connector *connector,
4023 char *path)
4024{
4025 struct drm_device *dev = connector->dev;
4026 int ret, size;
4027 size = strlen(path) + 1;
4028
4029 connector->path_blob_ptr = drm_property_create_blob(connector->dev,
4030 size, path);
4031 if (!connector->path_blob_ptr)
4032 return -EINVAL;
4033
4034 ret = drm_object_property_set_value(&connector->base,
4035 dev->mode_config.path_property,
4036 connector->path_blob_ptr->base.id);
4037 return ret;
4038}
4039EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4040
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004041/**
4042 * drm_mode_connector_update_edid_property - update the edid property of a connector
4043 * @connector: drm connector
4044 * @edid: new value of the edid property
4045 *
4046 * This function creates a new blob modeset object and assigns its id to the
4047 * connector's edid property.
4048 *
4049 * Returns:
4050 * Zero on success, errno on failure.
4051 */
Dave Airlief453ba02008-11-07 14:05:41 -08004052int drm_mode_connector_update_edid_property(struct drm_connector *connector,
4053 struct edid *edid)
4054{
4055 struct drm_device *dev = connector->dev;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02004056 int ret, size;
Dave Airlief453ba02008-11-07 14:05:41 -08004057
Thomas Wood4cf2b282014-06-18 17:52:33 +01004058 /* ignore requests to set edid when overridden */
4059 if (connector->override_edid)
4060 return 0;
4061
Dave Airlief453ba02008-11-07 14:05:41 -08004062 if (connector->edid_blob_ptr)
4063 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
4064
4065 /* Delete edid, when there is none. */
4066 if (!edid) {
4067 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05004068 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08004069 return ret;
4070 }
4071
Adam Jackson7466f4c2010-03-29 21:43:23 +00004072 size = EDID_LENGTH * (1 + edid->extensions);
4073 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
4074 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00004075 if (!connector->edid_blob_ptr)
4076 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08004077
Rob Clark58495562012-10-11 20:50:56 -05004078 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08004079 dev->mode_config.edid_property,
4080 connector->edid_blob_ptr->base.id);
4081
4082 return ret;
4083}
4084EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4085
Paulo Zanoni26a34812012-05-15 18:08:59 -03004086static bool drm_property_change_is_valid(struct drm_property *property,
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004087 uint64_t value)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004088{
4089 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4090 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004091
4092 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004093 if (value < property->values[0] || value > property->values[1])
4094 return false;
4095 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004096 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4097 int64_t svalue = U642I64(value);
4098 if (svalue < U642I64(property->values[0]) ||
4099 svalue > U642I64(property->values[1]))
4100 return false;
4101 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004102 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Rob Clark49e27542012-05-17 02:23:26 -06004103 int i;
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004104 uint64_t valid_mask = 0;
Rob Clark49e27542012-05-17 02:23:26 -06004105 for (i = 0; i < property->num_values; i++)
4106 valid_mask |= (1ULL << property->values[i]);
4107 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004108 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Ville Syrjäläc4a56752012-10-25 18:05:06 +00004109 /* Only the driver knows */
4110 return true;
Rob Clark98f75de2014-05-30 11:37:03 -04004111 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4112 struct drm_mode_object *obj;
4113 /* a zero value for an object property translates to null: */
4114 if (value == 0)
4115 return true;
4116 /*
4117 * NOTE: use _object_find() directly to bypass restriction on
4118 * looking up refcnt'd objects (ie. fb's). For a refcnt'd
4119 * object this could race against object finalization, so it
4120 * simply tells us that the object *was* valid. Which is good
4121 * enough.
4122 */
4123 obj = _object_find(property->dev, value, property->values[0]);
4124 return obj != NULL;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004125 } else {
4126 int i;
4127 for (i = 0; i < property->num_values; i++)
4128 if (property->values[i] == value)
4129 return true;
4130 return false;
4131 }
4132}
4133
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004134/**
4135 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4136 * @dev: DRM device
4137 * @data: ioctl data
4138 * @file_priv: DRM file info
4139 *
4140 * This function sets the current value for a connectors's property. It also
4141 * calls into a driver's ->set_property callback to update the hardware state
4142 *
4143 * Called by the user via ioctl.
4144 *
4145 * Returns:
4146 * Zero on success, errno on failure.
4147 */
Dave Airlief453ba02008-11-07 14:05:41 -08004148int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4149 void *data, struct drm_file *file_priv)
4150{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004151 struct drm_mode_connector_set_property *conn_set_prop = data;
4152 struct drm_mode_obj_set_property obj_set_prop = {
4153 .value = conn_set_prop->value,
4154 .prop_id = conn_set_prop->prop_id,
4155 .obj_id = conn_set_prop->connector_id,
4156 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4157 };
Dave Airlief453ba02008-11-07 14:05:41 -08004158
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004159 /* It does all the locking and checking we need */
4160 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004161}
4162
Paulo Zanonic5431882012-05-15 18:09:02 -03004163static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4164 struct drm_property *property,
4165 uint64_t value)
4166{
4167 int ret = -EINVAL;
4168 struct drm_connector *connector = obj_to_connector(obj);
4169
4170 /* Do DPMS ourselves */
4171 if (property == connector->dev->mode_config.dpms_property) {
4172 if (connector->funcs->dpms)
4173 (*connector->funcs->dpms)(connector, (int)value);
4174 ret = 0;
4175 } else if (connector->funcs->set_property)
4176 ret = connector->funcs->set_property(connector, property, value);
4177
4178 /* store the property value if successful */
4179 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004180 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004181 return ret;
4182}
4183
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004184static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4185 struct drm_property *property,
4186 uint64_t value)
4187{
4188 int ret = -EINVAL;
4189 struct drm_crtc *crtc = obj_to_crtc(obj);
4190
4191 if (crtc->funcs->set_property)
4192 ret = crtc->funcs->set_property(crtc, property, value);
4193 if (!ret)
4194 drm_object_property_set_value(obj, property, value);
4195
4196 return ret;
4197}
4198
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004199/**
4200 * drm_mode_plane_set_obj_prop - set the value of a property
4201 * @plane: drm plane object to set property value for
4202 * @property: property to set
4203 * @value: value the property should be set to
4204 *
4205 * This functions sets a given property on a given plane object. This function
4206 * calls the driver's ->set_property callback and changes the software state of
4207 * the property if the callback succeeds.
4208 *
4209 * Returns:
4210 * Zero on success, error code on failure.
4211 */
4212int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4213 struct drm_property *property,
4214 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004215{
4216 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004217 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004218
4219 if (plane->funcs->set_property)
4220 ret = plane->funcs->set_property(plane, property, value);
4221 if (!ret)
4222 drm_object_property_set_value(obj, property, value);
4223
4224 return ret;
4225}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004226EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004227
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004228/**
4229 * drm_mode_getproperty_ioctl - get the current value of a object's property
4230 * @dev: DRM device
4231 * @data: ioctl data
4232 * @file_priv: DRM file info
4233 *
4234 * This function retrieves the current value for an object's property. Compared
4235 * to the connector specific ioctl this one is extended to also work on crtc and
4236 * plane objects.
4237 *
4238 * Called by the user via ioctl.
4239 *
4240 * Returns:
4241 * Zero on success, errno on failure.
4242 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004243int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4244 struct drm_file *file_priv)
4245{
4246 struct drm_mode_obj_get_properties *arg = data;
4247 struct drm_mode_object *obj;
4248 int ret = 0;
4249 int i;
4250 int copied = 0;
4251 int props_count = 0;
4252 uint32_t __user *props_ptr;
4253 uint64_t __user *prop_values_ptr;
4254
4255 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4256 return -EINVAL;
4257
Daniel Vetter84849902012-12-02 00:28:11 +01004258 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004259
4260 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4261 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004262 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004263 goto out;
4264 }
4265 if (!obj->properties) {
4266 ret = -EINVAL;
4267 goto out;
4268 }
4269
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004270 props_count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03004271
4272 /* This ioctl is called twice, once to determine how much space is
4273 * needed, and the 2nd time to fill it. */
4274 if ((arg->count_props >= props_count) && props_count) {
4275 copied = 0;
4276 props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
4277 prop_values_ptr = (uint64_t __user *)(unsigned long)
4278 (arg->prop_values_ptr);
4279 for (i = 0; i < props_count; i++) {
4280 if (put_user(obj->properties->ids[i],
4281 props_ptr + copied)) {
4282 ret = -EFAULT;
4283 goto out;
4284 }
4285 if (put_user(obj->properties->values[i],
4286 prop_values_ptr + copied)) {
4287 ret = -EFAULT;
4288 goto out;
4289 }
4290 copied++;
4291 }
4292 }
4293 arg->count_props = props_count;
4294out:
Daniel Vetter84849902012-12-02 00:28:11 +01004295 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004296 return ret;
4297}
4298
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004299/**
4300 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4301 * @dev: DRM device
4302 * @data: ioctl data
4303 * @file_priv: DRM file info
4304 *
4305 * This function sets the current value for an object's property. It also calls
4306 * into a driver's ->set_property callback to update the hardware state.
4307 * Compared to the connector specific ioctl this one is extended to also work on
4308 * crtc and plane objects.
4309 *
4310 * Called by the user via ioctl.
4311 *
4312 * Returns:
4313 * Zero on success, errno on failure.
4314 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004315int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4316 struct drm_file *file_priv)
4317{
4318 struct drm_mode_obj_set_property *arg = data;
4319 struct drm_mode_object *arg_obj;
4320 struct drm_mode_object *prop_obj;
4321 struct drm_property *property;
4322 int ret = -EINVAL;
4323 int i;
4324
4325 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4326 return -EINVAL;
4327
Daniel Vetter84849902012-12-02 00:28:11 +01004328 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004329
4330 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004331 if (!arg_obj) {
4332 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004333 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004334 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004335 if (!arg_obj->properties)
4336 goto out;
4337
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004338 for (i = 0; i < arg_obj->properties->count; i++)
Paulo Zanonic5431882012-05-15 18:09:02 -03004339 if (arg_obj->properties->ids[i] == arg->prop_id)
4340 break;
4341
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004342 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004343 goto out;
4344
4345 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4346 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004347 if (!prop_obj) {
4348 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004349 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004350 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004351 property = obj_to_property(prop_obj);
4352
4353 if (!drm_property_change_is_valid(property, arg->value))
4354 goto out;
4355
4356 switch (arg_obj->type) {
4357 case DRM_MODE_OBJECT_CONNECTOR:
4358 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4359 arg->value);
4360 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004361 case DRM_MODE_OBJECT_CRTC:
4362 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4363 break;
Rob Clark4d939142012-05-17 02:23:27 -06004364 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004365 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4366 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06004367 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004368 }
4369
4370out:
Daniel Vetter84849902012-12-02 00:28:11 +01004371 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004372 return ret;
4373}
4374
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004375/**
4376 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4377 * @connector: connector to attach
4378 * @encoder: encoder to attach @connector to
4379 *
4380 * This function links up a connector to an encoder. Note that the routing
4381 * restrictions between encoders and crtcs are exposed to userspace through the
4382 * possible_clones and possible_crtcs bitmasks.
4383 *
4384 * Returns:
4385 * Zero on success, errno on failure.
4386 */
Dave Airlief453ba02008-11-07 14:05:41 -08004387int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4388 struct drm_encoder *encoder)
4389{
4390 int i;
4391
4392 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4393 if (connector->encoder_ids[i] == 0) {
4394 connector->encoder_ids[i] = encoder->base.id;
4395 return 0;
4396 }
4397 }
4398 return -ENOMEM;
4399}
4400EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4401
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004402/**
4403 * drm_mode_crtc_set_gamma_size - set the gamma table size
4404 * @crtc: CRTC to set the gamma table size for
4405 * @gamma_size: size of the gamma table
4406 *
4407 * Drivers which support gamma tables should set this to the supported gamma
4408 * table size when initializing the CRTC. Currently the drm core only supports a
4409 * fixed gamma table size.
4410 *
4411 * Returns:
4412 * Zero on success, errno on failure.
4413 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004414int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004415 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004416{
4417 crtc->gamma_size = gamma_size;
4418
4419 crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
4420 if (!crtc->gamma_store) {
4421 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004422 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004423 }
4424
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004425 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004426}
4427EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4428
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004429/**
4430 * drm_mode_gamma_set_ioctl - set the gamma table
4431 * @dev: DRM device
4432 * @data: ioctl data
4433 * @file_priv: DRM file info
4434 *
4435 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4436 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4437 *
4438 * Called by the user via ioctl.
4439 *
4440 * Returns:
4441 * Zero on success, errno on failure.
4442 */
Dave Airlief453ba02008-11-07 14:05:41 -08004443int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4444 void *data, struct drm_file *file_priv)
4445{
4446 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004447 struct drm_crtc *crtc;
4448 void *r_base, *g_base, *b_base;
4449 int size;
4450 int ret = 0;
4451
Dave Airliefb3b06c2011-02-08 13:55:21 +10004452 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4453 return -EINVAL;
4454
Daniel Vetter84849902012-12-02 00:28:11 +01004455 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004456 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4457 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004458 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004459 goto out;
4460 }
Dave Airlief453ba02008-11-07 14:05:41 -08004461
Laurent Pinchartebe0f242012-05-17 13:27:24 +02004462 if (crtc->funcs->gamma_set == NULL) {
4463 ret = -ENOSYS;
4464 goto out;
4465 }
4466
Dave Airlief453ba02008-11-07 14:05:41 -08004467 /* memcpy into gamma store */
4468 if (crtc_lut->gamma_size != crtc->gamma_size) {
4469 ret = -EINVAL;
4470 goto out;
4471 }
4472
4473 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4474 r_base = crtc->gamma_store;
4475 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4476 ret = -EFAULT;
4477 goto out;
4478 }
4479
4480 g_base = r_base + size;
4481 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4482 ret = -EFAULT;
4483 goto out;
4484 }
4485
4486 b_base = g_base + size;
4487 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4488 ret = -EFAULT;
4489 goto out;
4490 }
4491
James Simmons72034252010-08-03 01:33:19 +01004492 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08004493
4494out:
Daniel Vetter84849902012-12-02 00:28:11 +01004495 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004496 return ret;
4497
4498}
4499
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004500/**
4501 * drm_mode_gamma_get_ioctl - get the gamma table
4502 * @dev: DRM device
4503 * @data: ioctl data
4504 * @file_priv: DRM file info
4505 *
4506 * Copy the current gamma table into the storage provided. This also provides
4507 * the gamma table size the driver expects, which can be used to size the
4508 * allocated storage.
4509 *
4510 * Called by the user via ioctl.
4511 *
4512 * Returns:
4513 * Zero on success, errno on failure.
4514 */
Dave Airlief453ba02008-11-07 14:05:41 -08004515int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4516 void *data, struct drm_file *file_priv)
4517{
4518 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004519 struct drm_crtc *crtc;
4520 void *r_base, *g_base, *b_base;
4521 int size;
4522 int ret = 0;
4523
Dave Airliefb3b06c2011-02-08 13:55:21 +10004524 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4525 return -EINVAL;
4526
Daniel Vetter84849902012-12-02 00:28:11 +01004527 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004528 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4529 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004530 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004531 goto out;
4532 }
Dave Airlief453ba02008-11-07 14:05:41 -08004533
4534 /* memcpy into gamma store */
4535 if (crtc_lut->gamma_size != crtc->gamma_size) {
4536 ret = -EINVAL;
4537 goto out;
4538 }
4539
4540 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4541 r_base = crtc->gamma_store;
4542 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4543 ret = -EFAULT;
4544 goto out;
4545 }
4546
4547 g_base = r_base + size;
4548 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4549 ret = -EFAULT;
4550 goto out;
4551 }
4552
4553 b_base = g_base + size;
4554 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4555 ret = -EFAULT;
4556 goto out;
4557 }
4558out:
Daniel Vetter84849902012-12-02 00:28:11 +01004559 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004560 return ret;
4561}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004562
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004563/**
4564 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4565 * @dev: DRM device
4566 * @data: ioctl data
4567 * @file_priv: DRM file info
4568 *
4569 * This schedules an asynchronous update on a given CRTC, called page flip.
4570 * Optionally a drm event is generated to signal the completion of the event.
4571 * Generic drivers cannot assume that a pageflip with changed framebuffer
4572 * properties (including driver specific metadata like tiling layout) will work,
4573 * but some drivers support e.g. pixel format changes through the pageflip
4574 * ioctl.
4575 *
4576 * Called by the user via ioctl.
4577 *
4578 * Returns:
4579 * Zero on success, errno on failure.
4580 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004581int drm_mode_page_flip_ioctl(struct drm_device *dev,
4582 void *data, struct drm_file *file_priv)
4583{
4584 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004585 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02004586 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004587 struct drm_pending_vblank_event *e = NULL;
4588 unsigned long flags;
4589 int ret = -EINVAL;
4590
4591 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4592 page_flip->reserved != 0)
4593 return -EINVAL;
4594
Keith Packard62f21042013-07-22 18:50:00 -07004595 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4596 return -EINVAL;
4597
Rob Clarka2b34e22013-10-05 16:36:52 -04004598 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4599 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004600 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004601
Daniel Vetterd059f652014-07-25 18:07:40 +02004602 drm_modeset_lock_crtc(crtc);
Matt Roperf4510a22014-04-01 15:22:40 -07004603 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01004604 /* The framebuffer is currently unbound, presumably
4605 * due to a hotplug event, that userspace has not
4606 * yet discovered.
4607 */
4608 ret = -EBUSY;
4609 goto out;
4610 }
4611
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004612 if (crtc->funcs->page_flip == NULL)
4613 goto out;
4614
Daniel Vetter786b99e2012-12-02 21:53:40 +01004615 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004616 if (!fb) {
4617 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004618 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004619 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004620
Damien Lespiauc11e9282013-09-25 16:45:30 +01004621 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4622 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004623 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004624
Matt Roperf4510a22014-04-01 15:22:40 -07004625 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02004626 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4627 ret = -EINVAL;
4628 goto out;
4629 }
4630
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004631 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4632 ret = -ENOMEM;
4633 spin_lock_irqsave(&dev->event_lock, flags);
4634 if (file_priv->event_space < sizeof e->event) {
4635 spin_unlock_irqrestore(&dev->event_lock, flags);
4636 goto out;
4637 }
4638 file_priv->event_space -= sizeof e->event;
4639 spin_unlock_irqrestore(&dev->event_lock, flags);
4640
4641 e = kzalloc(sizeof *e, GFP_KERNEL);
4642 if (e == NULL) {
4643 spin_lock_irqsave(&dev->event_lock, flags);
4644 file_priv->event_space += sizeof e->event;
4645 spin_unlock_irqrestore(&dev->event_lock, flags);
4646 goto out;
4647 }
4648
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08004649 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004650 e->event.base.length = sizeof e->event;
4651 e->event.user_data = page_flip->user_data;
4652 e->base.event = &e->event.base;
4653 e->base.file_priv = file_priv;
4654 e->base.destroy =
4655 (void (*) (struct drm_pending_event *)) kfree;
4656 }
4657
Daniel Vetter3d30a592014-07-27 13:42:42 +02004658 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07004659 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004660 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004661 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4662 spin_lock_irqsave(&dev->event_lock, flags);
4663 file_priv->event_space += sizeof e->event;
4664 spin_unlock_irqrestore(&dev->event_lock, flags);
4665 kfree(e);
4666 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01004667 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02004668 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01004669 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01004670 /*
4671 * Warn if the driver hasn't properly updated the crtc->fb
4672 * field to reflect that the new framebuffer is now used.
4673 * Failing to do so will screw with the reference counting
4674 * on framebuffers.
4675 */
Matt Roperf4510a22014-04-01 15:22:40 -07004676 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01004677 /* Unref only the old framebuffer. */
4678 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004679 }
4680
4681out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01004682 if (fb)
4683 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02004684 if (crtc->primary->old_fb)
4685 drm_framebuffer_unreference(crtc->primary->old_fb);
4686 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02004687 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01004688
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004689 return ret;
4690}
Chris Wilsoneb033552011-01-24 15:11:08 +00004691
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004692/**
4693 * drm_mode_config_reset - call ->reset callbacks
4694 * @dev: drm device
4695 *
4696 * This functions calls all the crtc's, encoder's and connector's ->reset
4697 * callback. Drivers can use this in e.g. their driver load or resume code to
4698 * reset hardware and software state.
4699 */
Chris Wilsoneb033552011-01-24 15:11:08 +00004700void drm_mode_config_reset(struct drm_device *dev)
4701{
4702 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02004703 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00004704 struct drm_encoder *encoder;
4705 struct drm_connector *connector;
4706
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02004707 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
4708 if (plane->funcs->reset)
4709 plane->funcs->reset(plane);
4710
Chris Wilsoneb033552011-01-24 15:11:08 +00004711 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4712 if (crtc->funcs->reset)
4713 crtc->funcs->reset(crtc);
4714
4715 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
4716 if (encoder->funcs->reset)
4717 encoder->funcs->reset(encoder);
4718
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004719 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4720 connector->status = connector_status_unknown;
4721
Chris Wilsoneb033552011-01-24 15:11:08 +00004722 if (connector->funcs->reset)
4723 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004724 }
Chris Wilsoneb033552011-01-24 15:11:08 +00004725}
4726EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10004727
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004728/**
4729 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
4730 * @dev: DRM device
4731 * @data: ioctl data
4732 * @file_priv: DRM file info
4733 *
4734 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
4735 * TTM or something else entirely) and returns the resulting buffer handle. This
4736 * handle can then be wrapped up into a framebuffer modeset object.
4737 *
4738 * Note that userspace is not allowed to use such objects for render
4739 * acceleration - drivers must create their own private ioctls for such a use
4740 * case.
4741 *
4742 * Called by the user via ioctl.
4743 *
4744 * Returns:
4745 * Zero on success, errno on failure.
4746 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004747int drm_mode_create_dumb_ioctl(struct drm_device *dev,
4748 void *data, struct drm_file *file_priv)
4749{
4750 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01004751 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10004752
4753 if (!dev->driver->dumb_create)
4754 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01004755 if (!args->width || !args->height || !args->bpp)
4756 return -EINVAL;
4757
4758 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02004759 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01004760 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02004761 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01004762 return -EINVAL;
4763 stride = cpp * args->width;
4764 if (args->height > 0xffffffffU / stride)
4765 return -EINVAL;
4766
4767 /* test for wrap-around */
4768 size = args->height * stride;
4769 if (PAGE_ALIGN(size) == 0)
4770 return -EINVAL;
4771
Dave Airlieff72145b2011-02-07 12:16:14 +10004772 return dev->driver->dumb_create(file_priv, dev, args);
4773}
4774
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004775/**
4776 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
4777 * @dev: DRM device
4778 * @data: ioctl data
4779 * @file_priv: DRM file info
4780 *
4781 * Allocate an offset in the drm device node's address space to be able to
4782 * memory map a dumb buffer.
4783 *
4784 * Called by the user via ioctl.
4785 *
4786 * Returns:
4787 * Zero on success, errno on failure.
4788 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004789int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
4790 void *data, struct drm_file *file_priv)
4791{
4792 struct drm_mode_map_dumb *args = data;
4793
4794 /* call driver ioctl to get mmap offset */
4795 if (!dev->driver->dumb_map_offset)
4796 return -ENOSYS;
4797
4798 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
4799}
4800
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004801/**
4802 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
4803 * @dev: DRM device
4804 * @data: ioctl data
4805 * @file_priv: DRM file info
4806 *
4807 * This destroys the userspace handle for the given dumb backing storage buffer.
4808 * Since buffer objects must be reference counted in the kernel a buffer object
4809 * won't be immediately freed if a framebuffer modeset object still uses it.
4810 *
4811 * Called by the user via ioctl.
4812 *
4813 * Returns:
4814 * Zero on success, errno on failure.
4815 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004816int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
4817 void *data, struct drm_file *file_priv)
4818{
4819 struct drm_mode_destroy_dumb *args = data;
4820
4821 if (!dev->driver->dumb_destroy)
4822 return -ENOSYS;
4823
4824 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
4825}
Dave Airlie248dbc22011-11-29 20:02:54 +00004826
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004827/**
4828 * drm_fb_get_bpp_depth - get the bpp/depth values for format
4829 * @format: pixel format (DRM_FORMAT_*)
4830 * @depth: storage for the depth value
4831 * @bpp: storage for the bpp value
4832 *
4833 * This only supports RGB formats here for compat with code that doesn't use
4834 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00004835 */
4836void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
4837 int *bpp)
4838{
4839 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02004840 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02004841 case DRM_FORMAT_RGB332:
4842 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00004843 *depth = 8;
4844 *bpp = 8;
4845 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004846 case DRM_FORMAT_XRGB1555:
4847 case DRM_FORMAT_XBGR1555:
4848 case DRM_FORMAT_RGBX5551:
4849 case DRM_FORMAT_BGRX5551:
4850 case DRM_FORMAT_ARGB1555:
4851 case DRM_FORMAT_ABGR1555:
4852 case DRM_FORMAT_RGBA5551:
4853 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00004854 *depth = 15;
4855 *bpp = 16;
4856 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004857 case DRM_FORMAT_RGB565:
4858 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00004859 *depth = 16;
4860 *bpp = 16;
4861 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004862 case DRM_FORMAT_RGB888:
4863 case DRM_FORMAT_BGR888:
4864 *depth = 24;
4865 *bpp = 24;
4866 break;
4867 case DRM_FORMAT_XRGB8888:
4868 case DRM_FORMAT_XBGR8888:
4869 case DRM_FORMAT_RGBX8888:
4870 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00004871 *depth = 24;
4872 *bpp = 32;
4873 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004874 case DRM_FORMAT_XRGB2101010:
4875 case DRM_FORMAT_XBGR2101010:
4876 case DRM_FORMAT_RGBX1010102:
4877 case DRM_FORMAT_BGRX1010102:
4878 case DRM_FORMAT_ARGB2101010:
4879 case DRM_FORMAT_ABGR2101010:
4880 case DRM_FORMAT_RGBA1010102:
4881 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00004882 *depth = 30;
4883 *bpp = 32;
4884 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004885 case DRM_FORMAT_ARGB8888:
4886 case DRM_FORMAT_ABGR8888:
4887 case DRM_FORMAT_RGBA8888:
4888 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00004889 *depth = 32;
4890 *bpp = 32;
4891 break;
4892 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03004893 DRM_DEBUG_KMS("unsupported pixel format %s\n",
4894 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00004895 *depth = 0;
4896 *bpp = 0;
4897 break;
4898 }
4899}
4900EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03004901
4902/**
4903 * drm_format_num_planes - get the number of planes for format
4904 * @format: pixel format (DRM_FORMAT_*)
4905 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004906 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03004907 * The number of planes used by the specified pixel format.
4908 */
4909int drm_format_num_planes(uint32_t format)
4910{
4911 switch (format) {
4912 case DRM_FORMAT_YUV410:
4913 case DRM_FORMAT_YVU410:
4914 case DRM_FORMAT_YUV411:
4915 case DRM_FORMAT_YVU411:
4916 case DRM_FORMAT_YUV420:
4917 case DRM_FORMAT_YVU420:
4918 case DRM_FORMAT_YUV422:
4919 case DRM_FORMAT_YVU422:
4920 case DRM_FORMAT_YUV444:
4921 case DRM_FORMAT_YVU444:
4922 return 3;
4923 case DRM_FORMAT_NV12:
4924 case DRM_FORMAT_NV21:
4925 case DRM_FORMAT_NV16:
4926 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02004927 case DRM_FORMAT_NV24:
4928 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03004929 return 2;
4930 default:
4931 return 1;
4932 }
4933}
4934EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03004935
4936/**
4937 * drm_format_plane_cpp - determine the bytes per pixel value
4938 * @format: pixel format (DRM_FORMAT_*)
4939 * @plane: plane index
4940 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004941 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03004942 * The bytes per pixel value for the specified plane.
4943 */
4944int drm_format_plane_cpp(uint32_t format, int plane)
4945{
4946 unsigned int depth;
4947 int bpp;
4948
4949 if (plane >= drm_format_num_planes(format))
4950 return 0;
4951
4952 switch (format) {
4953 case DRM_FORMAT_YUYV:
4954 case DRM_FORMAT_YVYU:
4955 case DRM_FORMAT_UYVY:
4956 case DRM_FORMAT_VYUY:
4957 return 2;
4958 case DRM_FORMAT_NV12:
4959 case DRM_FORMAT_NV21:
4960 case DRM_FORMAT_NV16:
4961 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02004962 case DRM_FORMAT_NV24:
4963 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03004964 return plane ? 2 : 1;
4965 case DRM_FORMAT_YUV410:
4966 case DRM_FORMAT_YVU410:
4967 case DRM_FORMAT_YUV411:
4968 case DRM_FORMAT_YVU411:
4969 case DRM_FORMAT_YUV420:
4970 case DRM_FORMAT_YVU420:
4971 case DRM_FORMAT_YUV422:
4972 case DRM_FORMAT_YVU422:
4973 case DRM_FORMAT_YUV444:
4974 case DRM_FORMAT_YVU444:
4975 return 1;
4976 default:
4977 drm_fb_get_bpp_depth(format, &depth, &bpp);
4978 return bpp >> 3;
4979 }
4980}
4981EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03004982
4983/**
4984 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
4985 * @format: pixel format (DRM_FORMAT_*)
4986 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004987 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03004988 * The horizontal chroma subsampling factor for the
4989 * specified pixel format.
4990 */
4991int drm_format_horz_chroma_subsampling(uint32_t format)
4992{
4993 switch (format) {
4994 case DRM_FORMAT_YUV411:
4995 case DRM_FORMAT_YVU411:
4996 case DRM_FORMAT_YUV410:
4997 case DRM_FORMAT_YVU410:
4998 return 4;
4999 case DRM_FORMAT_YUYV:
5000 case DRM_FORMAT_YVYU:
5001 case DRM_FORMAT_UYVY:
5002 case DRM_FORMAT_VYUY:
5003 case DRM_FORMAT_NV12:
5004 case DRM_FORMAT_NV21:
5005 case DRM_FORMAT_NV16:
5006 case DRM_FORMAT_NV61:
5007 case DRM_FORMAT_YUV422:
5008 case DRM_FORMAT_YVU422:
5009 case DRM_FORMAT_YUV420:
5010 case DRM_FORMAT_YVU420:
5011 return 2;
5012 default:
5013 return 1;
5014 }
5015}
5016EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5017
5018/**
5019 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5020 * @format: pixel format (DRM_FORMAT_*)
5021 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005022 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005023 * The vertical chroma subsampling factor for the
5024 * specified pixel format.
5025 */
5026int drm_format_vert_chroma_subsampling(uint32_t format)
5027{
5028 switch (format) {
5029 case DRM_FORMAT_YUV410:
5030 case DRM_FORMAT_YVU410:
5031 return 4;
5032 case DRM_FORMAT_YUV420:
5033 case DRM_FORMAT_YVU420:
5034 case DRM_FORMAT_NV12:
5035 case DRM_FORMAT_NV21:
5036 return 2;
5037 default:
5038 return 1;
5039 }
5040}
5041EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005042
5043/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305044 * drm_rotation_simplify() - Try to simplify the rotation
5045 * @rotation: Rotation to be simplified
5046 * @supported_rotations: Supported rotations
5047 *
5048 * Attempt to simplify the rotation to a form that is supported.
5049 * Eg. if the hardware supports everything except DRM_REFLECT_X
5050 * one could call this function like this:
5051 *
5052 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5053 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5054 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5055 *
5056 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5057 * transforms the hardware supports, this function may not
5058 * be able to produce a supported transform, so the caller should
5059 * check the result afterwards.
5060 */
5061unsigned int drm_rotation_simplify(unsigned int rotation,
5062 unsigned int supported_rotations)
5063{
5064 if (rotation & ~supported_rotations) {
5065 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5066 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5067 }
5068
5069 return rotation;
5070}
5071EXPORT_SYMBOL(drm_rotation_simplify);
5072
5073/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005074 * drm_mode_config_init - initialize DRM mode_configuration structure
5075 * @dev: DRM device
5076 *
5077 * Initialize @dev's mode_config structure, used for tracking the graphics
5078 * configuration of @dev.
5079 *
5080 * Since this initializes the modeset locks, no locking is possible. Which is no
5081 * problem, since this should happen single threaded at init time. It is the
5082 * driver's problem to ensure this guarantee.
5083 *
5084 */
5085void drm_mode_config_init(struct drm_device *dev)
5086{
5087 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005088 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005089 mutex_init(&dev->mode_config.idr_mutex);
5090 mutex_init(&dev->mode_config.fb_lock);
5091 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5092 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5093 INIT_LIST_HEAD(&dev->mode_config.connector_list);
Sean Paul3b336ec2013-08-14 16:47:37 -04005094 INIT_LIST_HEAD(&dev->mode_config.bridge_list);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005095 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5096 INIT_LIST_HEAD(&dev->mode_config.property_list);
5097 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5098 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5099 idr_init(&dev->mode_config.crtc_idr);
5100
5101 drm_modeset_lock_all(dev);
5102 drm_mode_create_standard_connector_properties(dev);
Rob Clark9922ab52014-04-01 20:16:57 -04005103 drm_mode_create_standard_plane_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005104 drm_modeset_unlock_all(dev);
5105
5106 /* Just to be sure */
5107 dev->mode_config.num_fb = 0;
5108 dev->mode_config.num_connector = 0;
5109 dev->mode_config.num_crtc = 0;
5110 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005111 dev->mode_config.num_overlay_plane = 0;
5112 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005113}
5114EXPORT_SYMBOL(drm_mode_config_init);
5115
5116/**
5117 * drm_mode_config_cleanup - free up DRM mode_config info
5118 * @dev: DRM device
5119 *
5120 * Free up all the connectors and CRTCs associated with this DRM device, then
5121 * free up the framebuffers and associated buffer objects.
5122 *
5123 * Note that since this /should/ happen single-threaded at driver/device
5124 * teardown time, no locking is required. It's the driver's job to ensure that
5125 * this guarantee actually holds true.
5126 *
5127 * FIXME: cleanup any dangling user buffer objects too
5128 */
5129void drm_mode_config_cleanup(struct drm_device *dev)
5130{
5131 struct drm_connector *connector, *ot;
5132 struct drm_crtc *crtc, *ct;
5133 struct drm_encoder *encoder, *enct;
Sean Paul3b336ec2013-08-14 16:47:37 -04005134 struct drm_bridge *bridge, *brt;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005135 struct drm_framebuffer *fb, *fbt;
5136 struct drm_property *property, *pt;
5137 struct drm_property_blob *blob, *bt;
5138 struct drm_plane *plane, *plt;
5139
5140 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5141 head) {
5142 encoder->funcs->destroy(encoder);
5143 }
5144
Sean Paul3b336ec2013-08-14 16:47:37 -04005145 list_for_each_entry_safe(bridge, brt,
5146 &dev->mode_config.bridge_list, head) {
5147 bridge->funcs->destroy(bridge);
5148 }
5149
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005150 list_for_each_entry_safe(connector, ot,
5151 &dev->mode_config.connector_list, head) {
5152 connector->funcs->destroy(connector);
5153 }
5154
5155 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5156 head) {
5157 drm_property_destroy(dev, property);
5158 }
5159
5160 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5161 head) {
5162 drm_property_destroy_blob(dev, blob);
5163 }
5164
5165 /*
5166 * Single-threaded teardown context, so it's not required to grab the
5167 * fb_lock to protect against concurrent fb_list access. Contrary, it
5168 * would actually deadlock with the drm_framebuffer_cleanup function.
5169 *
5170 * Also, if there are any framebuffers left, that's a driver leak now,
5171 * so politely WARN about this.
5172 */
5173 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5174 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5175 drm_framebuffer_remove(fb);
5176 }
5177
5178 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5179 head) {
5180 plane->funcs->destroy(plane);
5181 }
5182
5183 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5184 crtc->funcs->destroy(crtc);
5185 }
5186
5187 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005188 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005189}
5190EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305191
5192struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5193 unsigned int supported_rotations)
5194{
5195 static const struct drm_prop_enum_list props[] = {
5196 { DRM_ROTATE_0, "rotate-0" },
5197 { DRM_ROTATE_90, "rotate-90" },
5198 { DRM_ROTATE_180, "rotate-180" },
5199 { DRM_ROTATE_270, "rotate-270" },
5200 { DRM_REFLECT_X, "reflect-x" },
5201 { DRM_REFLECT_Y, "reflect-y" },
5202 };
5203
5204 return drm_property_create_bitmask(dev, 0, "rotation",
5205 props, ARRAY_SIZE(props),
5206 supported_rotations);
5207}
5208EXPORT_SYMBOL(drm_mode_create_rotation_property);