blob: 5ee4b8806aca356388627137aa3b72d736453788 [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)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100686 return ret;
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
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100700 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800701}
Matt Ropere13161a2014-04-01 15:22:38 -0700702EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800703
704/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000705 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800706 * @crtc: CRTC to cleanup
707 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000708 * This function cleans up @crtc and removes it from the DRM mode setting
709 * core. Note that the function does *not* free the crtc structure itself,
710 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800711 */
712void drm_crtc_cleanup(struct drm_crtc *crtc)
713{
714 struct drm_device *dev = crtc->dev;
715
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000716 kfree(crtc->gamma_store);
717 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800718
Rob Clark51fd3712013-11-19 12:10:12 -0500719 drm_modeset_lock_fini(&crtc->mutex);
720
Dave Airlief453ba02008-11-07 14:05:41 -0800721 drm_mode_object_put(dev, &crtc->base);
722 list_del(&crtc->head);
723 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100724
725 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
726 if (crtc->state && crtc->funcs->atomic_destroy_state)
727 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100728
729 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800730}
731EXPORT_SYMBOL(drm_crtc_cleanup);
732
733/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000734 * drm_crtc_index - find the index of a registered CRTC
735 * @crtc: CRTC to find index for
736 *
737 * Given a registered CRTC, return the index of that CRTC within a DRM
738 * device's list of CRTCs.
739 */
740unsigned int drm_crtc_index(struct drm_crtc *crtc)
741{
742 unsigned int index = 0;
743 struct drm_crtc *tmp;
744
745 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
746 if (tmp == crtc)
747 return index;
748
749 index++;
750 }
751
752 BUG();
753}
754EXPORT_SYMBOL(drm_crtc_index);
755
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100756/*
Dave Airlief453ba02008-11-07 14:05:41 -0800757 * drm_mode_remove - remove and free a mode
758 * @connector: connector list to modify
759 * @mode: mode to remove
760 *
Dave Airlief453ba02008-11-07 14:05:41 -0800761 * Remove @mode from @connector's mode list, then free it.
762 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100763static void drm_mode_remove(struct drm_connector *connector,
764 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800765{
766 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100767 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800768}
Dave Airlief453ba02008-11-07 14:05:41 -0800769
770/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200771 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
772 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200773 *
774 * The kernel supports per-connector configration of its consoles through
775 * use of the video= parameter. This function parses that option and
776 * extracts the user's specified mode (or enable/disable status) for a
777 * particular connector. This is typically only used during the early fbdev
778 * setup.
779 */
780static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
781{
782 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
783 char *option = NULL;
784
785 if (fb_get_options(connector->name, &option))
786 return;
787
788 if (!drm_mode_parse_command_line_for_connector(option,
789 connector,
790 mode))
791 return;
792
793 if (mode->force) {
794 const char *s;
795
796 switch (mode->force) {
797 case DRM_FORCE_OFF:
798 s = "OFF";
799 break;
800 case DRM_FORCE_ON_DIGITAL:
801 s = "ON - dig";
802 break;
803 default:
804 case DRM_FORCE_ON:
805 s = "ON";
806 break;
807 }
808
809 DRM_INFO("forcing %s connector %s\n", connector->name, s);
810 connector->force = mode->force;
811 }
812
813 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
814 connector->name,
815 mode->xres, mode->yres,
816 mode->refresh_specified ? mode->refresh : 60,
817 mode->rb ? " reduced blanking" : "",
818 mode->margins ? " with margins" : "",
819 mode->interlace ? " interlaced" : "");
820}
821
822/**
Dave Airlief453ba02008-11-07 14:05:41 -0800823 * drm_connector_init - Init a preallocated connector
824 * @dev: DRM device
825 * @connector: the connector to init
826 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100827 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800828 *
Dave Airlief453ba02008-11-07 14:05:41 -0800829 * Initialises a preallocated connector. Connectors should be
830 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200831 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100832 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200833 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800834 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200835int drm_connector_init(struct drm_device *dev,
836 struct drm_connector *connector,
837 const struct drm_connector_funcs *funcs,
838 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800839{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200840 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400841 struct ida *connector_ida =
842 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200843
Daniel Vetter84849902012-12-02 00:28:11 +0100844 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800845
Dave Airlie2ee39452014-07-24 11:53:45 +1000846 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200847 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300848 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200849
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300850 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800851 connector->dev = dev;
852 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800853 connector->connector_type = connector_type;
854 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400855 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
856 if (connector->connector_type_id < 0) {
857 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300858 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400859 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300860 connector->name =
861 kasprintf(GFP_KERNEL, "%s-%d",
862 drm_connector_enum_list[connector_type].name,
863 connector->connector_type_id);
864 if (!connector->name) {
865 ret = -ENOMEM;
866 goto out_put;
867 }
868
Dave Airlief453ba02008-11-07 14:05:41 -0800869 INIT_LIST_HEAD(&connector->probed_modes);
870 INIT_LIST_HEAD(&connector->modes);
871 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000872 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800873
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200874 drm_connector_get_cmdline_mode(connector);
875
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100876 /* We should add connectors at the end to avoid upsetting the connector
877 * index too much. */
Dave Airlief453ba02008-11-07 14:05:41 -0800878 list_add_tail(&connector->head, &dev->mode_config.connector_list);
879 dev->mode_config.num_connector++;
880
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200881 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500882 drm_object_attach_property(&connector->base,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200883 dev->mode_config.edid_property,
884 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800885
Rob Clark58495562012-10-11 20:50:56 -0500886 drm_object_attach_property(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -0800887 dev->mode_config.dpms_property, 0);
888
Thomas Wood30f65702014-06-18 17:52:32 +0100889 connector->debugfs_entry = NULL;
890
Jani Nikula2abdd312014-05-14 16:58:19 +0300891out_put:
892 if (ret)
893 drm_mode_object_put(dev, &connector->base);
894
895out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100896 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200897
898 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800899}
900EXPORT_SYMBOL(drm_connector_init);
901
902/**
903 * drm_connector_cleanup - cleans up an initialised connector
904 * @connector: connector to cleanup
905 *
Dave Airlief453ba02008-11-07 14:05:41 -0800906 * Cleans up the connector but doesn't free the object.
907 */
908void drm_connector_cleanup(struct drm_connector *connector)
909{
910 struct drm_device *dev = connector->dev;
911 struct drm_display_mode *mode, *t;
912
Dave Airlie40d9b042014-10-20 16:29:33 +1000913 if (connector->tile_group) {
914 drm_mode_put_tile_group(dev, connector->tile_group);
915 connector->tile_group = NULL;
916 }
917
Dave Airlief453ba02008-11-07 14:05:41 -0800918 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
919 drm_mode_remove(connector, mode);
920
921 list_for_each_entry_safe(mode, t, &connector->modes, head)
922 drm_mode_remove(connector, mode);
923
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400924 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
925 connector->connector_type_id);
926
Dave Airlief453ba02008-11-07 14:05:41 -0800927 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300928 kfree(connector->name);
929 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800930 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000931 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100932
933 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
934 if (connector->state && connector->funcs->atomic_destroy_state)
935 connector->funcs->atomic_destroy_state(connector,
936 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100937
938 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800939}
940EXPORT_SYMBOL(drm_connector_cleanup);
941
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100942/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200943 * drm_connector_index - find the index of a registered connector
944 * @connector: connector to find index for
945 *
946 * Given a registered connector, return the index of that connector within a DRM
947 * device's list of connectors.
948 */
949unsigned int drm_connector_index(struct drm_connector *connector)
950{
951 unsigned int index = 0;
952 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100953 struct drm_mode_config *config = &connector->dev->mode_config;
954
955 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +0200956
957 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
958 if (tmp == connector)
959 return index;
960
961 index++;
962 }
963
964 BUG();
965}
966EXPORT_SYMBOL(drm_connector_index);
967
968/**
Thomas Wood34ea3d32014-05-29 16:57:41 +0100969 * drm_connector_register - register a connector
970 * @connector: the connector to register
971 *
972 * Register userspace interfaces for a connector
973 *
974 * Returns:
975 * Zero on success, error code on failure.
976 */
977int drm_connector_register(struct drm_connector *connector)
978{
Thomas Wood30f65702014-06-18 17:52:32 +0100979 int ret;
980
Dave Airlie2ee39452014-07-24 11:53:45 +1000981 drm_mode_object_register(connector->dev, &connector->base);
982
Thomas Wood30f65702014-06-18 17:52:32 +0100983 ret = drm_sysfs_connector_add(connector);
984 if (ret)
985 return ret;
986
987 ret = drm_debugfs_connector_add(connector);
988 if (ret) {
989 drm_sysfs_connector_remove(connector);
990 return ret;
991 }
992
993 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +0100994}
995EXPORT_SYMBOL(drm_connector_register);
996
997/**
998 * drm_connector_unregister - unregister a connector
999 * @connector: the connector to unregister
1000 *
1001 * Unregister userspace interfaces for a connector
1002 */
1003void drm_connector_unregister(struct drm_connector *connector)
1004{
1005 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001006 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001007}
1008EXPORT_SYMBOL(drm_connector_unregister);
1009
1010
1011/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001012 * drm_connector_unplug_all - unregister connector userspace interfaces
1013 * @dev: drm device
1014 *
1015 * This function unregisters all connector userspace interfaces in sysfs. Should
1016 * be call when the device is disconnected, e.g. from an usb driver's
1017 * ->disconnect callback.
1018 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001019void drm_connector_unplug_all(struct drm_device *dev)
1020{
1021 struct drm_connector *connector;
1022
1023 /* taking the mode config mutex ends up in a clash with sysfs */
1024 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001025 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001026
1027}
1028EXPORT_SYMBOL(drm_connector_unplug_all);
1029
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001030/**
1031 * drm_bridge_init - initialize a drm transcoder/bridge
1032 * @dev: drm device
1033 * @bridge: transcoder/bridge to set up
1034 * @funcs: bridge function table
1035 *
1036 * Initialises a preallocated bridge. Bridges should be
1037 * subclassed as part of driver connector objects.
1038 *
1039 * Returns:
1040 * Zero on success, error code on failure.
1041 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001042int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
1043 const struct drm_bridge_funcs *funcs)
1044{
1045 int ret;
1046
1047 drm_modeset_lock_all(dev);
1048
1049 ret = drm_mode_object_get(dev, &bridge->base, DRM_MODE_OBJECT_BRIDGE);
1050 if (ret)
1051 goto out;
1052
1053 bridge->dev = dev;
1054 bridge->funcs = funcs;
1055
1056 list_add_tail(&bridge->head, &dev->mode_config.bridge_list);
1057 dev->mode_config.num_bridge++;
1058
1059 out:
1060 drm_modeset_unlock_all(dev);
1061 return ret;
1062}
1063EXPORT_SYMBOL(drm_bridge_init);
1064
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001065/**
1066 * drm_bridge_cleanup - cleans up an initialised bridge
1067 * @bridge: bridge to cleanup
1068 *
1069 * Cleans up the bridge but doesn't free the object.
1070 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001071void drm_bridge_cleanup(struct drm_bridge *bridge)
1072{
1073 struct drm_device *dev = bridge->dev;
1074
1075 drm_modeset_lock_all(dev);
1076 drm_mode_object_put(dev, &bridge->base);
1077 list_del(&bridge->head);
1078 dev->mode_config.num_bridge--;
1079 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001080
1081 memset(bridge, 0, sizeof(*bridge));
Sean Paul3b336ec2013-08-14 16:47:37 -04001082}
1083EXPORT_SYMBOL(drm_bridge_cleanup);
1084
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001085/**
1086 * drm_encoder_init - Init a preallocated encoder
1087 * @dev: drm device
1088 * @encoder: the encoder to init
1089 * @funcs: callbacks for this encoder
1090 * @encoder_type: user visible type of the encoder
1091 *
1092 * Initialises a preallocated encoder. Encoder should be
1093 * subclassed as part of driver encoder objects.
1094 *
1095 * Returns:
1096 * Zero on success, error code on failure.
1097 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001098int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001099 struct drm_encoder *encoder,
1100 const struct drm_encoder_funcs *funcs,
1101 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001102{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001103 int ret;
1104
Daniel Vetter84849902012-12-02 00:28:11 +01001105 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001106
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001107 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1108 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001109 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001110
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001111 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001112 encoder->encoder_type = encoder_type;
1113 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001114 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1115 drm_encoder_enum_list[encoder_type].name,
1116 encoder->base.id);
1117 if (!encoder->name) {
1118 ret = -ENOMEM;
1119 goto out_put;
1120 }
Dave Airlief453ba02008-11-07 14:05:41 -08001121
1122 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1123 dev->mode_config.num_encoder++;
1124
Jani Nikulae5748942014-05-14 16:58:20 +03001125out_put:
1126 if (ret)
1127 drm_mode_object_put(dev, &encoder->base);
1128
1129out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001130 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001131
1132 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001133}
1134EXPORT_SYMBOL(drm_encoder_init);
1135
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001136/**
1137 * drm_encoder_cleanup - cleans up an initialised encoder
1138 * @encoder: encoder to cleanup
1139 *
1140 * Cleans up the encoder but doesn't free the object.
1141 */
Dave Airlief453ba02008-11-07 14:05:41 -08001142void drm_encoder_cleanup(struct drm_encoder *encoder)
1143{
1144 struct drm_device *dev = encoder->dev;
Daniel Vetter84849902012-12-02 00:28:11 +01001145 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001146 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001147 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001148 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001149 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001150 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001151
1152 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001153}
1154EXPORT_SYMBOL(drm_encoder_cleanup);
1155
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001156/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001157 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001158 * @dev: DRM device
1159 * @plane: plane object to init
1160 * @possible_crtcs: bitmask of possible CRTCs
1161 * @funcs: callbacks for the new plane
1162 * @formats: array of supported formats (%DRM_FORMAT_*)
1163 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001164 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001165 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001166 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001167 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001168 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001169 * Zero on success, error code on failure.
1170 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001171int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1172 unsigned long possible_crtcs,
1173 const struct drm_plane_funcs *funcs,
1174 const uint32_t *formats, uint32_t format_count,
1175 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001176{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001177 int ret;
1178
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001179 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1180 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001181 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001182
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001183 drm_modeset_lock_init(&plane->mutex);
1184
Rob Clark4d939142012-05-17 02:23:27 -06001185 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001186 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001187 plane->funcs = funcs;
1188 plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
1189 GFP_KERNEL);
1190 if (!plane->format_types) {
1191 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1192 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001193 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001194 }
1195
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001196 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001197 plane->format_count = format_count;
1198 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001199 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001200
Matt Roperdc415ff2014-04-01 15:22:36 -07001201 list_add_tail(&plane->head, &dev->mode_config.plane_list);
1202 dev->mode_config.num_total_plane++;
1203 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1204 dev->mode_config.num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001205
Rob Clark9922ab52014-04-01 20:16:57 -04001206 drm_object_attach_property(&plane->base,
1207 dev->mode_config.plane_type_property,
1208 plane->type);
1209
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001210 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001211}
Matt Roperdc415ff2014-04-01 15:22:36 -07001212EXPORT_SYMBOL(drm_universal_plane_init);
1213
1214/**
1215 * drm_plane_init - Initialize a legacy plane
1216 * @dev: DRM device
1217 * @plane: plane object to init
1218 * @possible_crtcs: bitmask of possible CRTCs
1219 * @funcs: callbacks for the new plane
1220 * @formats: array of supported formats (%DRM_FORMAT_*)
1221 * @format_count: number of elements in @formats
1222 * @is_primary: plane type (primary vs overlay)
1223 *
1224 * Legacy API to initialize a DRM plane.
1225 *
1226 * New drivers should call drm_universal_plane_init() instead.
1227 *
1228 * Returns:
1229 * Zero on success, error code on failure.
1230 */
1231int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1232 unsigned long possible_crtcs,
1233 const struct drm_plane_funcs *funcs,
1234 const uint32_t *formats, uint32_t format_count,
1235 bool is_primary)
1236{
1237 enum drm_plane_type type;
1238
1239 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1240 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1241 formats, format_count, type);
1242}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001243EXPORT_SYMBOL(drm_plane_init);
1244
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001245/**
1246 * drm_plane_cleanup - Clean up the core plane usage
1247 * @plane: plane to cleanup
1248 *
1249 * This function cleans up @plane and removes it from the DRM mode setting
1250 * core. Note that the function does *not* free the plane structure itself,
1251 * this is the responsibility of the caller.
1252 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001253void drm_plane_cleanup(struct drm_plane *plane)
1254{
1255 struct drm_device *dev = plane->dev;
1256
Daniel Vetter84849902012-12-02 00:28:11 +01001257 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001258 kfree(plane->format_types);
1259 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001260
1261 BUG_ON(list_empty(&plane->head));
1262
1263 list_del(&plane->head);
1264 dev->mode_config.num_total_plane--;
1265 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1266 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001267 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001268
1269 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1270 if (plane->state && plane->funcs->atomic_destroy_state)
1271 plane->funcs->atomic_destroy_state(plane, plane->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001272
1273 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001274}
1275EXPORT_SYMBOL(drm_plane_cleanup);
1276
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001277/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001278 * drm_plane_index - find the index of a registered plane
1279 * @plane: plane to find index for
1280 *
1281 * Given a registered plane, return the index of that CRTC within a DRM
1282 * device's list of planes.
1283 */
1284unsigned int drm_plane_index(struct drm_plane *plane)
1285{
1286 unsigned int index = 0;
1287 struct drm_plane *tmp;
1288
1289 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1290 if (tmp == plane)
1291 return index;
1292
1293 index++;
1294 }
1295
1296 BUG();
1297}
1298EXPORT_SYMBOL(drm_plane_index);
1299
1300/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001301 * drm_plane_force_disable - Forcibly disable a plane
1302 * @plane: plane to disable
1303 *
1304 * Forces the plane to be disabled.
1305 *
1306 * Used when the plane's current framebuffer is destroyed,
1307 * and when restoring fbdev mode.
1308 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001309void drm_plane_force_disable(struct drm_plane *plane)
1310{
1311 int ret;
1312
Daniel Vetter3d30a592014-07-27 13:42:42 +02001313 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001314 return;
1315
Daniel Vetter3d30a592014-07-27 13:42:42 +02001316 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001317 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001318 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001319 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001320 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001321 return;
1322 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001323 /* disconnect the plane from the fb and crtc: */
Daniel Vetter3d30a592014-07-27 13:42:42 +02001324 __drm_framebuffer_unreference(plane->old_fb);
1325 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001326 plane->fb = NULL;
1327 plane->crtc = NULL;
1328}
1329EXPORT_SYMBOL(drm_plane_force_disable);
1330
Dave Airlief453ba02008-11-07 14:05:41 -08001331static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
1332{
1333 struct drm_property *edid;
1334 struct drm_property *dpms;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001335 struct drm_property *dev_path;
Dave Airlief453ba02008-11-07 14:05:41 -08001336
1337 /*
1338 * Standard properties (apply to all connectors)
1339 */
1340 edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1341 DRM_MODE_PROP_IMMUTABLE,
1342 "EDID", 0);
1343 dev->mode_config.edid_property = edid;
1344
Sascha Hauer4a67d392012-02-06 10:58:17 +01001345 dpms = drm_property_create_enum(dev, 0,
1346 "DPMS", drm_dpms_enum_list,
1347 ARRAY_SIZE(drm_dpms_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001348 dev->mode_config.dpms_property = dpms;
1349
Dave Airlie43aba7e2014-06-05 14:01:31 +10001350 dev_path = drm_property_create(dev,
1351 DRM_MODE_PROP_BLOB |
1352 DRM_MODE_PROP_IMMUTABLE,
1353 "PATH", 0);
1354 dev->mode_config.path_property = dev_path;
1355
Dave Airlie6f134d72014-10-20 16:30:50 +10001356 dev->mode_config.tile_property = drm_property_create(dev,
1357 DRM_MODE_PROP_BLOB |
1358 DRM_MODE_PROP_IMMUTABLE,
1359 "TILE", 0);
1360
Dave Airlief453ba02008-11-07 14:05:41 -08001361 return 0;
1362}
1363
Rob Clark9922ab52014-04-01 20:16:57 -04001364static int drm_mode_create_standard_plane_properties(struct drm_device *dev)
1365{
1366 struct drm_property *type;
1367
1368 /*
1369 * Standard properties (apply to all planes)
1370 */
1371 type = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1372 "type", drm_plane_type_enum_list,
1373 ARRAY_SIZE(drm_plane_type_enum_list));
1374 dev->mode_config.plane_type_property = type;
1375
1376 return 0;
1377}
1378
Dave Airlief453ba02008-11-07 14:05:41 -08001379/**
1380 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1381 * @dev: DRM device
1382 *
1383 * Called by a driver the first time a DVI-I connector is made.
1384 */
1385int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1386{
1387 struct drm_property *dvi_i_selector;
1388 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001389
1390 if (dev->mode_config.dvi_i_select_subconnector_property)
1391 return 0;
1392
1393 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001394 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001395 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001396 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001397 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001398 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1399
Sascha Hauer4a67d392012-02-06 10:58:17 +01001400 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001401 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001402 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001403 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001404 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1405
1406 return 0;
1407}
1408EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1409
1410/**
1411 * drm_create_tv_properties - create TV specific connector properties
1412 * @dev: DRM device
1413 * @num_modes: number of different TV formats (modes) supported
1414 * @modes: array of pointers to strings containing name of each format
1415 *
1416 * Called by a driver's TV initialization routine, this function creates
1417 * the TV specific connector properties for a given device. Caller is
1418 * responsible for allocating a list of format names and passing them to
1419 * this routine.
1420 */
Thierry Reding2f763312014-10-13 12:45:57 +02001421int drm_mode_create_tv_properties(struct drm_device *dev,
1422 unsigned int num_modes,
Dave Airlief453ba02008-11-07 14:05:41 -08001423 char *modes[])
1424{
1425 struct drm_property *tv_selector;
1426 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001427 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001428
1429 if (dev->mode_config.tv_select_subconnector_property)
1430 return 0;
1431
1432 /*
1433 * Basic connector properties
1434 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001435 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001436 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001437 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001438 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001439 dev->mode_config.tv_select_subconnector_property = tv_selector;
1440
1441 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001442 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1443 "subconnector",
1444 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001445 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001446 dev->mode_config.tv_subconnector_property = tv_subconnector;
1447
1448 /*
1449 * Other, TV specific properties: margins & TV modes.
1450 */
1451 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001452 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001453
1454 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001455 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001456
1457 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001458 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001459
1460 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001461 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001462
1463 dev->mode_config.tv_mode_property =
1464 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1465 "mode", num_modes);
1466 for (i = 0; i < num_modes; i++)
1467 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1468 i, modes[i]);
1469
Francisco Jerezb6b79022009-08-02 04:19:20 +02001470 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001471 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001472
1473 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001474 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001475
1476 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001477 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001478
Francisco Jereza75f0232009-08-12 02:30:10 +02001479 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001480 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001481
1482 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001483 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001484
1485 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001486 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001487
Dave Airlief453ba02008-11-07 14:05:41 -08001488 return 0;
1489}
1490EXPORT_SYMBOL(drm_mode_create_tv_properties);
1491
1492/**
1493 * drm_mode_create_scaling_mode_property - create scaling mode property
1494 * @dev: DRM device
1495 *
1496 * Called by a driver the first time it's needed, must be attached to desired
1497 * connectors.
1498 */
1499int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1500{
1501 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001502
1503 if (dev->mode_config.scaling_mode_property)
1504 return 0;
1505
1506 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001507 drm_property_create_enum(dev, 0, "scaling mode",
1508 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001509 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001510
1511 dev->mode_config.scaling_mode_property = scaling_mode;
1512
1513 return 0;
1514}
1515EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1516
1517/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301518 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1519 * @dev: DRM device
1520 *
1521 * Called by a driver the first time it's needed, must be attached to desired
1522 * connectors.
1523 *
1524 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001525 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301526 */
1527int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1528{
1529 if (dev->mode_config.aspect_ratio_property)
1530 return 0;
1531
1532 dev->mode_config.aspect_ratio_property =
1533 drm_property_create_enum(dev, 0, "aspect ratio",
1534 drm_aspect_ratio_enum_list,
1535 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1536
1537 if (dev->mode_config.aspect_ratio_property == NULL)
1538 return -ENOMEM;
1539
1540 return 0;
1541}
1542EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1543
1544/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001545 * drm_mode_create_dirty_property - create dirty property
1546 * @dev: DRM device
1547 *
1548 * Called by a driver the first time it's needed, must be attached to desired
1549 * connectors.
1550 */
1551int drm_mode_create_dirty_info_property(struct drm_device *dev)
1552{
1553 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001554
1555 if (dev->mode_config.dirty_info_property)
1556 return 0;
1557
1558 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001559 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001560 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001561 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001562 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001563 dev->mode_config.dirty_info_property = dirty_info;
1564
1565 return 0;
1566}
1567EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1568
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001569/**
1570 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1571 * @dev: DRM device
1572 *
1573 * Create the the suggested x/y offset property for connectors.
1574 */
1575int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1576{
1577 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1578 return 0;
1579
1580 dev->mode_config.suggested_x_property =
1581 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1582
1583 dev->mode_config.suggested_y_property =
1584 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1585
1586 if (dev->mode_config.suggested_x_property == NULL ||
1587 dev->mode_config.suggested_y_property == NULL)
1588 return -ENOMEM;
1589 return 0;
1590}
1591EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1592
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001593static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001594{
1595 uint32_t total_objects = 0;
1596
1597 total_objects += dev->mode_config.num_crtc;
1598 total_objects += dev->mode_config.num_connector;
1599 total_objects += dev->mode_config.num_encoder;
Sean Paul3b336ec2013-08-14 16:47:37 -04001600 total_objects += dev->mode_config.num_bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001601
Dave Airlief453ba02008-11-07 14:05:41 -08001602 group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1603 if (!group->id_list)
1604 return -ENOMEM;
1605
1606 group->num_crtcs = 0;
1607 group->num_connectors = 0;
1608 group->num_encoders = 0;
Sean Paul3b336ec2013-08-14 16:47:37 -04001609 group->num_bridges = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001610 return 0;
1611}
1612
Dave Airliead222792014-05-02 13:22:19 +10001613void drm_mode_group_destroy(struct drm_mode_group *group)
1614{
1615 kfree(group->id_list);
1616 group->id_list = NULL;
1617}
1618
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001619/*
1620 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1621 * the drm core's responsibility to set up mode control groups.
1622 */
Dave Airlief453ba02008-11-07 14:05:41 -08001623int drm_mode_group_init_legacy_group(struct drm_device *dev,
1624 struct drm_mode_group *group)
1625{
1626 struct drm_crtc *crtc;
1627 struct drm_encoder *encoder;
1628 struct drm_connector *connector;
Sean Paul3b336ec2013-08-14 16:47:37 -04001629 struct drm_bridge *bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001630 int ret;
1631
1632 if ((ret = drm_mode_group_init(dev, group)))
1633 return ret;
1634
1635 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1636 group->id_list[group->num_crtcs++] = crtc->base.id;
1637
1638 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1639 group->id_list[group->num_crtcs + group->num_encoders++] =
1640 encoder->base.id;
1641
1642 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1643 group->id_list[group->num_crtcs + group->num_encoders +
1644 group->num_connectors++] = connector->base.id;
1645
Sean Paul3b336ec2013-08-14 16:47:37 -04001646 list_for_each_entry(bridge, &dev->mode_config.bridge_list, head)
1647 group->id_list[group->num_crtcs + group->num_encoders +
1648 group->num_connectors + group->num_bridges++] =
1649 bridge->base.id;
1650
Dave Airlief453ba02008-11-07 14:05:41 -08001651 return 0;
1652}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001653EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001654
Dave Airlie2390cd12014-06-05 14:01:29 +10001655void drm_reinit_primary_mode_group(struct drm_device *dev)
1656{
1657 drm_modeset_lock_all(dev);
1658 drm_mode_group_destroy(&dev->primary->mode_group);
1659 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1660 drm_modeset_unlock_all(dev);
1661}
1662EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1663
Dave Airlief453ba02008-11-07 14:05:41 -08001664/**
Dave Airlief453ba02008-11-07 14:05:41 -08001665 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1666 * @out: drm_mode_modeinfo struct to return to the user
1667 * @in: drm_display_mode to use
1668 *
Dave Airlief453ba02008-11-07 14:05:41 -08001669 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1670 * the user.
1671 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001672static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1673 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001674{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001675 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1676 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1677 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1678 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1679 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1680 "timing values too large for mode info\n");
1681
Dave Airlief453ba02008-11-07 14:05:41 -08001682 out->clock = in->clock;
1683 out->hdisplay = in->hdisplay;
1684 out->hsync_start = in->hsync_start;
1685 out->hsync_end = in->hsync_end;
1686 out->htotal = in->htotal;
1687 out->hskew = in->hskew;
1688 out->vdisplay = in->vdisplay;
1689 out->vsync_start = in->vsync_start;
1690 out->vsync_end = in->vsync_end;
1691 out->vtotal = in->vtotal;
1692 out->vscan = in->vscan;
1693 out->vrefresh = in->vrefresh;
1694 out->flags = in->flags;
1695 out->type = in->type;
1696 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1697 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1698}
1699
1700/**
Marc-André Lureau74afee72013-10-18 16:11:27 +02001701 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
Dave Airlief453ba02008-11-07 14:05:41 -08001702 * @out: drm_display_mode to return to the user
1703 * @in: drm_mode_modeinfo to use
1704 *
Dave Airlief453ba02008-11-07 14:05:41 -08001705 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1706 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001707 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001708 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001709 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001710 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001711static int drm_crtc_convert_umode(struct drm_display_mode *out,
1712 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001713{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001714 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1715 return -ERANGE;
1716
Damien Lespiau5848ad42013-09-27 12:11:50 +01001717 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1718 return -EINVAL;
1719
Dave Airlief453ba02008-11-07 14:05:41 -08001720 out->clock = in->clock;
1721 out->hdisplay = in->hdisplay;
1722 out->hsync_start = in->hsync_start;
1723 out->hsync_end = in->hsync_end;
1724 out->htotal = in->htotal;
1725 out->hskew = in->hskew;
1726 out->vdisplay = in->vdisplay;
1727 out->vsync_start = in->vsync_start;
1728 out->vsync_end = in->vsync_end;
1729 out->vtotal = in->vtotal;
1730 out->vscan = in->vscan;
1731 out->vrefresh = in->vrefresh;
1732 out->flags = in->flags;
1733 out->type = in->type;
1734 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1735 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001736
1737 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001738}
1739
1740/**
1741 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001742 * @dev: drm device for the ioctl
1743 * @data: data pointer for the ioctl
1744 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001745 *
Dave Airlief453ba02008-11-07 14:05:41 -08001746 * Construct a set of configuration description structures and return
1747 * them to the user, including CRTC, connector and framebuffer configuration.
1748 *
1749 * Called by the user via ioctl.
1750 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001751 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001752 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001753 */
1754int drm_mode_getresources(struct drm_device *dev, void *data,
1755 struct drm_file *file_priv)
1756{
1757 struct drm_mode_card_res *card_res = data;
1758 struct list_head *lh;
1759 struct drm_framebuffer *fb;
1760 struct drm_connector *connector;
1761 struct drm_crtc *crtc;
1762 struct drm_encoder *encoder;
1763 int ret = 0;
1764 int connector_count = 0;
1765 int crtc_count = 0;
1766 int fb_count = 0;
1767 int encoder_count = 0;
1768 int copied = 0, i;
1769 uint32_t __user *fb_id;
1770 uint32_t __user *crtc_id;
1771 uint32_t __user *connector_id;
1772 uint32_t __user *encoder_id;
1773 struct drm_mode_group *mode_group;
1774
Dave Airliefb3b06c2011-02-08 13:55:21 +10001775 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1776 return -EINVAL;
1777
Dave Airlief453ba02008-11-07 14:05:41 -08001778
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001779 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001780 /*
1781 * For the non-control nodes we need to limit the list of resources
1782 * by IDs in the group list for this node
1783 */
1784 list_for_each(lh, &file_priv->fbs)
1785 fb_count++;
1786
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001787 /* handle this in 4 parts */
1788 /* FBs */
1789 if (card_res->count_fbs >= fb_count) {
1790 copied = 0;
1791 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1792 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1793 if (put_user(fb->base.id, fb_id + copied)) {
1794 mutex_unlock(&file_priv->fbs_lock);
1795 return -EFAULT;
1796 }
1797 copied++;
1798 }
1799 }
1800 card_res->count_fbs = fb_count;
1801 mutex_unlock(&file_priv->fbs_lock);
1802
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001803 /* mode_config.mutex protects the connector list against e.g. DP MST
1804 * connector hot-adding. CRTC/Plane lists are invariant. */
1805 mutex_lock(&dev->mode_config.mutex);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001806 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001807
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001808 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001809 list_for_each(lh, &dev->mode_config.crtc_list)
1810 crtc_count++;
1811
1812 list_for_each(lh, &dev->mode_config.connector_list)
1813 connector_count++;
1814
1815 list_for_each(lh, &dev->mode_config.encoder_list)
1816 encoder_count++;
1817 } else {
1818
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001819 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001820 crtc_count = mode_group->num_crtcs;
1821 connector_count = mode_group->num_connectors;
1822 encoder_count = mode_group->num_encoders;
1823 }
1824
1825 card_res->max_height = dev->mode_config.max_height;
1826 card_res->min_height = dev->mode_config.min_height;
1827 card_res->max_width = dev->mode_config.max_width;
1828 card_res->min_width = dev->mode_config.min_width;
1829
Dave Airlief453ba02008-11-07 14:05:41 -08001830 /* CRTCs */
1831 if (card_res->count_crtcs >= crtc_count) {
1832 copied = 0;
1833 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001834 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001835 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1836 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001837 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001838 if (put_user(crtc->base.id, crtc_id + copied)) {
1839 ret = -EFAULT;
1840 goto out;
1841 }
1842 copied++;
1843 }
1844 } else {
1845 for (i = 0; i < mode_group->num_crtcs; i++) {
1846 if (put_user(mode_group->id_list[i],
1847 crtc_id + copied)) {
1848 ret = -EFAULT;
1849 goto out;
1850 }
1851 copied++;
1852 }
1853 }
1854 }
1855 card_res->count_crtcs = crtc_count;
1856
1857 /* Encoders */
1858 if (card_res->count_encoders >= encoder_count) {
1859 copied = 0;
1860 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001861 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001862 list_for_each_entry(encoder,
1863 &dev->mode_config.encoder_list,
1864 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001865 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001866 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001867 if (put_user(encoder->base.id, encoder_id +
1868 copied)) {
1869 ret = -EFAULT;
1870 goto out;
1871 }
1872 copied++;
1873 }
1874 } else {
1875 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1876 if (put_user(mode_group->id_list[i],
1877 encoder_id + copied)) {
1878 ret = -EFAULT;
1879 goto out;
1880 }
1881 copied++;
1882 }
1883
1884 }
1885 }
1886 card_res->count_encoders = encoder_count;
1887
1888 /* Connectors */
1889 if (card_res->count_connectors >= connector_count) {
1890 copied = 0;
1891 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001892 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001893 list_for_each_entry(connector,
1894 &dev->mode_config.connector_list,
1895 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001896 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1897 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001898 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001899 if (put_user(connector->base.id,
1900 connector_id + copied)) {
1901 ret = -EFAULT;
1902 goto out;
1903 }
1904 copied++;
1905 }
1906 } else {
1907 int start = mode_group->num_crtcs +
1908 mode_group->num_encoders;
1909 for (i = start; i < start + mode_group->num_connectors; i++) {
1910 if (put_user(mode_group->id_list[i],
1911 connector_id + copied)) {
1912 ret = -EFAULT;
1913 goto out;
1914 }
1915 copied++;
1916 }
1917 }
1918 }
1919 card_res->count_connectors = connector_count;
1920
Jerome Glisse94401062010-07-15 15:43:25 -04001921 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001922 card_res->count_connectors, card_res->count_encoders);
1923
1924out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001925 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001926 return ret;
1927}
1928
1929/**
1930 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001931 * @dev: drm device for the ioctl
1932 * @data: data pointer for the ioctl
1933 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001934 *
Dave Airlief453ba02008-11-07 14:05:41 -08001935 * Construct a CRTC configuration structure to return to the user.
1936 *
1937 * Called by the user via ioctl.
1938 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001939 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001940 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001941 */
1942int drm_mode_getcrtc(struct drm_device *dev,
1943 void *data, struct drm_file *file_priv)
1944{
1945 struct drm_mode_crtc *crtc_resp = data;
1946 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001947
Dave Airliefb3b06c2011-02-08 13:55:21 +10001948 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1949 return -EINVAL;
1950
Rob Clarka2b34e22013-10-05 16:36:52 -04001951 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001952 if (!crtc)
1953 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001954
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001955 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08001956 crtc_resp->x = crtc->x;
1957 crtc_resp->y = crtc->y;
1958 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07001959 if (crtc->primary->fb)
1960 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08001961 else
1962 crtc_resp->fb_id = 0;
1963
1964 if (crtc->enabled) {
1965
1966 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1967 crtc_resp->mode_valid = 1;
1968
1969 } else {
1970 crtc_resp->mode_valid = 0;
1971 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001972 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08001973
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001974 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001975}
1976
Damien Lespiau61d8e322013-09-25 16:45:22 +01001977static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1978 const struct drm_file *file_priv)
1979{
1980 /*
1981 * If user-space hasn't configured the driver to expose the stereo 3D
1982 * modes, don't expose them.
1983 */
1984 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1985 return false;
1986
1987 return true;
1988}
1989
Daniel Vetterabd69c52014-11-25 23:50:05 +01001990static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
1991{
1992 /* For atomic drivers only state objects are synchronously updated and
1993 * protected by modeset locks, so check those first. */
1994 if (connector->state)
1995 return connector->state->best_encoder;
1996 return connector->encoder;
1997}
1998
Dave Airlief453ba02008-11-07 14:05:41 -08001999/**
2000 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002001 * @dev: drm device for the ioctl
2002 * @data: data pointer for the ioctl
2003 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002004 *
Dave Airlief453ba02008-11-07 14:05:41 -08002005 * Construct a connector configuration structure to return to the user.
2006 *
2007 * Called by the user via ioctl.
2008 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002009 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002010 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002011 */
2012int drm_mode_getconnector(struct drm_device *dev, void *data,
2013 struct drm_file *file_priv)
2014{
2015 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002016 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002017 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08002018 struct drm_display_mode *mode;
2019 int mode_count = 0;
2020 int props_count = 0;
2021 int encoders_count = 0;
2022 int ret = 0;
2023 int copied = 0;
2024 int i;
2025 struct drm_mode_modeinfo u_mode;
2026 struct drm_mode_modeinfo __user *mode_ptr;
2027 uint32_t __user *prop_ptr;
2028 uint64_t __user *prop_values;
2029 uint32_t __user *encoder_ptr;
2030
Dave Airliefb3b06c2011-02-08 13:55:21 +10002031 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2032 return -EINVAL;
2033
Dave Airlief453ba02008-11-07 14:05:41 -08002034 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2035
Jerome Glisse94401062010-07-15 15:43:25 -04002036 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002037
Daniel Vetter7b240562012-12-12 00:35:33 +01002038 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002039
Rob Clarka2b34e22013-10-05 16:36:52 -04002040 connector = drm_connector_find(dev, out_resp->connector_id);
2041 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002042 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002043 goto out;
2044 }
Dave Airlief453ba02008-11-07 14:05:41 -08002045
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002046 props_count = connector->properties.count;
Dave Airlief453ba02008-11-07 14:05:41 -08002047
2048 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2049 if (connector->encoder_ids[i] != 0) {
2050 encoders_count++;
2051 }
2052 }
2053
2054 if (out_resp->count_modes == 0) {
2055 connector->funcs->fill_modes(connector,
2056 dev->mode_config.max_width,
2057 dev->mode_config.max_height);
2058 }
2059
2060 /* delayed so we get modes regardless of pre-fill_modes state */
2061 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002062 if (drm_mode_expose_to_userspace(mode, file_priv))
2063 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002064
2065 out_resp->connector_id = connector->base.id;
2066 out_resp->connector_type = connector->connector_type;
2067 out_resp->connector_type_id = connector->connector_type_id;
2068 out_resp->mm_width = connector->display_info.width_mm;
2069 out_resp->mm_height = connector->display_info.height_mm;
2070 out_resp->subpixel = connector->display_info.subpixel_order;
2071 out_resp->connection = connector->status;
Daniel Vetter832fd392014-06-05 11:07:20 +02002072 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002073
2074 encoder = drm_connector_get_encoder(connector);
2075 if (encoder)
2076 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002077 else
2078 out_resp->encoder_id = 0;
Daniel Vetter832fd392014-06-05 11:07:20 +02002079 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002080
2081 /*
2082 * This ioctl is called twice, once to determine how much space is
2083 * needed, and the 2nd time to fill it.
2084 */
2085 if ((out_resp->count_modes >= mode_count) && mode_count) {
2086 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002087 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002088 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002089 if (!drm_mode_expose_to_userspace(mode, file_priv))
2090 continue;
2091
Dave Airlief453ba02008-11-07 14:05:41 -08002092 drm_crtc_convert_to_umode(&u_mode, mode);
2093 if (copy_to_user(mode_ptr + copied,
2094 &u_mode, sizeof(u_mode))) {
2095 ret = -EFAULT;
2096 goto out;
2097 }
2098 copied++;
2099 }
2100 }
2101 out_resp->count_modes = mode_count;
2102
2103 if ((out_resp->count_props >= props_count) && props_count) {
2104 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002105 prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
2106 prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002107 for (i = 0; i < connector->properties.count; i++) {
2108 if (put_user(connector->properties.ids[i],
2109 prop_ptr + copied)) {
2110 ret = -EFAULT;
2111 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002112 }
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002113
2114 if (put_user(connector->properties.values[i],
2115 prop_values + copied)) {
2116 ret = -EFAULT;
2117 goto out;
2118 }
2119 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08002120 }
2121 }
2122 out_resp->count_props = props_count;
2123
2124 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2125 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002126 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002127 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2128 if (connector->encoder_ids[i] != 0) {
2129 if (put_user(connector->encoder_ids[i],
2130 encoder_ptr + copied)) {
2131 ret = -EFAULT;
2132 goto out;
2133 }
2134 copied++;
2135 }
2136 }
2137 }
2138 out_resp->count_encoders = encoders_count;
2139
2140out:
Daniel Vetter7b240562012-12-12 00:35:33 +01002141 mutex_unlock(&dev->mode_config.mutex);
2142
Dave Airlief453ba02008-11-07 14:05:41 -08002143 return ret;
2144}
2145
Daniel Vetterabd69c52014-11-25 23:50:05 +01002146static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2147{
2148 struct drm_connector *connector;
2149 struct drm_device *dev = encoder->dev;
2150 bool uses_atomic = false;
2151
2152 /* For atomic drivers only state objects are synchronously updated and
2153 * protected by modeset locks, so check those first. */
2154 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2155 if (!connector->state)
2156 continue;
2157
2158 uses_atomic = true;
2159
2160 if (connector->state->best_encoder != encoder)
2161 continue;
2162
2163 return connector->state->crtc;
2164 }
2165
2166 /* Don't return stale data (e.g. pending async disable). */
2167 if (uses_atomic)
2168 return NULL;
2169
2170 return encoder->crtc;
2171}
2172
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002173/**
2174 * drm_mode_getencoder - get encoder configuration
2175 * @dev: drm device for the ioctl
2176 * @data: data pointer for the ioctl
2177 * @file_priv: drm file for the ioctl call
2178 *
2179 * Construct a encoder configuration structure to return to the user.
2180 *
2181 * Called by the user via ioctl.
2182 *
2183 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002184 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002185 */
Dave Airlief453ba02008-11-07 14:05:41 -08002186int drm_mode_getencoder(struct drm_device *dev, void *data,
2187 struct drm_file *file_priv)
2188{
2189 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002190 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002191 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002192
Dave Airliefb3b06c2011-02-08 13:55:21 +10002193 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2194 return -EINVAL;
2195
Rob Clarka2b34e22013-10-05 16:36:52 -04002196 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002197 if (!encoder)
2198 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002199
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002200 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002201 crtc = drm_encoder_get_crtc(encoder);
2202 if (crtc)
2203 enc_resp->crtc_id = crtc->base.id;
2204 else if (encoder->crtc)
Dave Airlief453ba02008-11-07 14:05:41 -08002205 enc_resp->crtc_id = encoder->crtc->base.id;
2206 else
2207 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002208 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2209
Dave Airlief453ba02008-11-07 14:05:41 -08002210 enc_resp->encoder_type = encoder->encoder_type;
2211 enc_resp->encoder_id = encoder->base.id;
2212 enc_resp->possible_crtcs = encoder->possible_crtcs;
2213 enc_resp->possible_clones = encoder->possible_clones;
2214
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002215 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002216}
2217
2218/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002219 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002220 * @dev: DRM device
2221 * @data: ioctl data
2222 * @file_priv: DRM file info
2223 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002224 * Construct a list of plane ids to return to the user.
2225 *
2226 * Called by the user via ioctl.
2227 *
2228 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002229 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002230 */
2231int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002232 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002233{
2234 struct drm_mode_get_plane_res *plane_resp = data;
2235 struct drm_mode_config *config;
2236 struct drm_plane *plane;
2237 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002238 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002239 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002240
2241 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2242 return -EINVAL;
2243
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002244 config = &dev->mode_config;
2245
Matt Roper681e7ec2014-04-01 15:22:42 -07002246 if (file_priv->universal_planes)
2247 num_planes = config->num_total_plane;
2248 else
2249 num_planes = config->num_overlay_plane;
2250
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002251 /*
2252 * This ioctl is called twice, once to determine how much space is
2253 * needed, and the 2nd time to fill it.
2254 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002255 if (num_planes &&
2256 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002257 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002258
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002259 /* Plane lists are invariant, no locking needed. */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002260 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002261 /*
2262 * Unless userspace set the 'universal planes'
2263 * capability bit, only advertise overlays.
2264 */
2265 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2266 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002267 continue;
2268
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002269 if (put_user(plane->base.id, plane_ptr + copied))
2270 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002271 copied++;
2272 }
2273 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002274 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002275
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002276 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002277}
2278
2279/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002280 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002281 * @dev: DRM device
2282 * @data: ioctl data
2283 * @file_priv: DRM file info
2284 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002285 * Construct a plane configuration structure to return to the user.
2286 *
2287 * Called by the user via ioctl.
2288 *
2289 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002290 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002291 */
2292int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002293 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002294{
2295 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002296 struct drm_plane *plane;
2297 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002298
2299 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2300 return -EINVAL;
2301
Rob Clarka2b34e22013-10-05 16:36:52 -04002302 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002303 if (!plane)
2304 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002305
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002306 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002307 if (plane->crtc)
2308 plane_resp->crtc_id = plane->crtc->base.id;
2309 else
2310 plane_resp->crtc_id = 0;
2311
2312 if (plane->fb)
2313 plane_resp->fb_id = plane->fb->base.id;
2314 else
2315 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002316 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002317
2318 plane_resp->plane_id = plane->base.id;
2319 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002320 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002321
2322 /*
2323 * This ioctl is called twice, once to determine how much space is
2324 * needed, and the 2nd time to fill it.
2325 */
2326 if (plane->format_count &&
2327 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002328 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002329 if (copy_to_user(format_ptr,
2330 plane->format_types,
2331 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002332 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002333 }
2334 }
2335 plane_resp->count_format_types = plane->format_count;
2336
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002337 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002338}
2339
Matt Roperb36552b2014-06-10 08:28:09 -07002340/*
2341 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002342 *
Matt Roperb36552b2014-06-10 08:28:09 -07002343 * Note that we assume an extra reference has already been taken on fb. If the
2344 * update fails, this reference will be dropped before return; if it succeeds,
2345 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002346 *
Matt Roperb36552b2014-06-10 08:28:09 -07002347 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002348 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002349static int __setplane_internal(struct drm_plane *plane,
2350 struct drm_crtc *crtc,
2351 struct drm_framebuffer *fb,
2352 int32_t crtc_x, int32_t crtc_y,
2353 uint32_t crtc_w, uint32_t crtc_h,
2354 /* src_{x,y,w,h} values are 16.16 fixed point */
2355 uint32_t src_x, uint32_t src_y,
2356 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002357{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002358 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002359 unsigned int fb_width, fb_height;
Thierry Reding2f763312014-10-13 12:45:57 +02002360 unsigned int i;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002361
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002362 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002363 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002364 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002365 ret = plane->funcs->disable_plane(plane);
2366 if (!ret) {
2367 plane->crtc = NULL;
2368 plane->fb = NULL;
2369 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002370 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002371 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002372 goto out;
2373 }
2374
Matt Roper7f994f32014-05-29 08:06:51 -07002375 /* Check whether this plane is usable on this CRTC */
2376 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2377 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2378 ret = -EINVAL;
2379 goto out;
2380 }
2381
Ville Syrjälä62443be2011-12-20 00:06:47 +02002382 /* Check whether this plane supports the fb pixel format. */
2383 for (i = 0; i < plane->format_count; i++)
2384 if (fb->pixel_format == plane->format_types[i])
2385 break;
2386 if (i == plane->format_count) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002387 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2388 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002389 ret = -EINVAL;
2390 goto out;
2391 }
2392
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002393 fb_width = fb->width << 16;
2394 fb_height = fb->height << 16;
2395
2396 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002397 if (src_w > fb_width ||
2398 src_x > fb_width - src_w ||
2399 src_h > fb_height ||
2400 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002401 DRM_DEBUG_KMS("Invalid source coordinates "
2402 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002403 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2404 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2405 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2406 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002407 ret = -ENOSPC;
2408 goto out;
2409 }
2410
Daniel Vetter3d30a592014-07-27 13:42:42 +02002411 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002412 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002413 crtc_x, crtc_y, crtc_w, crtc_h,
2414 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002415 if (!ret) {
2416 plane->crtc = crtc;
2417 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002418 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002419 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002420 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002421 }
2422
2423out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002424 if (fb)
2425 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002426 if (plane->old_fb)
2427 drm_framebuffer_unreference(plane->old_fb);
2428 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002429
2430 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002431}
Matt Roperb36552b2014-06-10 08:28:09 -07002432
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002433static int setplane_internal(struct drm_plane *plane,
2434 struct drm_crtc *crtc,
2435 struct drm_framebuffer *fb,
2436 int32_t crtc_x, int32_t crtc_y,
2437 uint32_t crtc_w, uint32_t crtc_h,
2438 /* src_{x,y,w,h} values are 16.16 fixed point */
2439 uint32_t src_x, uint32_t src_y,
2440 uint32_t src_w, uint32_t src_h)
2441{
2442 int ret;
2443
2444 drm_modeset_lock_all(plane->dev);
2445 ret = __setplane_internal(plane, crtc, fb,
2446 crtc_x, crtc_y, crtc_w, crtc_h,
2447 src_x, src_y, src_w, src_h);
2448 drm_modeset_unlock_all(plane->dev);
2449
2450 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002451}
2452
2453/**
2454 * drm_mode_setplane - configure a plane's configuration
2455 * @dev: DRM device
2456 * @data: ioctl data*
2457 * @file_priv: DRM file info
2458 *
2459 * Set plane configuration, including placement, fb, scaling, and other factors.
2460 * Or pass a NULL fb to disable (planes may be disabled without providing a
2461 * valid crtc).
2462 *
2463 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002464 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002465 */
2466int drm_mode_setplane(struct drm_device *dev, void *data,
2467 struct drm_file *file_priv)
2468{
2469 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002470 struct drm_plane *plane;
2471 struct drm_crtc *crtc = NULL;
2472 struct drm_framebuffer *fb = NULL;
2473
2474 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2475 return -EINVAL;
2476
2477 /* Give drivers some help against integer overflows */
2478 if (plane_req->crtc_w > INT_MAX ||
2479 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2480 plane_req->crtc_h > INT_MAX ||
2481 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2482 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2483 plane_req->crtc_w, plane_req->crtc_h,
2484 plane_req->crtc_x, plane_req->crtc_y);
2485 return -ERANGE;
2486 }
2487
2488 /*
2489 * First, find the plane, crtc, and fb objects. If not available,
2490 * we don't bother to call the driver.
2491 */
Rob Clark933f6222014-11-25 20:33:11 -05002492 plane = drm_plane_find(dev, plane_req->plane_id);
2493 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002494 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2495 plane_req->plane_id);
2496 return -ENOENT;
2497 }
Matt Roperb36552b2014-06-10 08:28:09 -07002498
2499 if (plane_req->fb_id) {
2500 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2501 if (!fb) {
2502 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2503 plane_req->fb_id);
2504 return -ENOENT;
2505 }
2506
Rob Clark933f6222014-11-25 20:33:11 -05002507 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2508 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002509 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2510 plane_req->crtc_id);
2511 return -ENOENT;
2512 }
Matt Roperb36552b2014-06-10 08:28:09 -07002513 }
2514
Matt Roper161d0dc2014-06-10 08:28:10 -07002515 /*
2516 * setplane_internal will take care of deref'ing either the old or new
2517 * framebuffer depending on success.
2518 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002519 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002520 plane_req->crtc_x, plane_req->crtc_y,
2521 plane_req->crtc_w, plane_req->crtc_h,
2522 plane_req->src_x, plane_req->src_y,
2523 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002524}
2525
2526/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002527 * drm_mode_set_config_internal - helper to call ->set_config
2528 * @set: modeset config to set
2529 *
2530 * This is a little helper to wrap internal calls to the ->set_config driver
2531 * interface. The only thing it adds is correct refcounting dance.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002532 *
2533 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002534 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002535 */
2536int drm_mode_set_config_internal(struct drm_mode_set *set)
2537{
2538 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002539 struct drm_framebuffer *fb;
2540 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002541 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002542
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002543 /*
2544 * NOTE: ->set_config can also disable other crtcs (if we steal all
2545 * connectors from it), hence we need to refcount the fbs across all
2546 * crtcs. Atomic modeset will have saner semantics ...
2547 */
2548 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002549 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002550
Daniel Vetterb0d12322012-12-11 01:07:12 +01002551 fb = set->fb;
2552
2553 ret = crtc->funcs->set_config(set);
2554 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002555 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002556 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002557 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002558
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002559 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002560 if (tmp->primary->fb)
2561 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002562 if (tmp->primary->old_fb)
2563 drm_framebuffer_unreference(tmp->primary->old_fb);
2564 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002565 }
2566
2567 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002568}
2569EXPORT_SYMBOL(drm_mode_set_config_internal);
2570
Matt Roperaf936292014-04-01 15:22:34 -07002571/**
2572 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2573 * CRTC viewport
2574 * @crtc: CRTC that framebuffer will be displayed on
2575 * @x: x panning
2576 * @y: y panning
2577 * @mode: mode that framebuffer will be displayed under
2578 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002579 */
Matt Roperaf936292014-04-01 15:22:34 -07002580int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2581 int x, int y,
2582 const struct drm_display_mode *mode,
2583 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002584
2585{
2586 int hdisplay, vdisplay;
2587
2588 hdisplay = mode->hdisplay;
2589 vdisplay = mode->vdisplay;
2590
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002591 if (drm_mode_is_stereo(mode)) {
2592 struct drm_display_mode adjusted = *mode;
2593
2594 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE);
2595 hdisplay = adjusted.crtc_hdisplay;
2596 vdisplay = adjusted.crtc_vdisplay;
2597 }
2598
Damien Lespiauc11e9282013-09-25 16:45:30 +01002599 if (crtc->invert_dimensions)
2600 swap(hdisplay, vdisplay);
2601
2602 if (hdisplay > fb->width ||
2603 vdisplay > fb->height ||
2604 x > fb->width - hdisplay ||
2605 y > fb->height - vdisplay) {
2606 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2607 fb->width, fb->height, hdisplay, vdisplay, x, y,
2608 crtc->invert_dimensions ? " (inverted)" : "");
2609 return -ENOSPC;
2610 }
2611
2612 return 0;
2613}
Matt Roperaf936292014-04-01 15:22:34 -07002614EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002615
Daniel Vetter2d13b672012-12-11 13:47:23 +01002616/**
Dave Airlief453ba02008-11-07 14:05:41 -08002617 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002618 * @dev: drm device for the ioctl
2619 * @data: data pointer for the ioctl
2620 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002621 *
Dave Airlief453ba02008-11-07 14:05:41 -08002622 * Build a new CRTC configuration based on user request.
2623 *
2624 * Called by the user via ioctl.
2625 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002626 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002627 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002628 */
2629int drm_mode_setcrtc(struct drm_device *dev, void *data,
2630 struct drm_file *file_priv)
2631{
2632 struct drm_mode_config *config = &dev->mode_config;
2633 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002634 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002635 struct drm_connector **connector_set = NULL, *connector;
2636 struct drm_framebuffer *fb = NULL;
2637 struct drm_display_mode *mode = NULL;
2638 struct drm_mode_set set;
2639 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002640 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002641 int i;
2642
Dave Airliefb3b06c2011-02-08 13:55:21 +10002643 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2644 return -EINVAL;
2645
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002646 /* For some reason crtc x/y offsets are signed internally. */
2647 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2648 return -ERANGE;
2649
Daniel Vetter84849902012-12-02 00:28:11 +01002650 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002651 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2652 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002653 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002654 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002655 goto out;
2656 }
Jerome Glisse94401062010-07-15 15:43:25 -04002657 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002658
2659 if (crtc_req->mode_valid) {
2660 /* If we have a mode we need a framebuffer. */
2661 /* If we pass -1, set the mode with the currently bound fb */
2662 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002663 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002664 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2665 ret = -EINVAL;
2666 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002667 }
Matt Roperf4510a22014-04-01 15:22:40 -07002668 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002669 /* Make refcounting symmetric with the lookup path. */
2670 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002671 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002672 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2673 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002674 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2675 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002676 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002677 goto out;
2678 }
Dave Airlief453ba02008-11-07 14:05:41 -08002679 }
2680
2681 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002682 if (!mode) {
2683 ret = -ENOMEM;
2684 goto out;
2685 }
2686
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002687 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2688 if (ret) {
2689 DRM_DEBUG_KMS("Invalid mode\n");
2690 goto out;
2691 }
2692
Dave Airlief453ba02008-11-07 14:05:41 -08002693 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002694
Damien Lespiauc11e9282013-09-25 16:45:30 +01002695 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2696 mode, fb);
2697 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002698 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002699
Dave Airlief453ba02008-11-07 14:05:41 -08002700 }
2701
2702 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002703 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002704 ret = -EINVAL;
2705 goto out;
2706 }
2707
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002708 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002709 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002710 crtc_req->count_connectors);
2711 ret = -EINVAL;
2712 goto out;
2713 }
2714
2715 if (crtc_req->count_connectors > 0) {
2716 u32 out_id;
2717
2718 /* Avoid unbounded kernel memory allocation */
2719 if (crtc_req->count_connectors > config->num_connector) {
2720 ret = -EINVAL;
2721 goto out;
2722 }
2723
2724 connector_set = kmalloc(crtc_req->count_connectors *
2725 sizeof(struct drm_connector *),
2726 GFP_KERNEL);
2727 if (!connector_set) {
2728 ret = -ENOMEM;
2729 goto out;
2730 }
2731
2732 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002733 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002734 if (get_user(out_id, &set_connectors_ptr[i])) {
2735 ret = -EFAULT;
2736 goto out;
2737 }
2738
Rob Clarka2b34e22013-10-05 16:36:52 -04002739 connector = drm_connector_find(dev, out_id);
2740 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002741 DRM_DEBUG_KMS("Connector id %d unknown\n",
2742 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002743 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002744 goto out;
2745 }
Jerome Glisse94401062010-07-15 15:43:25 -04002746 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2747 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002748 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002749
2750 connector_set[i] = connector;
2751 }
2752 }
2753
2754 set.crtc = crtc;
2755 set.x = crtc_req->x;
2756 set.y = crtc_req->y;
2757 set.mode = mode;
2758 set.connectors = connector_set;
2759 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002760 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002761 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002762
2763out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002764 if (fb)
2765 drm_framebuffer_unreference(fb);
2766
Dave Airlief453ba02008-11-07 14:05:41 -08002767 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002768 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002769 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002770 return ret;
2771}
2772
Matt Roper161d0dc2014-06-10 08:28:10 -07002773/**
2774 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2775 * universal plane handler call
2776 * @crtc: crtc to update cursor for
2777 * @req: data pointer for the ioctl
2778 * @file_priv: drm file for the ioctl call
2779 *
2780 * Legacy cursor ioctl's work directly with driver buffer handles. To
2781 * translate legacy ioctl calls into universal plane handler calls, we need to
2782 * wrap the native buffer handle in a drm_framebuffer.
2783 *
2784 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2785 * buffer with a pitch of 4*width; the universal plane interface should be used
2786 * directly in cases where the hardware can support other buffer settings and
2787 * userspace wants to make use of these capabilities.
2788 *
2789 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002790 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002791 */
2792static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2793 struct drm_mode_cursor2 *req,
2794 struct drm_file *file_priv)
2795{
2796 struct drm_device *dev = crtc->dev;
2797 struct drm_framebuffer *fb = NULL;
2798 struct drm_mode_fb_cmd2 fbreq = {
2799 .width = req->width,
2800 .height = req->height,
2801 .pixel_format = DRM_FORMAT_ARGB8888,
2802 .pitches = { req->width * 4 },
2803 .handles = { req->handle },
2804 };
2805 int32_t crtc_x, crtc_y;
2806 uint32_t crtc_w = 0, crtc_h = 0;
2807 uint32_t src_w = 0, src_h = 0;
2808 int ret = 0;
2809
2810 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002811 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002812
2813 /*
2814 * Obtain fb we'll be using (either new or existing) and take an extra
2815 * reference to it if fb != null. setplane will take care of dropping
2816 * the reference if the plane update fails.
2817 */
2818 if (req->flags & DRM_MODE_CURSOR_BO) {
2819 if (req->handle) {
2820 fb = add_framebuffer_internal(dev, &fbreq, file_priv);
2821 if (IS_ERR(fb)) {
2822 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2823 return PTR_ERR(fb);
2824 }
2825
2826 drm_framebuffer_reference(fb);
2827 } else {
2828 fb = NULL;
2829 }
2830 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002831 fb = crtc->cursor->fb;
2832 if (fb)
2833 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002834 }
2835
2836 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2837 crtc_x = req->x;
2838 crtc_y = req->y;
2839 } else {
2840 crtc_x = crtc->cursor_x;
2841 crtc_y = crtc->cursor_y;
2842 }
2843
2844 if (fb) {
2845 crtc_w = fb->width;
2846 crtc_h = fb->height;
2847 src_w = fb->width << 16;
2848 src_h = fb->height << 16;
2849 }
2850
2851 /*
2852 * setplane_internal will take care of deref'ing either the old or new
2853 * framebuffer depending on success.
2854 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002855 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002856 crtc_x, crtc_y, crtc_w, crtc_h,
2857 0, 0, src_w, src_h);
2858
2859 /* Update successful; save new cursor position, if necessary */
2860 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2861 crtc->cursor_x = req->x;
2862 crtc->cursor_y = req->y;
2863 }
2864
2865 return ret;
2866}
2867
Dave Airlie4c813d42013-06-20 11:48:52 +10002868static int drm_mode_cursor_common(struct drm_device *dev,
2869 struct drm_mode_cursor2 *req,
2870 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002871{
Dave Airlief453ba02008-11-07 14:05:41 -08002872 struct drm_crtc *crtc;
2873 int ret = 0;
2874
Dave Airliefb3b06c2011-02-08 13:55:21 +10002875 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2876 return -EINVAL;
2877
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002878 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002879 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002880
Rob Clarka2b34e22013-10-05 16:36:52 -04002881 crtc = drm_crtc_find(dev, req->crtc_id);
2882 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002883 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002884 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002885 }
Dave Airlief453ba02008-11-07 14:05:41 -08002886
Matt Roper161d0dc2014-06-10 08:28:10 -07002887 /*
2888 * If this crtc has a universal cursor plane, call that plane's update
2889 * handler rather than using legacy cursor handlers.
2890 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01002891 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002892 if (crtc->cursor) {
2893 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2894 goto out;
2895 }
2896
Dave Airlief453ba02008-11-07 14:05:41 -08002897 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002898 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002899 ret = -ENXIO;
2900 goto out;
2901 }
2902 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002903 if (crtc->funcs->cursor_set2)
2904 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2905 req->width, req->height, req->hot_x, req->hot_y);
2906 else
2907 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2908 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002909 }
2910
2911 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2912 if (crtc->funcs->cursor_move) {
2913 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2914 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002915 ret = -EFAULT;
2916 goto out;
2917 }
2918 }
2919out:
Daniel Vetterd059f652014-07-25 18:07:40 +02002920 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01002921
Dave Airlief453ba02008-11-07 14:05:41 -08002922 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10002923
2924}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002925
2926
2927/**
2928 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2929 * @dev: drm device for the ioctl
2930 * @data: data pointer for the ioctl
2931 * @file_priv: drm file for the ioctl call
2932 *
2933 * Set the cursor configuration based on user request.
2934 *
2935 * Called by the user via ioctl.
2936 *
2937 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002938 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002939 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002940int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002941 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10002942{
2943 struct drm_mode_cursor *req = data;
2944 struct drm_mode_cursor2 new_req;
2945
2946 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
2947 new_req.hot_x = new_req.hot_y = 0;
2948
2949 return drm_mode_cursor_common(dev, &new_req, file_priv);
2950}
2951
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002952/**
2953 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
2954 * @dev: drm device for the ioctl
2955 * @data: data pointer for the ioctl
2956 * @file_priv: drm file for the ioctl call
2957 *
2958 * Set the cursor configuration based on user request. This implements the 2nd
2959 * version of the cursor ioctl, which allows userspace to additionally specify
2960 * the hotspot of the pointer.
2961 *
2962 * Called by the user via ioctl.
2963 *
2964 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002965 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002966 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002967int drm_mode_cursor2_ioctl(struct drm_device *dev,
2968 void *data, struct drm_file *file_priv)
2969{
2970 struct drm_mode_cursor2 *req = data;
2971 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08002972}
2973
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002974/**
2975 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
2976 * @bpp: bits per pixels
2977 * @depth: bit depth per pixel
2978 *
2979 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
2980 * Useful in fbdev emulation code, since that deals in those values.
2981 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002982uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2983{
2984 uint32_t fmt;
2985
2986 switch (bpp) {
2987 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02002988 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002989 break;
2990 case 16:
2991 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002992 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002993 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002994 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002995 break;
2996 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002997 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002998 break;
2999 case 32:
3000 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003001 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003002 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003003 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003004 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003005 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003006 break;
3007 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003008 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3009 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003010 break;
3011 }
3012
3013 return fmt;
3014}
3015EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3016
Dave Airlief453ba02008-11-07 14:05:41 -08003017/**
3018 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003019 * @dev: drm device for the ioctl
3020 * @data: data pointer for the ioctl
3021 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003022 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003023 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003024 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003025 *
3026 * Called by the user via ioctl.
3027 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003028 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003029 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003030 */
3031int drm_mode_addfb(struct drm_device *dev,
3032 void *data, struct drm_file *file_priv)
3033{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003034 struct drm_mode_fb_cmd *or = data;
3035 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003036 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003037
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003038 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003039 r.fb_id = or->fb_id;
3040 r.width = or->width;
3041 r.height = or->height;
3042 r.pitches[0] = or->pitch;
3043 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3044 r.handles[0] = or->handle;
3045
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003046 ret = drm_mode_addfb2(dev, &r, file_priv);
3047 if (ret)
3048 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003049
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003050 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003051
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003052 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003053}
3054
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003055static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003056{
3057 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3058
3059 switch (format) {
3060 case DRM_FORMAT_C8:
3061 case DRM_FORMAT_RGB332:
3062 case DRM_FORMAT_BGR233:
3063 case DRM_FORMAT_XRGB4444:
3064 case DRM_FORMAT_XBGR4444:
3065 case DRM_FORMAT_RGBX4444:
3066 case DRM_FORMAT_BGRX4444:
3067 case DRM_FORMAT_ARGB4444:
3068 case DRM_FORMAT_ABGR4444:
3069 case DRM_FORMAT_RGBA4444:
3070 case DRM_FORMAT_BGRA4444:
3071 case DRM_FORMAT_XRGB1555:
3072 case DRM_FORMAT_XBGR1555:
3073 case DRM_FORMAT_RGBX5551:
3074 case DRM_FORMAT_BGRX5551:
3075 case DRM_FORMAT_ARGB1555:
3076 case DRM_FORMAT_ABGR1555:
3077 case DRM_FORMAT_RGBA5551:
3078 case DRM_FORMAT_BGRA5551:
3079 case DRM_FORMAT_RGB565:
3080 case DRM_FORMAT_BGR565:
3081 case DRM_FORMAT_RGB888:
3082 case DRM_FORMAT_BGR888:
3083 case DRM_FORMAT_XRGB8888:
3084 case DRM_FORMAT_XBGR8888:
3085 case DRM_FORMAT_RGBX8888:
3086 case DRM_FORMAT_BGRX8888:
3087 case DRM_FORMAT_ARGB8888:
3088 case DRM_FORMAT_ABGR8888:
3089 case DRM_FORMAT_RGBA8888:
3090 case DRM_FORMAT_BGRA8888:
3091 case DRM_FORMAT_XRGB2101010:
3092 case DRM_FORMAT_XBGR2101010:
3093 case DRM_FORMAT_RGBX1010102:
3094 case DRM_FORMAT_BGRX1010102:
3095 case DRM_FORMAT_ARGB2101010:
3096 case DRM_FORMAT_ABGR2101010:
3097 case DRM_FORMAT_RGBA1010102:
3098 case DRM_FORMAT_BGRA1010102:
3099 case DRM_FORMAT_YUYV:
3100 case DRM_FORMAT_YVYU:
3101 case DRM_FORMAT_UYVY:
3102 case DRM_FORMAT_VYUY:
3103 case DRM_FORMAT_AYUV:
3104 case DRM_FORMAT_NV12:
3105 case DRM_FORMAT_NV21:
3106 case DRM_FORMAT_NV16:
3107 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003108 case DRM_FORMAT_NV24:
3109 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003110 case DRM_FORMAT_YUV410:
3111 case DRM_FORMAT_YVU410:
3112 case DRM_FORMAT_YUV411:
3113 case DRM_FORMAT_YVU411:
3114 case DRM_FORMAT_YUV420:
3115 case DRM_FORMAT_YVU420:
3116 case DRM_FORMAT_YUV422:
3117 case DRM_FORMAT_YVU422:
3118 case DRM_FORMAT_YUV444:
3119 case DRM_FORMAT_YVU444:
3120 return 0;
3121 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003122 DRM_DEBUG_KMS("invalid pixel format %s\n",
3123 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003124 return -EINVAL;
3125 }
3126}
3127
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003128static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003129{
3130 int ret, hsub, vsub, num_planes, i;
3131
3132 ret = format_check(r);
3133 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003134 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3135 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003136 return ret;
3137 }
3138
3139 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3140 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3141 num_planes = drm_format_num_planes(r->pixel_format);
3142
3143 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003144 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003145 return -EINVAL;
3146 }
3147
3148 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003149 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003150 return -EINVAL;
3151 }
3152
3153 for (i = 0; i < num_planes; i++) {
3154 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003155 unsigned int height = r->height / (i != 0 ? vsub : 1);
3156 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003157
3158 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003159 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003160 return -EINVAL;
3161 }
3162
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003163 if ((uint64_t) width * cpp > UINT_MAX)
3164 return -ERANGE;
3165
3166 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3167 return -ERANGE;
3168
3169 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003170 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003171 return -EINVAL;
3172 }
3173 }
3174
3175 return 0;
3176}
3177
Matt Roperc394c2b2014-06-10 08:28:08 -07003178static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
3179 struct drm_mode_fb_cmd2 *r,
3180 struct drm_file *file_priv)
3181{
3182 struct drm_mode_config *config = &dev->mode_config;
3183 struct drm_framebuffer *fb;
3184 int ret;
3185
3186 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
3187 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3188 return ERR_PTR(-EINVAL);
3189 }
3190
3191 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3192 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3193 r->width, config->min_width, config->max_width);
3194 return ERR_PTR(-EINVAL);
3195 }
3196 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3197 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3198 r->height, config->min_height, config->max_height);
3199 return ERR_PTR(-EINVAL);
3200 }
3201
3202 ret = framebuffer_check(r);
3203 if (ret)
3204 return ERR_PTR(ret);
3205
3206 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3207 if (IS_ERR(fb)) {
3208 DRM_DEBUG_KMS("could not create framebuffer\n");
3209 return fb;
3210 }
3211
3212 mutex_lock(&file_priv->fbs_lock);
3213 r->fb_id = fb->base.id;
3214 list_add(&fb->filp_head, &file_priv->fbs);
3215 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3216 mutex_unlock(&file_priv->fbs_lock);
3217
3218 return fb;
3219}
3220
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003221/**
3222 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003223 * @dev: drm device for the ioctl
3224 * @data: data pointer for the ioctl
3225 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003226 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003227 * Add a new FB to the specified CRTC, given a user request with format. This is
3228 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3229 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003230 *
3231 * Called by the user via ioctl.
3232 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003233 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003234 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003235 */
3236int drm_mode_addfb2(struct drm_device *dev,
3237 void *data, struct drm_file *file_priv)
3238{
Dave Airlief453ba02008-11-07 14:05:41 -08003239 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003240
Dave Airliefb3b06c2011-02-08 13:55:21 +10003241 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3242 return -EINVAL;
3243
Matt Roperc394c2b2014-06-10 08:28:08 -07003244 fb = add_framebuffer_internal(dev, data, file_priv);
3245 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003246 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003247
Matt Roperc394c2b2014-06-10 08:28:08 -07003248 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003249}
3250
3251/**
3252 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003253 * @dev: drm device for the ioctl
3254 * @data: data pointer for the ioctl
3255 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003256 *
Dave Airlief453ba02008-11-07 14:05:41 -08003257 * Remove the FB specified by the user.
3258 *
3259 * Called by the user via ioctl.
3260 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003261 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003262 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003263 */
3264int drm_mode_rmfb(struct drm_device *dev,
3265 void *data, struct drm_file *file_priv)
3266{
Dave Airlief453ba02008-11-07 14:05:41 -08003267 struct drm_framebuffer *fb = NULL;
3268 struct drm_framebuffer *fbl = NULL;
3269 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003270 int found = 0;
3271
Dave Airliefb3b06c2011-02-08 13:55:21 +10003272 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3273 return -EINVAL;
3274
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003275 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003276 mutex_lock(&dev->mode_config.fb_lock);
3277 fb = __drm_framebuffer_lookup(dev, *id);
3278 if (!fb)
3279 goto fail_lookup;
3280
Dave Airlief453ba02008-11-07 14:05:41 -08003281 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3282 if (fb == fbl)
3283 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003284 if (!found)
3285 goto fail_lookup;
3286
3287 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3288 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003289
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003290 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003291 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003292 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003293
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003294 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003295
Daniel Vetter2b677e82012-12-10 21:16:05 +01003296 return 0;
3297
3298fail_lookup:
3299 mutex_unlock(&dev->mode_config.fb_lock);
3300 mutex_unlock(&file_priv->fbs_lock);
3301
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003302 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003303}
3304
3305/**
3306 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003307 * @dev: drm device for the ioctl
3308 * @data: data pointer for the ioctl
3309 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003310 *
Dave Airlief453ba02008-11-07 14:05:41 -08003311 * Lookup the FB given its ID and return info about it.
3312 *
3313 * Called by the user via ioctl.
3314 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003315 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003316 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003317 */
3318int drm_mode_getfb(struct drm_device *dev,
3319 void *data, struct drm_file *file_priv)
3320{
3321 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003322 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003323 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003324
Dave Airliefb3b06c2011-02-08 13:55:21 +10003325 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3326 return -EINVAL;
3327
Daniel Vetter786b99e2012-12-02 21:53:40 +01003328 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003329 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003330 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003331
3332 r->height = fb->height;
3333 r->width = fb->width;
3334 r->depth = fb->depth;
3335 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003336 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003337 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003338 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003339 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003340 ret = fb->funcs->create_handle(fb, file_priv,
3341 &r->handle);
3342 } else {
3343 /* GET_FB() is an unprivileged ioctl so we must not
3344 * return a buffer-handle to non-master processes! For
3345 * backwards-compatibility reasons, we cannot make
3346 * GET_FB() privileged, so just return an invalid handle
3347 * for non-masters. */
3348 r->handle = 0;
3349 ret = 0;
3350 }
3351 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003352 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003353 }
Dave Airlief453ba02008-11-07 14:05:41 -08003354
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003355 drm_framebuffer_unreference(fb);
3356
Dave Airlief453ba02008-11-07 14:05:41 -08003357 return ret;
3358}
3359
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003360/**
3361 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3362 * @dev: drm device for the ioctl
3363 * @data: data pointer for the ioctl
3364 * @file_priv: drm file for the ioctl call
3365 *
3366 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3367 * rectangle list. Generic userspace which does frontbuffer rendering must call
3368 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3369 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3370 *
3371 * Modesetting drivers which always update the frontbuffer do not need to
3372 * implement the corresponding ->dirty framebuffer callback.
3373 *
3374 * Called by the user via ioctl.
3375 *
3376 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003377 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003378 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003379int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3380 void *data, struct drm_file *file_priv)
3381{
3382 struct drm_clip_rect __user *clips_ptr;
3383 struct drm_clip_rect *clips = NULL;
3384 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003385 struct drm_framebuffer *fb;
3386 unsigned flags;
3387 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003388 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003389
Dave Airliefb3b06c2011-02-08 13:55:21 +10003390 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3391 return -EINVAL;
3392
Daniel Vetter786b99e2012-12-02 21:53:40 +01003393 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003394 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003395 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003396
3397 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003398 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003399
3400 if (!num_clips != !clips_ptr) {
3401 ret = -EINVAL;
3402 goto out_err1;
3403 }
3404
3405 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3406
3407 /* If userspace annotates copy, clips must come in pairs */
3408 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3409 ret = -EINVAL;
3410 goto out_err1;
3411 }
3412
3413 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003414 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3415 ret = -EINVAL;
3416 goto out_err1;
3417 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003418 clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
3419 if (!clips) {
3420 ret = -ENOMEM;
3421 goto out_err1;
3422 }
3423
3424 ret = copy_from_user(clips, clips_ptr,
3425 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003426 if (ret) {
3427 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003428 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003429 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003430 }
3431
3432 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003433 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3434 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003435 } else {
3436 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003437 }
3438
3439out_err2:
3440 kfree(clips);
3441out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003442 drm_framebuffer_unreference(fb);
3443
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003444 return ret;
3445}
3446
3447
Dave Airlief453ba02008-11-07 14:05:41 -08003448/**
3449 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003450 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003451 *
Dave Airlief453ba02008-11-07 14:05:41 -08003452 * Destroy all the FBs associated with @filp.
3453 *
3454 * Called by the user via ioctl.
3455 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003456 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003457 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003458 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003459void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003460{
Dave Airlief453ba02008-11-07 14:05:41 -08003461 struct drm_device *dev = priv->minor->dev;
3462 struct drm_framebuffer *fb, *tfb;
3463
Daniel Vetter1b116292014-09-24 21:51:06 +02003464 /*
3465 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003466 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003467 * avoid upsetting lockdep since the universal cursor code adds a
3468 * framebuffer while holding mutex locks.
3469 *
3470 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3471 * locks is impossible here since no one else but this function can get
3472 * at it any more.
3473 */
Dave Airlief453ba02008-11-07 14:05:41 -08003474 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003475
3476 mutex_lock(&dev->mode_config.fb_lock);
3477 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3478 __drm_framebuffer_unregister(dev, fb);
3479 mutex_unlock(&dev->mode_config.fb_lock);
3480
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003481 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003482
3483 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003484 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003485 }
Dave Airlief453ba02008-11-07 14:05:41 -08003486}
3487
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003488/**
3489 * drm_property_create - create a new property type
3490 * @dev: drm device
3491 * @flags: flags specifying the property type
3492 * @name: name of the property
3493 * @num_values: number of pre-defined values
3494 *
3495 * This creates a new generic drm property which can then be attached to a drm
3496 * object with drm_object_attach_property. The returned property object must be
3497 * freed with drm_property_destroy.
3498 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003499 * Note that the DRM core keeps a per-device list of properties and that, if
3500 * drm_mode_config_cleanup() is called, it will destroy all properties created
3501 * by the driver.
3502 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003503 * Returns:
3504 * A pointer to the newly created property on success, NULL on failure.
3505 */
Dave Airlief453ba02008-11-07 14:05:41 -08003506struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3507 const char *name, int num_values)
3508{
3509 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003510 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003511
3512 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3513 if (!property)
3514 return NULL;
3515
Rob Clark98f75de2014-05-30 11:37:03 -04003516 property->dev = dev;
3517
Dave Airlief453ba02008-11-07 14:05:41 -08003518 if (num_values) {
3519 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
3520 if (!property->values)
3521 goto fail;
3522 }
3523
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003524 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3525 if (ret)
3526 goto fail;
3527
Dave Airlief453ba02008-11-07 14:05:41 -08003528 property->flags = flags;
3529 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003530 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003531
Vinson Lee471dd2e2011-11-10 11:55:40 -08003532 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003533 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003534 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3535 }
Dave Airlief453ba02008-11-07 14:05:41 -08003536
3537 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003538
3539 WARN_ON(!drm_property_type_valid(property));
3540
Dave Airlief453ba02008-11-07 14:05:41 -08003541 return property;
3542fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003543 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003544 kfree(property);
3545 return NULL;
3546}
3547EXPORT_SYMBOL(drm_property_create);
3548
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003549/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003550 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003551 * @dev: drm device
3552 * @flags: flags specifying the property type
3553 * @name: name of the property
3554 * @props: enumeration lists with property values
3555 * @num_values: number of pre-defined values
3556 *
3557 * This creates a new generic drm property which can then be attached to a drm
3558 * object with drm_object_attach_property. The returned property object must be
3559 * freed with drm_property_destroy.
3560 *
3561 * Userspace is only allowed to set one of the predefined values for enumeration
3562 * properties.
3563 *
3564 * Returns:
3565 * A pointer to the newly created property on success, NULL on failure.
3566 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003567struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3568 const char *name,
3569 const struct drm_prop_enum_list *props,
3570 int num_values)
3571{
3572 struct drm_property *property;
3573 int i, ret;
3574
3575 flags |= DRM_MODE_PROP_ENUM;
3576
3577 property = drm_property_create(dev, flags, name, num_values);
3578 if (!property)
3579 return NULL;
3580
3581 for (i = 0; i < num_values; i++) {
3582 ret = drm_property_add_enum(property, i,
3583 props[i].type,
3584 props[i].name);
3585 if (ret) {
3586 drm_property_destroy(dev, property);
3587 return NULL;
3588 }
3589 }
3590
3591 return property;
3592}
3593EXPORT_SYMBOL(drm_property_create_enum);
3594
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003595/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003596 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003597 * @dev: drm device
3598 * @flags: flags specifying the property type
3599 * @name: name of the property
3600 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003601 * @num_props: size of the @props array
3602 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003603 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003604 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003605 * object with drm_object_attach_property. The returned property object must be
3606 * freed with drm_property_destroy.
3607 *
3608 * Compared to plain enumeration properties userspace is allowed to set any
3609 * or'ed together combination of the predefined property bitflag values
3610 *
3611 * Returns:
3612 * A pointer to the newly created property on success, NULL on failure.
3613 */
Rob Clark49e27542012-05-17 02:23:26 -06003614struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3615 int flags, const char *name,
3616 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303617 int num_props,
3618 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003619{
3620 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303621 int i, ret, index = 0;
3622 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003623
3624 flags |= DRM_MODE_PROP_BITMASK;
3625
3626 property = drm_property_create(dev, flags, name, num_values);
3627 if (!property)
3628 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303629 for (i = 0; i < num_props; i++) {
3630 if (!(supported_bits & (1ULL << props[i].type)))
3631 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003632
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303633 if (WARN_ON(index >= num_values)) {
3634 drm_property_destroy(dev, property);
3635 return NULL;
3636 }
3637
3638 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003639 props[i].type,
3640 props[i].name);
3641 if (ret) {
3642 drm_property_destroy(dev, property);
3643 return NULL;
3644 }
3645 }
3646
3647 return property;
3648}
3649EXPORT_SYMBOL(drm_property_create_bitmask);
3650
Rob Clarkebc44cf2012-09-12 22:22:31 -05003651static struct drm_property *property_create_range(struct drm_device *dev,
3652 int flags, const char *name,
3653 uint64_t min, uint64_t max)
3654{
3655 struct drm_property *property;
3656
3657 property = drm_property_create(dev, flags, name, 2);
3658 if (!property)
3659 return NULL;
3660
3661 property->values[0] = min;
3662 property->values[1] = max;
3663
3664 return property;
3665}
3666
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003667/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003668 * drm_property_create_range - create a new ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003669 * @dev: drm device
3670 * @flags: flags specifying the property type
3671 * @name: name of the property
3672 * @min: minimum value of the property
3673 * @max: maximum value of the property
3674 *
3675 * This creates a new generic drm property which can then be attached to a drm
3676 * object with drm_object_attach_property. The returned property object must be
3677 * freed with drm_property_destroy.
3678 *
Masanari Iida32197aa2014-10-20 23:53:13 +09003679 * Userspace is allowed to set any integer value in the (min, max) range
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003680 * inclusive.
3681 *
3682 * Returns:
3683 * A pointer to the newly created property on success, NULL on failure.
3684 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003685struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3686 const char *name,
3687 uint64_t min, uint64_t max)
3688{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003689 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3690 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003691}
3692EXPORT_SYMBOL(drm_property_create_range);
3693
Rob Clarkebc44cf2012-09-12 22:22:31 -05003694struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3695 int flags, const char *name,
3696 int64_t min, int64_t max)
3697{
3698 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3699 name, I642U64(min), I642U64(max));
3700}
3701EXPORT_SYMBOL(drm_property_create_signed_range);
3702
Rob Clark98f75de2014-05-30 11:37:03 -04003703struct drm_property *drm_property_create_object(struct drm_device *dev,
3704 int flags, const char *name, uint32_t type)
3705{
3706 struct drm_property *property;
3707
3708 flags |= DRM_MODE_PROP_OBJECT;
3709
3710 property = drm_property_create(dev, flags, name, 1);
3711 if (!property)
3712 return NULL;
3713
3714 property->values[0] = type;
3715
3716 return property;
3717}
3718EXPORT_SYMBOL(drm_property_create_object);
3719
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003720/**
3721 * drm_property_add_enum - add a possible value to an enumeration property
3722 * @property: enumeration property to change
3723 * @index: index of the new enumeration
3724 * @value: value of the new enumeration
3725 * @name: symbolic name of the new enumeration
3726 *
3727 * This functions adds enumerations to a property.
3728 *
3729 * It's use is deprecated, drivers should use one of the more specific helpers
3730 * to directly create the property with all enumerations already attached.
3731 *
3732 * Returns:
3733 * Zero on success, error code on failure.
3734 */
Dave Airlief453ba02008-11-07 14:05:41 -08003735int drm_property_add_enum(struct drm_property *property, int index,
3736 uint64_t value, const char *name)
3737{
3738 struct drm_property_enum *prop_enum;
3739
Rob Clark5ea22f22014-05-30 11:34:01 -04003740 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3741 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003742 return -EINVAL;
3743
3744 /*
3745 * Bitmask enum properties have the additional constraint of values
3746 * from 0 to 63
3747 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003748 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3749 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003750 return -EINVAL;
3751
Daniel Vetter3758b342014-11-19 18:38:10 +01003752 if (!list_empty(&property->enum_list)) {
3753 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003754 if (prop_enum->value == value) {
3755 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3756 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3757 return 0;
3758 }
3759 }
3760 }
3761
3762 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3763 if (!prop_enum)
3764 return -ENOMEM;
3765
3766 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3767 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3768 prop_enum->value = value;
3769
3770 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003771 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003772 return 0;
3773}
3774EXPORT_SYMBOL(drm_property_add_enum);
3775
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003776/**
3777 * drm_property_destroy - destroy a drm property
3778 * @dev: drm device
3779 * @property: property to destry
3780 *
3781 * This function frees a property including any attached resources like
3782 * enumeration values.
3783 */
Dave Airlief453ba02008-11-07 14:05:41 -08003784void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3785{
3786 struct drm_property_enum *prop_enum, *pt;
3787
Daniel Vetter3758b342014-11-19 18:38:10 +01003788 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003789 list_del(&prop_enum->head);
3790 kfree(prop_enum);
3791 }
3792
3793 if (property->num_values)
3794 kfree(property->values);
3795 drm_mode_object_put(dev, &property->base);
3796 list_del(&property->head);
3797 kfree(property);
3798}
3799EXPORT_SYMBOL(drm_property_destroy);
3800
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003801/**
3802 * drm_object_attach_property - attach a property to a modeset object
3803 * @obj: drm modeset object
3804 * @property: property to attach
3805 * @init_val: initial value of the property
3806 *
3807 * This attaches the given property to the modeset object with the given initial
3808 * value. Currently this function cannot fail since the properties are stored in
3809 * a statically sized array.
3810 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003811void drm_object_attach_property(struct drm_mode_object *obj,
3812 struct drm_property *property,
3813 uint64_t init_val)
3814{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003815 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003816
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003817 if (count == DRM_OBJECT_MAX_PROPERTY) {
3818 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3819 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3820 "you see this message on the same object type.\n",
3821 obj->type);
3822 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03003823 }
3824
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003825 obj->properties->ids[count] = property->base.id;
3826 obj->properties->values[count] = init_val;
3827 obj->properties->count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03003828}
3829EXPORT_SYMBOL(drm_object_attach_property);
3830
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003831/**
3832 * drm_object_property_set_value - set the value of a property
3833 * @obj: drm mode object to set property value for
3834 * @property: property to set
3835 * @val: value the property should be set to
3836 *
3837 * This functions sets a given property on a given object. This function only
3838 * changes the software state of the property, it does not call into the
3839 * driver's ->set_property callback.
3840 *
3841 * Returns:
3842 * Zero on success, error code on failure.
3843 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003844int drm_object_property_set_value(struct drm_mode_object *obj,
3845 struct drm_property *property, uint64_t val)
3846{
3847 int i;
3848
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003849 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003850 if (obj->properties->ids[i] == property->base.id) {
3851 obj->properties->values[i] = val;
3852 return 0;
3853 }
3854 }
3855
3856 return -EINVAL;
3857}
3858EXPORT_SYMBOL(drm_object_property_set_value);
3859
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003860/**
3861 * drm_object_property_get_value - retrieve the value of a property
3862 * @obj: drm mode object to get property value from
3863 * @property: property to retrieve
3864 * @val: storage for the property value
3865 *
3866 * This function retrieves the softare state of the given property for the given
3867 * property. Since there is no driver callback to retrieve the current property
3868 * value this might be out of sync with the hardware, depending upon the driver
3869 * and property.
3870 *
3871 * Returns:
3872 * Zero on success, error code on failure.
3873 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003874int drm_object_property_get_value(struct drm_mode_object *obj,
3875 struct drm_property *property, uint64_t *val)
3876{
3877 int i;
3878
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003879 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003880 if (obj->properties->ids[i] == property->base.id) {
3881 *val = obj->properties->values[i];
3882 return 0;
3883 }
3884 }
3885
3886 return -EINVAL;
3887}
3888EXPORT_SYMBOL(drm_object_property_get_value);
3889
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003890/**
Daniel Vetter1a498632014-11-19 18:38:09 +01003891 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003892 * @dev: DRM device
3893 * @data: ioctl data
3894 * @file_priv: DRM file info
3895 *
Daniel Vetter1a498632014-11-19 18:38:09 +01003896 * This function retrieves the metadata for a given property, like the different
3897 * possible values for an enum property or the limits for a range property.
3898 *
3899 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003900 *
3901 * Called by the user via ioctl.
3902 *
3903 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003904 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003905 */
Dave Airlief453ba02008-11-07 14:05:41 -08003906int drm_mode_getproperty_ioctl(struct drm_device *dev,
3907 void *data, struct drm_file *file_priv)
3908{
Dave Airlief453ba02008-11-07 14:05:41 -08003909 struct drm_mode_get_property *out_resp = data;
3910 struct drm_property *property;
3911 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003912 int value_count = 0;
3913 int ret = 0, i;
3914 int copied;
3915 struct drm_property_enum *prop_enum;
3916 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003917 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003918
Dave Airliefb3b06c2011-02-08 13:55:21 +10003919 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3920 return -EINVAL;
3921
Daniel Vetter84849902012-12-02 00:28:11 +01003922 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04003923 property = drm_property_find(dev, out_resp->prop_id);
3924 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003925 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003926 goto done;
3927 }
Dave Airlief453ba02008-11-07 14:05:41 -08003928
Rob Clark5ea22f22014-05-30 11:34:01 -04003929 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3930 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01003931 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08003932 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08003933 }
3934
3935 value_count = property->num_values;
3936
3937 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
3938 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
3939 out_resp->flags = property->flags;
3940
3941 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003942 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003943 for (i = 0; i < value_count; i++) {
3944 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
3945 ret = -EFAULT;
3946 goto done;
3947 }
3948 }
3949 }
3950 out_resp->count_values = value_count;
3951
Rob Clark5ea22f22014-05-30 11:34:01 -04003952 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3953 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003954 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
3955 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003956 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01003957 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003958
3959 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
3960 ret = -EFAULT;
3961 goto done;
3962 }
3963
3964 if (copy_to_user(&enum_ptr[copied].name,
3965 &prop_enum->name, DRM_PROP_NAME_LEN)) {
3966 ret = -EFAULT;
3967 goto done;
3968 }
3969 copied++;
3970 }
3971 }
3972 out_resp->count_enum_blobs = enum_count;
3973 }
3974
Daniel Vetter3758b342014-11-19 18:38:10 +01003975 /*
3976 * NOTE: The idea seems to have been to use this to read all the blob
3977 * property values. But nothing ever added them to the corresponding
3978 * list, userspace always used the special-purpose get_blob ioctl to
3979 * read the value for a blob property. It also doesn't make a lot of
3980 * sense to return values here when everything else is just metadata for
3981 * the property itself.
3982 */
3983 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
3984 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003985done:
Daniel Vetter84849902012-12-02 00:28:11 +01003986 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003987 return ret;
3988}
3989
Thierry Redingecbbe592014-05-13 11:36:13 +02003990static struct drm_property_blob *
3991drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02003992 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08003993{
3994 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003995 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003996
3997 if (!length || !data)
3998 return NULL;
3999
4000 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4001 if (!blob)
4002 return NULL;
4003
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004004 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4005 if (ret) {
4006 kfree(blob);
4007 return NULL;
4008 }
4009
Dave Airlief453ba02008-11-07 14:05:41 -08004010 blob->length = length;
4011
4012 memcpy(blob->data, data, length);
4013
Dave Airlief453ba02008-11-07 14:05:41 -08004014 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
4015 return blob;
4016}
4017
4018static void drm_property_destroy_blob(struct drm_device *dev,
4019 struct drm_property_blob *blob)
4020{
4021 drm_mode_object_put(dev, &blob->base);
4022 list_del(&blob->head);
4023 kfree(blob);
4024}
4025
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004026/**
4027 * drm_mode_getblob_ioctl - get the contents of a blob property value
4028 * @dev: DRM device
4029 * @data: ioctl data
4030 * @file_priv: DRM file info
4031 *
4032 * This function retrieves the contents of a blob property. The value stored in
4033 * an object's blob property is just a normal modeset object id.
4034 *
4035 * Called by the user via ioctl.
4036 *
4037 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004038 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004039 */
Dave Airlief453ba02008-11-07 14:05:41 -08004040int drm_mode_getblob_ioctl(struct drm_device *dev,
4041 void *data, struct drm_file *file_priv)
4042{
Dave Airlief453ba02008-11-07 14:05:41 -08004043 struct drm_mode_get_blob *out_resp = data;
4044 struct drm_property_blob *blob;
4045 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004046 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004047
Dave Airliefb3b06c2011-02-08 13:55:21 +10004048 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4049 return -EINVAL;
4050
Daniel Vetter84849902012-12-02 00:28:11 +01004051 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004052 blob = drm_property_blob_find(dev, out_resp->blob_id);
4053 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004054 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004055 goto done;
4056 }
Dave Airlief453ba02008-11-07 14:05:41 -08004057
4058 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004059 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Dave Airlief453ba02008-11-07 14:05:41 -08004060 if (copy_to_user(blob_ptr, blob->data, blob->length)){
4061 ret = -EFAULT;
4062 goto done;
4063 }
4064 }
4065 out_resp->length = blob->length;
4066
4067done:
Daniel Vetter84849902012-12-02 00:28:11 +01004068 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004069 return ret;
4070}
4071
Dave Airliecc7096f2014-10-22 12:03:04 +10004072/**
4073 * drm_mode_connector_set_path_property - set tile property on connector
4074 * @connector: connector to set property on.
4075 * @path: path to use for property.
4076 *
4077 * This creates a property to expose to userspace to specify a
4078 * connector path. This is mainly used for DisplayPort MST where
4079 * connectors have a topology and we want to allow userspace to give
4080 * them more meaningful names.
4081 *
4082 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004083 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004084 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004085int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004086 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004087{
4088 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004089 size_t size = strlen(path) + 1;
4090 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004091
4092 connector->path_blob_ptr = drm_property_create_blob(connector->dev,
4093 size, path);
4094 if (!connector->path_blob_ptr)
4095 return -EINVAL;
4096
4097 ret = drm_object_property_set_value(&connector->base,
4098 dev->mode_config.path_property,
4099 connector->path_blob_ptr->base.id);
4100 return ret;
4101}
4102EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4103
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004104/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004105 * drm_mode_connector_set_tile_property - set tile property on connector
4106 * @connector: connector to set property on.
4107 *
4108 * This looks up the tile information for a connector, and creates a
4109 * property for userspace to parse if it exists. The property is of
4110 * the form of 8 integers using ':' as a separator.
4111 *
4112 * Returns:
4113 * Zero on success, errno on failure.
4114 */
4115int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4116{
4117 struct drm_device *dev = connector->dev;
4118 int ret, size;
4119 char tile[256];
4120
4121 if (connector->tile_blob_ptr)
4122 drm_property_destroy_blob(dev, connector->tile_blob_ptr);
4123
4124 if (!connector->has_tile) {
4125 connector->tile_blob_ptr = NULL;
4126 ret = drm_object_property_set_value(&connector->base,
4127 dev->mode_config.tile_property, 0);
4128 return ret;
4129 }
4130
4131 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4132 connector->tile_group->id, connector->tile_is_single_monitor,
4133 connector->num_h_tile, connector->num_v_tile,
4134 connector->tile_h_loc, connector->tile_v_loc,
4135 connector->tile_h_size, connector->tile_v_size);
4136 size = strlen(tile) + 1;
4137
4138 connector->tile_blob_ptr = drm_property_create_blob(connector->dev,
4139 size, tile);
4140 if (!connector->tile_blob_ptr)
4141 return -EINVAL;
4142
4143 ret = drm_object_property_set_value(&connector->base,
4144 dev->mode_config.tile_property,
4145 connector->tile_blob_ptr->base.id);
4146 return ret;
4147}
4148EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4149
4150/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004151 * drm_mode_connector_update_edid_property - update the edid property of a connector
4152 * @connector: drm connector
4153 * @edid: new value of the edid property
4154 *
4155 * This function creates a new blob modeset object and assigns its id to the
4156 * connector's edid property.
4157 *
4158 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004159 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004160 */
Dave Airlief453ba02008-11-07 14:05:41 -08004161int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004162 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004163{
4164 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004165 size_t size;
4166 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004167
Thomas Wood4cf2b282014-06-18 17:52:33 +01004168 /* ignore requests to set edid when overridden */
4169 if (connector->override_edid)
4170 return 0;
4171
Dave Airlief453ba02008-11-07 14:05:41 -08004172 if (connector->edid_blob_ptr)
4173 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
4174
4175 /* Delete edid, when there is none. */
4176 if (!edid) {
4177 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05004178 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08004179 return ret;
4180 }
4181
Adam Jackson7466f4c2010-03-29 21:43:23 +00004182 size = EDID_LENGTH * (1 + edid->extensions);
4183 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
4184 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00004185 if (!connector->edid_blob_ptr)
4186 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08004187
Rob Clark58495562012-10-11 20:50:56 -05004188 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08004189 dev->mode_config.edid_property,
4190 connector->edid_blob_ptr->base.id);
4191
4192 return ret;
4193}
4194EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4195
Rob Clark3843e712014-12-16 18:05:29 -05004196/* Some properties could refer to dynamic refcnt'd objects, or things that
4197 * need special locking to handle lifetime issues (ie. to ensure the prop
4198 * value doesn't become invalid part way through the property update due to
4199 * race). The value returned by reference via 'obj' should be passed back
4200 * to drm_property_change_valid_put() after the property is set (and the
4201 * object to which the property is attached has a chance to take it's own
4202 * reference).
4203 */
4204static bool drm_property_change_valid_get(struct drm_property *property,
4205 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004206{
4207 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4208 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004209
Rob Clark3843e712014-12-16 18:05:29 -05004210 *ref = NULL;
4211
Rob Clark5ea22f22014-05-30 11:34:01 -04004212 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004213 if (value < property->values[0] || value > property->values[1])
4214 return false;
4215 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004216 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4217 int64_t svalue = U642I64(value);
4218 if (svalue < U642I64(property->values[0]) ||
4219 svalue > U642I64(property->values[1]))
4220 return false;
4221 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004222 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Rob Clark49e27542012-05-17 02:23:26 -06004223 int i;
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004224 uint64_t valid_mask = 0;
Rob Clark49e27542012-05-17 02:23:26 -06004225 for (i = 0; i < property->num_values; i++)
4226 valid_mask |= (1ULL << property->values[i]);
4227 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004228 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Ville Syrjäläc4a56752012-10-25 18:05:06 +00004229 /* Only the driver knows */
4230 return true;
Rob Clark98f75de2014-05-30 11:37:03 -04004231 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004232 /* a zero value for an object property translates to null: */
4233 if (value == 0)
4234 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004235
4236 /* handle refcnt'd objects specially: */
4237 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4238 struct drm_framebuffer *fb;
4239 fb = drm_framebuffer_lookup(property->dev, value);
4240 if (fb) {
4241 *ref = &fb->base;
4242 return true;
4243 } else {
4244 return false;
4245 }
4246 } else {
4247 return _object_find(property->dev, value, property->values[0]) != NULL;
4248 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004249 } else {
4250 int i;
4251 for (i = 0; i < property->num_values; i++)
4252 if (property->values[i] == value)
4253 return true;
4254 return false;
4255 }
4256}
4257
Rob Clark3843e712014-12-16 18:05:29 -05004258static void drm_property_change_valid_put(struct drm_property *property,
4259 struct drm_mode_object *ref)
4260{
4261 if (!ref)
4262 return;
4263
4264 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4265 if (property->values[0] == DRM_MODE_OBJECT_FB)
4266 drm_framebuffer_unreference(obj_to_fb(ref));
4267 }
4268}
4269
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004270/**
4271 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4272 * @dev: DRM device
4273 * @data: ioctl data
4274 * @file_priv: DRM file info
4275 *
4276 * This function sets the current value for a connectors's property. It also
4277 * calls into a driver's ->set_property callback to update the hardware state
4278 *
4279 * Called by the user via ioctl.
4280 *
4281 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004282 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004283 */
Dave Airlief453ba02008-11-07 14:05:41 -08004284int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4285 void *data, struct drm_file *file_priv)
4286{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004287 struct drm_mode_connector_set_property *conn_set_prop = data;
4288 struct drm_mode_obj_set_property obj_set_prop = {
4289 .value = conn_set_prop->value,
4290 .prop_id = conn_set_prop->prop_id,
4291 .obj_id = conn_set_prop->connector_id,
4292 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4293 };
Dave Airlief453ba02008-11-07 14:05:41 -08004294
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004295 /* It does all the locking and checking we need */
4296 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004297}
4298
Paulo Zanonic5431882012-05-15 18:09:02 -03004299static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4300 struct drm_property *property,
4301 uint64_t value)
4302{
4303 int ret = -EINVAL;
4304 struct drm_connector *connector = obj_to_connector(obj);
4305
4306 /* Do DPMS ourselves */
4307 if (property == connector->dev->mode_config.dpms_property) {
4308 if (connector->funcs->dpms)
4309 (*connector->funcs->dpms)(connector, (int)value);
4310 ret = 0;
4311 } else if (connector->funcs->set_property)
4312 ret = connector->funcs->set_property(connector, property, value);
4313
4314 /* store the property value if successful */
4315 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004316 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004317 return ret;
4318}
4319
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004320static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4321 struct drm_property *property,
4322 uint64_t value)
4323{
4324 int ret = -EINVAL;
4325 struct drm_crtc *crtc = obj_to_crtc(obj);
4326
4327 if (crtc->funcs->set_property)
4328 ret = crtc->funcs->set_property(crtc, property, value);
4329 if (!ret)
4330 drm_object_property_set_value(obj, property, value);
4331
4332 return ret;
4333}
4334
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004335/**
4336 * drm_mode_plane_set_obj_prop - set the value of a property
4337 * @plane: drm plane object to set property value for
4338 * @property: property to set
4339 * @value: value the property should be set to
4340 *
4341 * This functions sets a given property on a given plane object. This function
4342 * calls the driver's ->set_property callback and changes the software state of
4343 * the property if the callback succeeds.
4344 *
4345 * Returns:
4346 * Zero on success, error code on failure.
4347 */
4348int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4349 struct drm_property *property,
4350 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004351{
4352 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004353 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004354
4355 if (plane->funcs->set_property)
4356 ret = plane->funcs->set_property(plane, property, value);
4357 if (!ret)
4358 drm_object_property_set_value(obj, property, value);
4359
4360 return ret;
4361}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004362EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004363
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004364/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004365 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004366 * @dev: DRM device
4367 * @data: ioctl data
4368 * @file_priv: DRM file info
4369 *
4370 * This function retrieves the current value for an object's property. Compared
4371 * to the connector specific ioctl this one is extended to also work on crtc and
4372 * plane objects.
4373 *
4374 * Called by the user via ioctl.
4375 *
4376 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004377 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004378 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004379int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4380 struct drm_file *file_priv)
4381{
4382 struct drm_mode_obj_get_properties *arg = data;
4383 struct drm_mode_object *obj;
4384 int ret = 0;
4385 int i;
4386 int copied = 0;
4387 int props_count = 0;
4388 uint32_t __user *props_ptr;
4389 uint64_t __user *prop_values_ptr;
4390
4391 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4392 return -EINVAL;
4393
Daniel Vetter84849902012-12-02 00:28:11 +01004394 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004395
4396 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4397 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004398 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004399 goto out;
4400 }
4401 if (!obj->properties) {
4402 ret = -EINVAL;
4403 goto out;
4404 }
4405
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004406 props_count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03004407
4408 /* This ioctl is called twice, once to determine how much space is
4409 * needed, and the 2nd time to fill it. */
4410 if ((arg->count_props >= props_count) && props_count) {
4411 copied = 0;
4412 props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
4413 prop_values_ptr = (uint64_t __user *)(unsigned long)
4414 (arg->prop_values_ptr);
4415 for (i = 0; i < props_count; i++) {
4416 if (put_user(obj->properties->ids[i],
4417 props_ptr + copied)) {
4418 ret = -EFAULT;
4419 goto out;
4420 }
4421 if (put_user(obj->properties->values[i],
4422 prop_values_ptr + copied)) {
4423 ret = -EFAULT;
4424 goto out;
4425 }
4426 copied++;
4427 }
4428 }
4429 arg->count_props = props_count;
4430out:
Daniel Vetter84849902012-12-02 00:28:11 +01004431 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004432 return ret;
4433}
4434
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004435/**
4436 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4437 * @dev: DRM device
4438 * @data: ioctl data
4439 * @file_priv: DRM file info
4440 *
4441 * This function sets the current value for an object's property. It also calls
4442 * into a driver's ->set_property callback to update the hardware state.
4443 * Compared to the connector specific ioctl this one is extended to also work on
4444 * crtc and plane objects.
4445 *
4446 * Called by the user via ioctl.
4447 *
4448 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004449 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004450 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004451int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4452 struct drm_file *file_priv)
4453{
4454 struct drm_mode_obj_set_property *arg = data;
4455 struct drm_mode_object *arg_obj;
4456 struct drm_mode_object *prop_obj;
4457 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05004458 int i, ret = -EINVAL;
4459 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03004460
4461 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4462 return -EINVAL;
4463
Daniel Vetter84849902012-12-02 00:28:11 +01004464 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004465
4466 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004467 if (!arg_obj) {
4468 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004469 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004470 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004471 if (!arg_obj->properties)
4472 goto out;
4473
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004474 for (i = 0; i < arg_obj->properties->count; i++)
Paulo Zanonic5431882012-05-15 18:09:02 -03004475 if (arg_obj->properties->ids[i] == arg->prop_id)
4476 break;
4477
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004478 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004479 goto out;
4480
4481 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4482 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004483 if (!prop_obj) {
4484 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004485 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004486 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004487 property = obj_to_property(prop_obj);
4488
Rob Clark3843e712014-12-16 18:05:29 -05004489 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03004490 goto out;
4491
4492 switch (arg_obj->type) {
4493 case DRM_MODE_OBJECT_CONNECTOR:
4494 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4495 arg->value);
4496 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004497 case DRM_MODE_OBJECT_CRTC:
4498 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4499 break;
Rob Clark4d939142012-05-17 02:23:27 -06004500 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004501 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4502 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06004503 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004504 }
4505
Rob Clark3843e712014-12-16 18:05:29 -05004506 drm_property_change_valid_put(property, ref);
4507
Paulo Zanonic5431882012-05-15 18:09:02 -03004508out:
Daniel Vetter84849902012-12-02 00:28:11 +01004509 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004510 return ret;
4511}
4512
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004513/**
4514 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4515 * @connector: connector to attach
4516 * @encoder: encoder to attach @connector to
4517 *
4518 * This function links up a connector to an encoder. Note that the routing
4519 * restrictions between encoders and crtcs are exposed to userspace through the
4520 * possible_clones and possible_crtcs bitmasks.
4521 *
4522 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004523 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004524 */
Dave Airlief453ba02008-11-07 14:05:41 -08004525int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4526 struct drm_encoder *encoder)
4527{
4528 int i;
4529
4530 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4531 if (connector->encoder_ids[i] == 0) {
4532 connector->encoder_ids[i] = encoder->base.id;
4533 return 0;
4534 }
4535 }
4536 return -ENOMEM;
4537}
4538EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4539
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004540/**
4541 * drm_mode_crtc_set_gamma_size - set the gamma table size
4542 * @crtc: CRTC to set the gamma table size for
4543 * @gamma_size: size of the gamma table
4544 *
4545 * Drivers which support gamma tables should set this to the supported gamma
4546 * table size when initializing the CRTC. Currently the drm core only supports a
4547 * fixed gamma table size.
4548 *
4549 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004550 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004551 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004552int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004553 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004554{
4555 crtc->gamma_size = gamma_size;
4556
4557 crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
4558 if (!crtc->gamma_store) {
4559 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004560 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004561 }
4562
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004563 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004564}
4565EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4566
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004567/**
4568 * drm_mode_gamma_set_ioctl - set the gamma table
4569 * @dev: DRM device
4570 * @data: ioctl data
4571 * @file_priv: DRM file info
4572 *
4573 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4574 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4575 *
4576 * Called by the user via ioctl.
4577 *
4578 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004579 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004580 */
Dave Airlief453ba02008-11-07 14:05:41 -08004581int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4582 void *data, struct drm_file *file_priv)
4583{
4584 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004585 struct drm_crtc *crtc;
4586 void *r_base, *g_base, *b_base;
4587 int size;
4588 int ret = 0;
4589
Dave Airliefb3b06c2011-02-08 13:55:21 +10004590 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4591 return -EINVAL;
4592
Daniel Vetter84849902012-12-02 00:28:11 +01004593 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004594 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4595 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004596 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004597 goto out;
4598 }
Dave Airlief453ba02008-11-07 14:05:41 -08004599
Laurent Pinchartebe0f242012-05-17 13:27:24 +02004600 if (crtc->funcs->gamma_set == NULL) {
4601 ret = -ENOSYS;
4602 goto out;
4603 }
4604
Dave Airlief453ba02008-11-07 14:05:41 -08004605 /* memcpy into gamma store */
4606 if (crtc_lut->gamma_size != crtc->gamma_size) {
4607 ret = -EINVAL;
4608 goto out;
4609 }
4610
4611 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4612 r_base = crtc->gamma_store;
4613 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4614 ret = -EFAULT;
4615 goto out;
4616 }
4617
4618 g_base = r_base + size;
4619 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4620 ret = -EFAULT;
4621 goto out;
4622 }
4623
4624 b_base = g_base + size;
4625 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4626 ret = -EFAULT;
4627 goto out;
4628 }
4629
James Simmons72034252010-08-03 01:33:19 +01004630 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08004631
4632out:
Daniel Vetter84849902012-12-02 00:28:11 +01004633 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004634 return ret;
4635
4636}
4637
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004638/**
4639 * drm_mode_gamma_get_ioctl - get the gamma table
4640 * @dev: DRM device
4641 * @data: ioctl data
4642 * @file_priv: DRM file info
4643 *
4644 * Copy the current gamma table into the storage provided. This also provides
4645 * the gamma table size the driver expects, which can be used to size the
4646 * allocated storage.
4647 *
4648 * Called by the user via ioctl.
4649 *
4650 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004651 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004652 */
Dave Airlief453ba02008-11-07 14:05:41 -08004653int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4654 void *data, struct drm_file *file_priv)
4655{
4656 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004657 struct drm_crtc *crtc;
4658 void *r_base, *g_base, *b_base;
4659 int size;
4660 int ret = 0;
4661
Dave Airliefb3b06c2011-02-08 13:55:21 +10004662 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4663 return -EINVAL;
4664
Daniel Vetter84849902012-12-02 00:28:11 +01004665 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004666 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4667 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004668 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004669 goto out;
4670 }
Dave Airlief453ba02008-11-07 14:05:41 -08004671
4672 /* memcpy into gamma store */
4673 if (crtc_lut->gamma_size != crtc->gamma_size) {
4674 ret = -EINVAL;
4675 goto out;
4676 }
4677
4678 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4679 r_base = crtc->gamma_store;
4680 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4681 ret = -EFAULT;
4682 goto out;
4683 }
4684
4685 g_base = r_base + size;
4686 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4687 ret = -EFAULT;
4688 goto out;
4689 }
4690
4691 b_base = g_base + size;
4692 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4693 ret = -EFAULT;
4694 goto out;
4695 }
4696out:
Daniel Vetter84849902012-12-02 00:28:11 +01004697 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004698 return ret;
4699}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004700
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004701/**
4702 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4703 * @dev: DRM device
4704 * @data: ioctl data
4705 * @file_priv: DRM file info
4706 *
4707 * This schedules an asynchronous update on a given CRTC, called page flip.
4708 * Optionally a drm event is generated to signal the completion of the event.
4709 * Generic drivers cannot assume that a pageflip with changed framebuffer
4710 * properties (including driver specific metadata like tiling layout) will work,
4711 * but some drivers support e.g. pixel format changes through the pageflip
4712 * ioctl.
4713 *
4714 * Called by the user via ioctl.
4715 *
4716 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004717 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004718 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004719int drm_mode_page_flip_ioctl(struct drm_device *dev,
4720 void *data, struct drm_file *file_priv)
4721{
4722 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004723 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02004724 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004725 struct drm_pending_vblank_event *e = NULL;
4726 unsigned long flags;
4727 int ret = -EINVAL;
4728
4729 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4730 page_flip->reserved != 0)
4731 return -EINVAL;
4732
Keith Packard62f21042013-07-22 18:50:00 -07004733 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4734 return -EINVAL;
4735
Rob Clarka2b34e22013-10-05 16:36:52 -04004736 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4737 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004738 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004739
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01004740 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07004741 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01004742 /* The framebuffer is currently unbound, presumably
4743 * due to a hotplug event, that userspace has not
4744 * yet discovered.
4745 */
4746 ret = -EBUSY;
4747 goto out;
4748 }
4749
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004750 if (crtc->funcs->page_flip == NULL)
4751 goto out;
4752
Daniel Vetter786b99e2012-12-02 21:53:40 +01004753 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004754 if (!fb) {
4755 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004756 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004757 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004758
Damien Lespiauc11e9282013-09-25 16:45:30 +01004759 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4760 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004761 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004762
Matt Roperf4510a22014-04-01 15:22:40 -07004763 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02004764 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4765 ret = -EINVAL;
4766 goto out;
4767 }
4768
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004769 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4770 ret = -ENOMEM;
4771 spin_lock_irqsave(&dev->event_lock, flags);
4772 if (file_priv->event_space < sizeof e->event) {
4773 spin_unlock_irqrestore(&dev->event_lock, flags);
4774 goto out;
4775 }
4776 file_priv->event_space -= sizeof e->event;
4777 spin_unlock_irqrestore(&dev->event_lock, flags);
4778
4779 e = kzalloc(sizeof *e, GFP_KERNEL);
4780 if (e == NULL) {
4781 spin_lock_irqsave(&dev->event_lock, flags);
4782 file_priv->event_space += sizeof e->event;
4783 spin_unlock_irqrestore(&dev->event_lock, flags);
4784 goto out;
4785 }
4786
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08004787 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004788 e->event.base.length = sizeof e->event;
4789 e->event.user_data = page_flip->user_data;
4790 e->base.event = &e->event.base;
4791 e->base.file_priv = file_priv;
4792 e->base.destroy =
4793 (void (*) (struct drm_pending_event *)) kfree;
4794 }
4795
Daniel Vetter3d30a592014-07-27 13:42:42 +02004796 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07004797 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004798 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004799 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4800 spin_lock_irqsave(&dev->event_lock, flags);
4801 file_priv->event_space += sizeof e->event;
4802 spin_unlock_irqrestore(&dev->event_lock, flags);
4803 kfree(e);
4804 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01004805 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02004806 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01004807 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01004808 /*
4809 * Warn if the driver hasn't properly updated the crtc->fb
4810 * field to reflect that the new framebuffer is now used.
4811 * Failing to do so will screw with the reference counting
4812 * on framebuffers.
4813 */
Matt Roperf4510a22014-04-01 15:22:40 -07004814 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01004815 /* Unref only the old framebuffer. */
4816 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004817 }
4818
4819out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01004820 if (fb)
4821 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02004822 if (crtc->primary->old_fb)
4823 drm_framebuffer_unreference(crtc->primary->old_fb);
4824 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02004825 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01004826
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004827 return ret;
4828}
Chris Wilsoneb033552011-01-24 15:11:08 +00004829
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004830/**
4831 * drm_mode_config_reset - call ->reset callbacks
4832 * @dev: drm device
4833 *
4834 * This functions calls all the crtc's, encoder's and connector's ->reset
4835 * callback. Drivers can use this in e.g. their driver load or resume code to
4836 * reset hardware and software state.
4837 */
Chris Wilsoneb033552011-01-24 15:11:08 +00004838void drm_mode_config_reset(struct drm_device *dev)
4839{
4840 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02004841 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00004842 struct drm_encoder *encoder;
4843 struct drm_connector *connector;
4844
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02004845 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
4846 if (plane->funcs->reset)
4847 plane->funcs->reset(plane);
4848
Chris Wilsoneb033552011-01-24 15:11:08 +00004849 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4850 if (crtc->funcs->reset)
4851 crtc->funcs->reset(crtc);
4852
4853 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
4854 if (encoder->funcs->reset)
4855 encoder->funcs->reset(encoder);
4856
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004857 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4858 connector->status = connector_status_unknown;
4859
Chris Wilsoneb033552011-01-24 15:11:08 +00004860 if (connector->funcs->reset)
4861 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004862 }
Chris Wilsoneb033552011-01-24 15:11:08 +00004863}
4864EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10004865
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004866/**
4867 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
4868 * @dev: DRM device
4869 * @data: ioctl data
4870 * @file_priv: DRM file info
4871 *
4872 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
4873 * TTM or something else entirely) and returns the resulting buffer handle. This
4874 * handle can then be wrapped up into a framebuffer modeset object.
4875 *
4876 * Note that userspace is not allowed to use such objects for render
4877 * acceleration - drivers must create their own private ioctls for such a use
4878 * case.
4879 *
4880 * Called by the user via ioctl.
4881 *
4882 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004883 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004884 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004885int drm_mode_create_dumb_ioctl(struct drm_device *dev,
4886 void *data, struct drm_file *file_priv)
4887{
4888 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01004889 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10004890
4891 if (!dev->driver->dumb_create)
4892 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01004893 if (!args->width || !args->height || !args->bpp)
4894 return -EINVAL;
4895
4896 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02004897 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01004898 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02004899 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01004900 return -EINVAL;
4901 stride = cpp * args->width;
4902 if (args->height > 0xffffffffU / stride)
4903 return -EINVAL;
4904
4905 /* test for wrap-around */
4906 size = args->height * stride;
4907 if (PAGE_ALIGN(size) == 0)
4908 return -EINVAL;
4909
Thierry Redingf6085952014-11-03 11:14:14 +01004910 /*
4911 * handle, pitch and size are output parameters. Zero them out to
4912 * prevent drivers from accidentally using uninitialized data. Since
4913 * not all existing userspace is clearing these fields properly we
4914 * cannot reject IOCTL with garbage in them.
4915 */
4916 args->handle = 0;
4917 args->pitch = 0;
4918 args->size = 0;
4919
Dave Airlieff72145b2011-02-07 12:16:14 +10004920 return dev->driver->dumb_create(file_priv, dev, args);
4921}
4922
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004923/**
4924 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
4925 * @dev: DRM device
4926 * @data: ioctl data
4927 * @file_priv: DRM file info
4928 *
4929 * Allocate an offset in the drm device node's address space to be able to
4930 * memory map a dumb buffer.
4931 *
4932 * Called by the user via ioctl.
4933 *
4934 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004935 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004936 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004937int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
4938 void *data, struct drm_file *file_priv)
4939{
4940 struct drm_mode_map_dumb *args = data;
4941
4942 /* call driver ioctl to get mmap offset */
4943 if (!dev->driver->dumb_map_offset)
4944 return -ENOSYS;
4945
4946 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
4947}
4948
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004949/**
4950 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
4951 * @dev: DRM device
4952 * @data: ioctl data
4953 * @file_priv: DRM file info
4954 *
4955 * This destroys the userspace handle for the given dumb backing storage buffer.
4956 * Since buffer objects must be reference counted in the kernel a buffer object
4957 * won't be immediately freed if a framebuffer modeset object still uses it.
4958 *
4959 * Called by the user via ioctl.
4960 *
4961 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004962 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004963 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004964int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
4965 void *data, struct drm_file *file_priv)
4966{
4967 struct drm_mode_destroy_dumb *args = data;
4968
4969 if (!dev->driver->dumb_destroy)
4970 return -ENOSYS;
4971
4972 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
4973}
Dave Airlie248dbc22011-11-29 20:02:54 +00004974
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004975/**
4976 * drm_fb_get_bpp_depth - get the bpp/depth values for format
4977 * @format: pixel format (DRM_FORMAT_*)
4978 * @depth: storage for the depth value
4979 * @bpp: storage for the bpp value
4980 *
4981 * This only supports RGB formats here for compat with code that doesn't use
4982 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00004983 */
4984void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
4985 int *bpp)
4986{
4987 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02004988 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02004989 case DRM_FORMAT_RGB332:
4990 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00004991 *depth = 8;
4992 *bpp = 8;
4993 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004994 case DRM_FORMAT_XRGB1555:
4995 case DRM_FORMAT_XBGR1555:
4996 case DRM_FORMAT_RGBX5551:
4997 case DRM_FORMAT_BGRX5551:
4998 case DRM_FORMAT_ARGB1555:
4999 case DRM_FORMAT_ABGR1555:
5000 case DRM_FORMAT_RGBA5551:
5001 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005002 *depth = 15;
5003 *bpp = 16;
5004 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005005 case DRM_FORMAT_RGB565:
5006 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005007 *depth = 16;
5008 *bpp = 16;
5009 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005010 case DRM_FORMAT_RGB888:
5011 case DRM_FORMAT_BGR888:
5012 *depth = 24;
5013 *bpp = 24;
5014 break;
5015 case DRM_FORMAT_XRGB8888:
5016 case DRM_FORMAT_XBGR8888:
5017 case DRM_FORMAT_RGBX8888:
5018 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005019 *depth = 24;
5020 *bpp = 32;
5021 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005022 case DRM_FORMAT_XRGB2101010:
5023 case DRM_FORMAT_XBGR2101010:
5024 case DRM_FORMAT_RGBX1010102:
5025 case DRM_FORMAT_BGRX1010102:
5026 case DRM_FORMAT_ARGB2101010:
5027 case DRM_FORMAT_ABGR2101010:
5028 case DRM_FORMAT_RGBA1010102:
5029 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005030 *depth = 30;
5031 *bpp = 32;
5032 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005033 case DRM_FORMAT_ARGB8888:
5034 case DRM_FORMAT_ABGR8888:
5035 case DRM_FORMAT_RGBA8888:
5036 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005037 *depth = 32;
5038 *bpp = 32;
5039 break;
5040 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005041 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5042 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005043 *depth = 0;
5044 *bpp = 0;
5045 break;
5046 }
5047}
5048EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005049
5050/**
5051 * drm_format_num_planes - get the number of planes for format
5052 * @format: pixel format (DRM_FORMAT_*)
5053 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005054 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005055 * The number of planes used by the specified pixel format.
5056 */
5057int drm_format_num_planes(uint32_t format)
5058{
5059 switch (format) {
5060 case DRM_FORMAT_YUV410:
5061 case DRM_FORMAT_YVU410:
5062 case DRM_FORMAT_YUV411:
5063 case DRM_FORMAT_YVU411:
5064 case DRM_FORMAT_YUV420:
5065 case DRM_FORMAT_YVU420:
5066 case DRM_FORMAT_YUV422:
5067 case DRM_FORMAT_YVU422:
5068 case DRM_FORMAT_YUV444:
5069 case DRM_FORMAT_YVU444:
5070 return 3;
5071 case DRM_FORMAT_NV12:
5072 case DRM_FORMAT_NV21:
5073 case DRM_FORMAT_NV16:
5074 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005075 case DRM_FORMAT_NV24:
5076 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005077 return 2;
5078 default:
5079 return 1;
5080 }
5081}
5082EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005083
5084/**
5085 * drm_format_plane_cpp - determine the bytes per pixel value
5086 * @format: pixel format (DRM_FORMAT_*)
5087 * @plane: plane index
5088 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005089 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005090 * The bytes per pixel value for the specified plane.
5091 */
5092int drm_format_plane_cpp(uint32_t format, int plane)
5093{
5094 unsigned int depth;
5095 int bpp;
5096
5097 if (plane >= drm_format_num_planes(format))
5098 return 0;
5099
5100 switch (format) {
5101 case DRM_FORMAT_YUYV:
5102 case DRM_FORMAT_YVYU:
5103 case DRM_FORMAT_UYVY:
5104 case DRM_FORMAT_VYUY:
5105 return 2;
5106 case DRM_FORMAT_NV12:
5107 case DRM_FORMAT_NV21:
5108 case DRM_FORMAT_NV16:
5109 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005110 case DRM_FORMAT_NV24:
5111 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005112 return plane ? 2 : 1;
5113 case DRM_FORMAT_YUV410:
5114 case DRM_FORMAT_YVU410:
5115 case DRM_FORMAT_YUV411:
5116 case DRM_FORMAT_YVU411:
5117 case DRM_FORMAT_YUV420:
5118 case DRM_FORMAT_YVU420:
5119 case DRM_FORMAT_YUV422:
5120 case DRM_FORMAT_YVU422:
5121 case DRM_FORMAT_YUV444:
5122 case DRM_FORMAT_YVU444:
5123 return 1;
5124 default:
5125 drm_fb_get_bpp_depth(format, &depth, &bpp);
5126 return bpp >> 3;
5127 }
5128}
5129EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005130
5131/**
5132 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5133 * @format: pixel format (DRM_FORMAT_*)
5134 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005135 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005136 * The horizontal chroma subsampling factor for the
5137 * specified pixel format.
5138 */
5139int drm_format_horz_chroma_subsampling(uint32_t format)
5140{
5141 switch (format) {
5142 case DRM_FORMAT_YUV411:
5143 case DRM_FORMAT_YVU411:
5144 case DRM_FORMAT_YUV410:
5145 case DRM_FORMAT_YVU410:
5146 return 4;
5147 case DRM_FORMAT_YUYV:
5148 case DRM_FORMAT_YVYU:
5149 case DRM_FORMAT_UYVY:
5150 case DRM_FORMAT_VYUY:
5151 case DRM_FORMAT_NV12:
5152 case DRM_FORMAT_NV21:
5153 case DRM_FORMAT_NV16:
5154 case DRM_FORMAT_NV61:
5155 case DRM_FORMAT_YUV422:
5156 case DRM_FORMAT_YVU422:
5157 case DRM_FORMAT_YUV420:
5158 case DRM_FORMAT_YVU420:
5159 return 2;
5160 default:
5161 return 1;
5162 }
5163}
5164EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5165
5166/**
5167 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5168 * @format: pixel format (DRM_FORMAT_*)
5169 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005170 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005171 * The vertical chroma subsampling factor for the
5172 * specified pixel format.
5173 */
5174int drm_format_vert_chroma_subsampling(uint32_t format)
5175{
5176 switch (format) {
5177 case DRM_FORMAT_YUV410:
5178 case DRM_FORMAT_YVU410:
5179 return 4;
5180 case DRM_FORMAT_YUV420:
5181 case DRM_FORMAT_YVU420:
5182 case DRM_FORMAT_NV12:
5183 case DRM_FORMAT_NV21:
5184 return 2;
5185 default:
5186 return 1;
5187 }
5188}
5189EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005190
5191/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305192 * drm_rotation_simplify() - Try to simplify the rotation
5193 * @rotation: Rotation to be simplified
5194 * @supported_rotations: Supported rotations
5195 *
5196 * Attempt to simplify the rotation to a form that is supported.
5197 * Eg. if the hardware supports everything except DRM_REFLECT_X
5198 * one could call this function like this:
5199 *
5200 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5201 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5202 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5203 *
5204 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5205 * transforms the hardware supports, this function may not
5206 * be able to produce a supported transform, so the caller should
5207 * check the result afterwards.
5208 */
5209unsigned int drm_rotation_simplify(unsigned int rotation,
5210 unsigned int supported_rotations)
5211{
5212 if (rotation & ~supported_rotations) {
5213 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5214 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5215 }
5216
5217 return rotation;
5218}
5219EXPORT_SYMBOL(drm_rotation_simplify);
5220
5221/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005222 * drm_mode_config_init - initialize DRM mode_configuration structure
5223 * @dev: DRM device
5224 *
5225 * Initialize @dev's mode_config structure, used for tracking the graphics
5226 * configuration of @dev.
5227 *
5228 * Since this initializes the modeset locks, no locking is possible. Which is no
5229 * problem, since this should happen single threaded at init time. It is the
5230 * driver's problem to ensure this guarantee.
5231 *
5232 */
5233void drm_mode_config_init(struct drm_device *dev)
5234{
5235 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005236 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005237 mutex_init(&dev->mode_config.idr_mutex);
5238 mutex_init(&dev->mode_config.fb_lock);
5239 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5240 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5241 INIT_LIST_HEAD(&dev->mode_config.connector_list);
Sean Paul3b336ec2013-08-14 16:47:37 -04005242 INIT_LIST_HEAD(&dev->mode_config.bridge_list);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005243 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5244 INIT_LIST_HEAD(&dev->mode_config.property_list);
5245 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5246 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5247 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005248 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005249
5250 drm_modeset_lock_all(dev);
5251 drm_mode_create_standard_connector_properties(dev);
Rob Clark9922ab52014-04-01 20:16:57 -04005252 drm_mode_create_standard_plane_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005253 drm_modeset_unlock_all(dev);
5254
5255 /* Just to be sure */
5256 dev->mode_config.num_fb = 0;
5257 dev->mode_config.num_connector = 0;
5258 dev->mode_config.num_crtc = 0;
5259 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005260 dev->mode_config.num_overlay_plane = 0;
5261 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005262}
5263EXPORT_SYMBOL(drm_mode_config_init);
5264
5265/**
5266 * drm_mode_config_cleanup - free up DRM mode_config info
5267 * @dev: DRM device
5268 *
5269 * Free up all the connectors and CRTCs associated with this DRM device, then
5270 * free up the framebuffers and associated buffer objects.
5271 *
5272 * Note that since this /should/ happen single-threaded at driver/device
5273 * teardown time, no locking is required. It's the driver's job to ensure that
5274 * this guarantee actually holds true.
5275 *
5276 * FIXME: cleanup any dangling user buffer objects too
5277 */
5278void drm_mode_config_cleanup(struct drm_device *dev)
5279{
5280 struct drm_connector *connector, *ot;
5281 struct drm_crtc *crtc, *ct;
5282 struct drm_encoder *encoder, *enct;
Sean Paul3b336ec2013-08-14 16:47:37 -04005283 struct drm_bridge *bridge, *brt;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005284 struct drm_framebuffer *fb, *fbt;
5285 struct drm_property *property, *pt;
5286 struct drm_property_blob *blob, *bt;
5287 struct drm_plane *plane, *plt;
5288
5289 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5290 head) {
5291 encoder->funcs->destroy(encoder);
5292 }
5293
Sean Paul3b336ec2013-08-14 16:47:37 -04005294 list_for_each_entry_safe(bridge, brt,
5295 &dev->mode_config.bridge_list, head) {
5296 bridge->funcs->destroy(bridge);
5297 }
5298
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005299 list_for_each_entry_safe(connector, ot,
5300 &dev->mode_config.connector_list, head) {
5301 connector->funcs->destroy(connector);
5302 }
5303
5304 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5305 head) {
5306 drm_property_destroy(dev, property);
5307 }
5308
5309 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5310 head) {
5311 drm_property_destroy_blob(dev, blob);
5312 }
5313
5314 /*
5315 * Single-threaded teardown context, so it's not required to grab the
5316 * fb_lock to protect against concurrent fb_list access. Contrary, it
5317 * would actually deadlock with the drm_framebuffer_cleanup function.
5318 *
5319 * Also, if there are any framebuffers left, that's a driver leak now,
5320 * so politely WARN about this.
5321 */
5322 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5323 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5324 drm_framebuffer_remove(fb);
5325 }
5326
5327 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5328 head) {
5329 plane->funcs->destroy(plane);
5330 }
5331
5332 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5333 crtc->funcs->destroy(crtc);
5334 }
5335
Dave Airlie138f9eb2014-10-20 16:17:17 +10005336 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005337 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005338 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005339}
5340EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305341
5342struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5343 unsigned int supported_rotations)
5344{
5345 static const struct drm_prop_enum_list props[] = {
5346 { DRM_ROTATE_0, "rotate-0" },
5347 { DRM_ROTATE_90, "rotate-90" },
5348 { DRM_ROTATE_180, "rotate-180" },
5349 { DRM_ROTATE_270, "rotate-270" },
5350 { DRM_REFLECT_X, "reflect-x" },
5351 { DRM_REFLECT_Y, "reflect-y" },
5352 };
5353
5354 return drm_property_create_bitmask(dev, 0, "rotation",
5355 props, ARRAY_SIZE(props),
5356 supported_rotations);
5357}
5358EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005359
5360/**
5361 * DOC: Tile group
5362 *
5363 * Tile groups are used to represent tiled monitors with a unique
5364 * integer identifier. Tiled monitors using DisplayID v1.3 have
5365 * a unique 8-byte handle, we store this in a tile group, so we
5366 * have a common identifier for all tiles in a monitor group.
5367 */
5368static void drm_tile_group_free(struct kref *kref)
5369{
5370 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5371 struct drm_device *dev = tg->dev;
5372 mutex_lock(&dev->mode_config.idr_mutex);
5373 idr_remove(&dev->mode_config.tile_idr, tg->id);
5374 mutex_unlock(&dev->mode_config.idr_mutex);
5375 kfree(tg);
5376}
5377
5378/**
5379 * drm_mode_put_tile_group - drop a reference to a tile group.
5380 * @dev: DRM device
5381 * @tg: tile group to drop reference to.
5382 *
5383 * drop reference to tile group and free if 0.
5384 */
5385void drm_mode_put_tile_group(struct drm_device *dev,
5386 struct drm_tile_group *tg)
5387{
5388 kref_put(&tg->refcount, drm_tile_group_free);
5389}
5390
5391/**
5392 * drm_mode_get_tile_group - get a reference to an existing tile group
5393 * @dev: DRM device
5394 * @topology: 8-bytes unique per monitor.
5395 *
5396 * Use the unique bytes to get a reference to an existing tile group.
5397 *
5398 * RETURNS:
5399 * tile group or NULL if not found.
5400 */
5401struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5402 char topology[8])
5403{
5404 struct drm_tile_group *tg;
5405 int id;
5406 mutex_lock(&dev->mode_config.idr_mutex);
5407 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5408 if (!memcmp(tg->group_data, topology, 8)) {
5409 if (!kref_get_unless_zero(&tg->refcount))
5410 tg = NULL;
5411 mutex_unlock(&dev->mode_config.idr_mutex);
5412 return tg;
5413 }
5414 }
5415 mutex_unlock(&dev->mode_config.idr_mutex);
5416 return NULL;
5417}
5418
5419/**
5420 * drm_mode_create_tile_group - create a tile group from a displayid description
5421 * @dev: DRM device
5422 * @topology: 8-bytes unique per monitor.
5423 *
5424 * Create a tile group for the unique monitor, and get a unique
5425 * identifier for the tile group.
5426 *
5427 * RETURNS:
5428 * new tile group or error.
5429 */
5430struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5431 char topology[8])
5432{
5433 struct drm_tile_group *tg;
5434 int ret;
5435
5436 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5437 if (!tg)
5438 return ERR_PTR(-ENOMEM);
5439
5440 kref_init(&tg->refcount);
5441 memcpy(tg->group_data, topology, 8);
5442 tg->dev = dev;
5443
5444 mutex_lock(&dev->mode_config.idr_mutex);
5445 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5446 if (ret >= 0) {
5447 tg->id = ret;
5448 } else {
5449 kfree(tg);
5450 tg = ERR_PTR(ret);
5451 }
5452
5453 mutex_unlock(&dev->mode_config.idr_mutex);
5454 return tg;
5455}