blob: 4a44f894f631983a5570aa2d2194207f347b83ea [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);
Dave Airlief453ba02008-11-07 14:05:41 -0800728}
729EXPORT_SYMBOL(drm_crtc_cleanup);
730
731/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000732 * drm_crtc_index - find the index of a registered CRTC
733 * @crtc: CRTC to find index for
734 *
735 * Given a registered CRTC, return the index of that CRTC within a DRM
736 * device's list of CRTCs.
737 */
738unsigned int drm_crtc_index(struct drm_crtc *crtc)
739{
740 unsigned int index = 0;
741 struct drm_crtc *tmp;
742
743 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
744 if (tmp == crtc)
745 return index;
746
747 index++;
748 }
749
750 BUG();
751}
752EXPORT_SYMBOL(drm_crtc_index);
753
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100754/*
Dave Airlief453ba02008-11-07 14:05:41 -0800755 * drm_mode_remove - remove and free a mode
756 * @connector: connector list to modify
757 * @mode: mode to remove
758 *
Dave Airlief453ba02008-11-07 14:05:41 -0800759 * Remove @mode from @connector's mode list, then free it.
760 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100761static void drm_mode_remove(struct drm_connector *connector,
762 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800763{
764 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100765 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800766}
Dave Airlief453ba02008-11-07 14:05:41 -0800767
768/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200769 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
770 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200771 *
772 * The kernel supports per-connector configration of its consoles through
773 * use of the video= parameter. This function parses that option and
774 * extracts the user's specified mode (or enable/disable status) for a
775 * particular connector. This is typically only used during the early fbdev
776 * setup.
777 */
778static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
779{
780 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
781 char *option = NULL;
782
783 if (fb_get_options(connector->name, &option))
784 return;
785
786 if (!drm_mode_parse_command_line_for_connector(option,
787 connector,
788 mode))
789 return;
790
791 if (mode->force) {
792 const char *s;
793
794 switch (mode->force) {
795 case DRM_FORCE_OFF:
796 s = "OFF";
797 break;
798 case DRM_FORCE_ON_DIGITAL:
799 s = "ON - dig";
800 break;
801 default:
802 case DRM_FORCE_ON:
803 s = "ON";
804 break;
805 }
806
807 DRM_INFO("forcing %s connector %s\n", connector->name, s);
808 connector->force = mode->force;
809 }
810
811 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
812 connector->name,
813 mode->xres, mode->yres,
814 mode->refresh_specified ? mode->refresh : 60,
815 mode->rb ? " reduced blanking" : "",
816 mode->margins ? " with margins" : "",
817 mode->interlace ? " interlaced" : "");
818}
819
820/**
Dave Airlief453ba02008-11-07 14:05:41 -0800821 * drm_connector_init - Init a preallocated connector
822 * @dev: DRM device
823 * @connector: the connector to init
824 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100825 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800826 *
Dave Airlief453ba02008-11-07 14:05:41 -0800827 * Initialises a preallocated connector. Connectors should be
828 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200829 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100830 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200831 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800832 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200833int drm_connector_init(struct drm_device *dev,
834 struct drm_connector *connector,
835 const struct drm_connector_funcs *funcs,
836 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800837{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200838 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400839 struct ida *connector_ida =
840 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200841
Daniel Vetter84849902012-12-02 00:28:11 +0100842 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800843
Dave Airlie2ee39452014-07-24 11:53:45 +1000844 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200845 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300846 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200847
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300848 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800849 connector->dev = dev;
850 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800851 connector->connector_type = connector_type;
852 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400853 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
854 if (connector->connector_type_id < 0) {
855 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300856 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400857 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300858 connector->name =
859 kasprintf(GFP_KERNEL, "%s-%d",
860 drm_connector_enum_list[connector_type].name,
861 connector->connector_type_id);
862 if (!connector->name) {
863 ret = -ENOMEM;
864 goto out_put;
865 }
866
Dave Airlief453ba02008-11-07 14:05:41 -0800867 INIT_LIST_HEAD(&connector->probed_modes);
868 INIT_LIST_HEAD(&connector->modes);
869 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000870 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800871
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200872 drm_connector_get_cmdline_mode(connector);
873
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100874 /* We should add connectors at the end to avoid upsetting the connector
875 * index too much. */
Dave Airlief453ba02008-11-07 14:05:41 -0800876 list_add_tail(&connector->head, &dev->mode_config.connector_list);
877 dev->mode_config.num_connector++;
878
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200879 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500880 drm_object_attach_property(&connector->base,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200881 dev->mode_config.edid_property,
882 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800883
Rob Clark58495562012-10-11 20:50:56 -0500884 drm_object_attach_property(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -0800885 dev->mode_config.dpms_property, 0);
886
Thomas Wood30f65702014-06-18 17:52:32 +0100887 connector->debugfs_entry = NULL;
888
Jani Nikula2abdd312014-05-14 16:58:19 +0300889out_put:
890 if (ret)
891 drm_mode_object_put(dev, &connector->base);
892
893out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100894 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200895
896 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800897}
898EXPORT_SYMBOL(drm_connector_init);
899
900/**
901 * drm_connector_cleanup - cleans up an initialised connector
902 * @connector: connector to cleanup
903 *
Dave Airlief453ba02008-11-07 14:05:41 -0800904 * Cleans up the connector but doesn't free the object.
905 */
906void drm_connector_cleanup(struct drm_connector *connector)
907{
908 struct drm_device *dev = connector->dev;
909 struct drm_display_mode *mode, *t;
910
Dave Airlie40d9b042014-10-20 16:29:33 +1000911 if (connector->tile_group) {
912 drm_mode_put_tile_group(dev, connector->tile_group);
913 connector->tile_group = NULL;
914 }
915
Dave Airlief453ba02008-11-07 14:05:41 -0800916 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
917 drm_mode_remove(connector, mode);
918
919 list_for_each_entry_safe(mode, t, &connector->modes, head)
920 drm_mode_remove(connector, mode);
921
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400922 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
923 connector->connector_type_id);
924
Dave Airlief453ba02008-11-07 14:05:41 -0800925 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300926 kfree(connector->name);
927 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800928 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000929 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100930
931 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
932 if (connector->state && connector->funcs->atomic_destroy_state)
933 connector->funcs->atomic_destroy_state(connector,
934 connector->state);
Dave Airlief453ba02008-11-07 14:05:41 -0800935}
936EXPORT_SYMBOL(drm_connector_cleanup);
937
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100938/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200939 * drm_connector_index - find the index of a registered connector
940 * @connector: connector to find index for
941 *
942 * Given a registered connector, return the index of that connector within a DRM
943 * device's list of connectors.
944 */
945unsigned int drm_connector_index(struct drm_connector *connector)
946{
947 unsigned int index = 0;
948 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100949 struct drm_mode_config *config = &connector->dev->mode_config;
950
951 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +0200952
953 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
954 if (tmp == connector)
955 return index;
956
957 index++;
958 }
959
960 BUG();
961}
962EXPORT_SYMBOL(drm_connector_index);
963
964/**
Thomas Wood34ea3d32014-05-29 16:57:41 +0100965 * drm_connector_register - register a connector
966 * @connector: the connector to register
967 *
968 * Register userspace interfaces for a connector
969 *
970 * Returns:
971 * Zero on success, error code on failure.
972 */
973int drm_connector_register(struct drm_connector *connector)
974{
Thomas Wood30f65702014-06-18 17:52:32 +0100975 int ret;
976
Dave Airlie2ee39452014-07-24 11:53:45 +1000977 drm_mode_object_register(connector->dev, &connector->base);
978
Thomas Wood30f65702014-06-18 17:52:32 +0100979 ret = drm_sysfs_connector_add(connector);
980 if (ret)
981 return ret;
982
983 ret = drm_debugfs_connector_add(connector);
984 if (ret) {
985 drm_sysfs_connector_remove(connector);
986 return ret;
987 }
988
989 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +0100990}
991EXPORT_SYMBOL(drm_connector_register);
992
993/**
994 * drm_connector_unregister - unregister a connector
995 * @connector: the connector to unregister
996 *
997 * Unregister userspace interfaces for a connector
998 */
999void drm_connector_unregister(struct drm_connector *connector)
1000{
1001 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001002 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001003}
1004EXPORT_SYMBOL(drm_connector_unregister);
1005
1006
1007/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001008 * drm_connector_unplug_all - unregister connector userspace interfaces
1009 * @dev: drm device
1010 *
1011 * This function unregisters all connector userspace interfaces in sysfs. Should
1012 * be call when the device is disconnected, e.g. from an usb driver's
1013 * ->disconnect callback.
1014 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001015void drm_connector_unplug_all(struct drm_device *dev)
1016{
1017 struct drm_connector *connector;
1018
1019 /* taking the mode config mutex ends up in a clash with sysfs */
1020 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001021 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001022
1023}
1024EXPORT_SYMBOL(drm_connector_unplug_all);
1025
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001026/**
1027 * drm_bridge_init - initialize a drm transcoder/bridge
1028 * @dev: drm device
1029 * @bridge: transcoder/bridge to set up
1030 * @funcs: bridge function table
1031 *
1032 * Initialises a preallocated bridge. Bridges should be
1033 * subclassed as part of driver connector objects.
1034 *
1035 * Returns:
1036 * Zero on success, error code on failure.
1037 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001038int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
1039 const struct drm_bridge_funcs *funcs)
1040{
1041 int ret;
1042
1043 drm_modeset_lock_all(dev);
1044
1045 ret = drm_mode_object_get(dev, &bridge->base, DRM_MODE_OBJECT_BRIDGE);
1046 if (ret)
1047 goto out;
1048
1049 bridge->dev = dev;
1050 bridge->funcs = funcs;
1051
1052 list_add_tail(&bridge->head, &dev->mode_config.bridge_list);
1053 dev->mode_config.num_bridge++;
1054
1055 out:
1056 drm_modeset_unlock_all(dev);
1057 return ret;
1058}
1059EXPORT_SYMBOL(drm_bridge_init);
1060
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001061/**
1062 * drm_bridge_cleanup - cleans up an initialised bridge
1063 * @bridge: bridge to cleanup
1064 *
1065 * Cleans up the bridge but doesn't free the object.
1066 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001067void drm_bridge_cleanup(struct drm_bridge *bridge)
1068{
1069 struct drm_device *dev = bridge->dev;
1070
1071 drm_modeset_lock_all(dev);
1072 drm_mode_object_put(dev, &bridge->base);
1073 list_del(&bridge->head);
1074 dev->mode_config.num_bridge--;
1075 drm_modeset_unlock_all(dev);
1076}
1077EXPORT_SYMBOL(drm_bridge_cleanup);
1078
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001079/**
1080 * drm_encoder_init - Init a preallocated encoder
1081 * @dev: drm device
1082 * @encoder: the encoder to init
1083 * @funcs: callbacks for this encoder
1084 * @encoder_type: user visible type of the encoder
1085 *
1086 * Initialises a preallocated encoder. Encoder should be
1087 * subclassed as part of driver encoder objects.
1088 *
1089 * Returns:
1090 * Zero on success, error code on failure.
1091 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001092int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001093 struct drm_encoder *encoder,
1094 const struct drm_encoder_funcs *funcs,
1095 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001096{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001097 int ret;
1098
Daniel Vetter84849902012-12-02 00:28:11 +01001099 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001100
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001101 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1102 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001103 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001104
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001105 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001106 encoder->encoder_type = encoder_type;
1107 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001108 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1109 drm_encoder_enum_list[encoder_type].name,
1110 encoder->base.id);
1111 if (!encoder->name) {
1112 ret = -ENOMEM;
1113 goto out_put;
1114 }
Dave Airlief453ba02008-11-07 14:05:41 -08001115
1116 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1117 dev->mode_config.num_encoder++;
1118
Jani Nikulae5748942014-05-14 16:58:20 +03001119out_put:
1120 if (ret)
1121 drm_mode_object_put(dev, &encoder->base);
1122
1123out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001124 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001125
1126 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001127}
1128EXPORT_SYMBOL(drm_encoder_init);
1129
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001130/**
1131 * drm_encoder_cleanup - cleans up an initialised encoder
1132 * @encoder: encoder to cleanup
1133 *
1134 * Cleans up the encoder but doesn't free the object.
1135 */
Dave Airlief453ba02008-11-07 14:05:41 -08001136void drm_encoder_cleanup(struct drm_encoder *encoder)
1137{
1138 struct drm_device *dev = encoder->dev;
Daniel Vetter84849902012-12-02 00:28:11 +01001139 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001140 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001141 kfree(encoder->name);
1142 encoder->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001143 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001144 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001145 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001146}
1147EXPORT_SYMBOL(drm_encoder_cleanup);
1148
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001149/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001150 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001151 * @dev: DRM device
1152 * @plane: plane object to init
1153 * @possible_crtcs: bitmask of possible CRTCs
1154 * @funcs: callbacks for the new plane
1155 * @formats: array of supported formats (%DRM_FORMAT_*)
1156 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001157 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001158 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001159 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001160 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001161 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001162 * Zero on success, error code on failure.
1163 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001164int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1165 unsigned long possible_crtcs,
1166 const struct drm_plane_funcs *funcs,
1167 const uint32_t *formats, uint32_t format_count,
1168 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001169{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001170 int ret;
1171
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001172 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1173 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001174 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001175
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001176 drm_modeset_lock_init(&plane->mutex);
1177
Rob Clark4d939142012-05-17 02:23:27 -06001178 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001179 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001180 plane->funcs = funcs;
1181 plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
1182 GFP_KERNEL);
1183 if (!plane->format_types) {
1184 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1185 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001186 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001187 }
1188
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001189 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001190 plane->format_count = format_count;
1191 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001192 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001193
Matt Roperdc415ff2014-04-01 15:22:36 -07001194 list_add_tail(&plane->head, &dev->mode_config.plane_list);
1195 dev->mode_config.num_total_plane++;
1196 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1197 dev->mode_config.num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001198
Rob Clark9922ab52014-04-01 20:16:57 -04001199 drm_object_attach_property(&plane->base,
1200 dev->mode_config.plane_type_property,
1201 plane->type);
1202
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001203 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001204}
Matt Roperdc415ff2014-04-01 15:22:36 -07001205EXPORT_SYMBOL(drm_universal_plane_init);
1206
1207/**
1208 * drm_plane_init - Initialize a legacy plane
1209 * @dev: DRM device
1210 * @plane: plane object to init
1211 * @possible_crtcs: bitmask of possible CRTCs
1212 * @funcs: callbacks for the new plane
1213 * @formats: array of supported formats (%DRM_FORMAT_*)
1214 * @format_count: number of elements in @formats
1215 * @is_primary: plane type (primary vs overlay)
1216 *
1217 * Legacy API to initialize a DRM plane.
1218 *
1219 * New drivers should call drm_universal_plane_init() instead.
1220 *
1221 * Returns:
1222 * Zero on success, error code on failure.
1223 */
1224int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1225 unsigned long possible_crtcs,
1226 const struct drm_plane_funcs *funcs,
1227 const uint32_t *formats, uint32_t format_count,
1228 bool is_primary)
1229{
1230 enum drm_plane_type type;
1231
1232 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1233 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1234 formats, format_count, type);
1235}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001236EXPORT_SYMBOL(drm_plane_init);
1237
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001238/**
1239 * drm_plane_cleanup - Clean up the core plane usage
1240 * @plane: plane to cleanup
1241 *
1242 * This function cleans up @plane and removes it from the DRM mode setting
1243 * core. Note that the function does *not* free the plane structure itself,
1244 * this is the responsibility of the caller.
1245 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001246void drm_plane_cleanup(struct drm_plane *plane)
1247{
1248 struct drm_device *dev = plane->dev;
1249
Daniel Vetter84849902012-12-02 00:28:11 +01001250 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001251 kfree(plane->format_types);
1252 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001253
1254 BUG_ON(list_empty(&plane->head));
1255
1256 list_del(&plane->head);
1257 dev->mode_config.num_total_plane--;
1258 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1259 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001260 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001261
1262 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1263 if (plane->state && plane->funcs->atomic_destroy_state)
1264 plane->funcs->atomic_destroy_state(plane, plane->state);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001265}
1266EXPORT_SYMBOL(drm_plane_cleanup);
1267
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001268/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001269 * drm_plane_index - find the index of a registered plane
1270 * @plane: plane to find index for
1271 *
1272 * Given a registered plane, return the index of that CRTC within a DRM
1273 * device's list of planes.
1274 */
1275unsigned int drm_plane_index(struct drm_plane *plane)
1276{
1277 unsigned int index = 0;
1278 struct drm_plane *tmp;
1279
1280 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1281 if (tmp == plane)
1282 return index;
1283
1284 index++;
1285 }
1286
1287 BUG();
1288}
1289EXPORT_SYMBOL(drm_plane_index);
1290
1291/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001292 * drm_plane_force_disable - Forcibly disable a plane
1293 * @plane: plane to disable
1294 *
1295 * Forces the plane to be disabled.
1296 *
1297 * Used when the plane's current framebuffer is destroyed,
1298 * and when restoring fbdev mode.
1299 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001300void drm_plane_force_disable(struct drm_plane *plane)
1301{
1302 int ret;
1303
Daniel Vetter3d30a592014-07-27 13:42:42 +02001304 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001305 return;
1306
Daniel Vetter3d30a592014-07-27 13:42:42 +02001307 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001308 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001309 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001310 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001311 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001312 return;
1313 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001314 /* disconnect the plane from the fb and crtc: */
Daniel Vetter3d30a592014-07-27 13:42:42 +02001315 __drm_framebuffer_unreference(plane->old_fb);
1316 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001317 plane->fb = NULL;
1318 plane->crtc = NULL;
1319}
1320EXPORT_SYMBOL(drm_plane_force_disable);
1321
Dave Airlief453ba02008-11-07 14:05:41 -08001322static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
1323{
1324 struct drm_property *edid;
1325 struct drm_property *dpms;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001326 struct drm_property *dev_path;
Dave Airlief453ba02008-11-07 14:05:41 -08001327
1328 /*
1329 * Standard properties (apply to all connectors)
1330 */
1331 edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1332 DRM_MODE_PROP_IMMUTABLE,
1333 "EDID", 0);
1334 dev->mode_config.edid_property = edid;
1335
Sascha Hauer4a67d392012-02-06 10:58:17 +01001336 dpms = drm_property_create_enum(dev, 0,
1337 "DPMS", drm_dpms_enum_list,
1338 ARRAY_SIZE(drm_dpms_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001339 dev->mode_config.dpms_property = dpms;
1340
Dave Airlie43aba7e2014-06-05 14:01:31 +10001341 dev_path = drm_property_create(dev,
1342 DRM_MODE_PROP_BLOB |
1343 DRM_MODE_PROP_IMMUTABLE,
1344 "PATH", 0);
1345 dev->mode_config.path_property = dev_path;
1346
Dave Airlie6f134d72014-10-20 16:30:50 +10001347 dev->mode_config.tile_property = drm_property_create(dev,
1348 DRM_MODE_PROP_BLOB |
1349 DRM_MODE_PROP_IMMUTABLE,
1350 "TILE", 0);
1351
Dave Airlief453ba02008-11-07 14:05:41 -08001352 return 0;
1353}
1354
Rob Clark9922ab52014-04-01 20:16:57 -04001355static int drm_mode_create_standard_plane_properties(struct drm_device *dev)
1356{
1357 struct drm_property *type;
1358
1359 /*
1360 * Standard properties (apply to all planes)
1361 */
1362 type = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1363 "type", drm_plane_type_enum_list,
1364 ARRAY_SIZE(drm_plane_type_enum_list));
1365 dev->mode_config.plane_type_property = type;
1366
1367 return 0;
1368}
1369
Dave Airlief453ba02008-11-07 14:05:41 -08001370/**
1371 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1372 * @dev: DRM device
1373 *
1374 * Called by a driver the first time a DVI-I connector is made.
1375 */
1376int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1377{
1378 struct drm_property *dvi_i_selector;
1379 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001380
1381 if (dev->mode_config.dvi_i_select_subconnector_property)
1382 return 0;
1383
1384 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001385 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001386 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001387 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001388 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001389 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1390
Sascha Hauer4a67d392012-02-06 10:58:17 +01001391 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001392 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001393 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001394 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001395 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1396
1397 return 0;
1398}
1399EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1400
1401/**
1402 * drm_create_tv_properties - create TV specific connector properties
1403 * @dev: DRM device
1404 * @num_modes: number of different TV formats (modes) supported
1405 * @modes: array of pointers to strings containing name of each format
1406 *
1407 * Called by a driver's TV initialization routine, this function creates
1408 * the TV specific connector properties for a given device. Caller is
1409 * responsible for allocating a list of format names and passing them to
1410 * this routine.
1411 */
Thierry Reding2f763312014-10-13 12:45:57 +02001412int drm_mode_create_tv_properties(struct drm_device *dev,
1413 unsigned int num_modes,
Dave Airlief453ba02008-11-07 14:05:41 -08001414 char *modes[])
1415{
1416 struct drm_property *tv_selector;
1417 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001418 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001419
1420 if (dev->mode_config.tv_select_subconnector_property)
1421 return 0;
1422
1423 /*
1424 * Basic connector properties
1425 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001426 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001427 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001428 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001429 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001430 dev->mode_config.tv_select_subconnector_property = tv_selector;
1431
1432 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001433 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1434 "subconnector",
1435 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001436 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001437 dev->mode_config.tv_subconnector_property = tv_subconnector;
1438
1439 /*
1440 * Other, TV specific properties: margins & TV modes.
1441 */
1442 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001443 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001444
1445 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001446 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001447
1448 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001449 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001450
1451 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001452 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001453
1454 dev->mode_config.tv_mode_property =
1455 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1456 "mode", num_modes);
1457 for (i = 0; i < num_modes; i++)
1458 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1459 i, modes[i]);
1460
Francisco Jerezb6b79022009-08-02 04:19:20 +02001461 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001462 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001463
1464 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001465 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001466
1467 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001468 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001469
Francisco Jereza75f0232009-08-12 02:30:10 +02001470 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001471 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001472
1473 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001474 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001475
1476 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001477 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001478
Dave Airlief453ba02008-11-07 14:05:41 -08001479 return 0;
1480}
1481EXPORT_SYMBOL(drm_mode_create_tv_properties);
1482
1483/**
1484 * drm_mode_create_scaling_mode_property - create scaling mode property
1485 * @dev: DRM device
1486 *
1487 * Called by a driver the first time it's needed, must be attached to desired
1488 * connectors.
1489 */
1490int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1491{
1492 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001493
1494 if (dev->mode_config.scaling_mode_property)
1495 return 0;
1496
1497 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001498 drm_property_create_enum(dev, 0, "scaling mode",
1499 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001500 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001501
1502 dev->mode_config.scaling_mode_property = scaling_mode;
1503
1504 return 0;
1505}
1506EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1507
1508/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301509 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1510 * @dev: DRM device
1511 *
1512 * Called by a driver the first time it's needed, must be attached to desired
1513 * connectors.
1514 *
1515 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001516 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301517 */
1518int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1519{
1520 if (dev->mode_config.aspect_ratio_property)
1521 return 0;
1522
1523 dev->mode_config.aspect_ratio_property =
1524 drm_property_create_enum(dev, 0, "aspect ratio",
1525 drm_aspect_ratio_enum_list,
1526 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1527
1528 if (dev->mode_config.aspect_ratio_property == NULL)
1529 return -ENOMEM;
1530
1531 return 0;
1532}
1533EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1534
1535/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001536 * drm_mode_create_dirty_property - create dirty property
1537 * @dev: DRM device
1538 *
1539 * Called by a driver the first time it's needed, must be attached to desired
1540 * connectors.
1541 */
1542int drm_mode_create_dirty_info_property(struct drm_device *dev)
1543{
1544 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001545
1546 if (dev->mode_config.dirty_info_property)
1547 return 0;
1548
1549 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001550 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001551 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001552 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001553 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001554 dev->mode_config.dirty_info_property = dirty_info;
1555
1556 return 0;
1557}
1558EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1559
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001560/**
1561 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1562 * @dev: DRM device
1563 *
1564 * Create the the suggested x/y offset property for connectors.
1565 */
1566int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1567{
1568 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1569 return 0;
1570
1571 dev->mode_config.suggested_x_property =
1572 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1573
1574 dev->mode_config.suggested_y_property =
1575 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1576
1577 if (dev->mode_config.suggested_x_property == NULL ||
1578 dev->mode_config.suggested_y_property == NULL)
1579 return -ENOMEM;
1580 return 0;
1581}
1582EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1583
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001584static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001585{
1586 uint32_t total_objects = 0;
1587
1588 total_objects += dev->mode_config.num_crtc;
1589 total_objects += dev->mode_config.num_connector;
1590 total_objects += dev->mode_config.num_encoder;
Sean Paul3b336ec2013-08-14 16:47:37 -04001591 total_objects += dev->mode_config.num_bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001592
Dave Airlief453ba02008-11-07 14:05:41 -08001593 group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1594 if (!group->id_list)
1595 return -ENOMEM;
1596
1597 group->num_crtcs = 0;
1598 group->num_connectors = 0;
1599 group->num_encoders = 0;
Sean Paul3b336ec2013-08-14 16:47:37 -04001600 group->num_bridges = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001601 return 0;
1602}
1603
Dave Airliead222792014-05-02 13:22:19 +10001604void drm_mode_group_destroy(struct drm_mode_group *group)
1605{
1606 kfree(group->id_list);
1607 group->id_list = NULL;
1608}
1609
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001610/*
1611 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1612 * the drm core's responsibility to set up mode control groups.
1613 */
Dave Airlief453ba02008-11-07 14:05:41 -08001614int drm_mode_group_init_legacy_group(struct drm_device *dev,
1615 struct drm_mode_group *group)
1616{
1617 struct drm_crtc *crtc;
1618 struct drm_encoder *encoder;
1619 struct drm_connector *connector;
Sean Paul3b336ec2013-08-14 16:47:37 -04001620 struct drm_bridge *bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001621 int ret;
1622
1623 if ((ret = drm_mode_group_init(dev, group)))
1624 return ret;
1625
1626 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1627 group->id_list[group->num_crtcs++] = crtc->base.id;
1628
1629 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1630 group->id_list[group->num_crtcs + group->num_encoders++] =
1631 encoder->base.id;
1632
1633 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1634 group->id_list[group->num_crtcs + group->num_encoders +
1635 group->num_connectors++] = connector->base.id;
1636
Sean Paul3b336ec2013-08-14 16:47:37 -04001637 list_for_each_entry(bridge, &dev->mode_config.bridge_list, head)
1638 group->id_list[group->num_crtcs + group->num_encoders +
1639 group->num_connectors + group->num_bridges++] =
1640 bridge->base.id;
1641
Dave Airlief453ba02008-11-07 14:05:41 -08001642 return 0;
1643}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001644EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001645
Dave Airlie2390cd12014-06-05 14:01:29 +10001646void drm_reinit_primary_mode_group(struct drm_device *dev)
1647{
1648 drm_modeset_lock_all(dev);
1649 drm_mode_group_destroy(&dev->primary->mode_group);
1650 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1651 drm_modeset_unlock_all(dev);
1652}
1653EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1654
Dave Airlief453ba02008-11-07 14:05:41 -08001655/**
Dave Airlief453ba02008-11-07 14:05:41 -08001656 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1657 * @out: drm_mode_modeinfo struct to return to the user
1658 * @in: drm_display_mode to use
1659 *
Dave Airlief453ba02008-11-07 14:05:41 -08001660 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1661 * the user.
1662 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001663static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1664 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001665{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001666 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1667 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1668 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1669 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1670 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1671 "timing values too large for mode info\n");
1672
Dave Airlief453ba02008-11-07 14:05:41 -08001673 out->clock = in->clock;
1674 out->hdisplay = in->hdisplay;
1675 out->hsync_start = in->hsync_start;
1676 out->hsync_end = in->hsync_end;
1677 out->htotal = in->htotal;
1678 out->hskew = in->hskew;
1679 out->vdisplay = in->vdisplay;
1680 out->vsync_start = in->vsync_start;
1681 out->vsync_end = in->vsync_end;
1682 out->vtotal = in->vtotal;
1683 out->vscan = in->vscan;
1684 out->vrefresh = in->vrefresh;
1685 out->flags = in->flags;
1686 out->type = in->type;
1687 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1688 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1689}
1690
1691/**
Marc-André Lureau74afee72013-10-18 16:11:27 +02001692 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
Dave Airlief453ba02008-11-07 14:05:41 -08001693 * @out: drm_display_mode to return to the user
1694 * @in: drm_mode_modeinfo to use
1695 *
Dave Airlief453ba02008-11-07 14:05:41 -08001696 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1697 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001698 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001699 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001700 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001701 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001702static int drm_crtc_convert_umode(struct drm_display_mode *out,
1703 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001704{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001705 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1706 return -ERANGE;
1707
Damien Lespiau5848ad42013-09-27 12:11:50 +01001708 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1709 return -EINVAL;
1710
Dave Airlief453ba02008-11-07 14:05:41 -08001711 out->clock = in->clock;
1712 out->hdisplay = in->hdisplay;
1713 out->hsync_start = in->hsync_start;
1714 out->hsync_end = in->hsync_end;
1715 out->htotal = in->htotal;
1716 out->hskew = in->hskew;
1717 out->vdisplay = in->vdisplay;
1718 out->vsync_start = in->vsync_start;
1719 out->vsync_end = in->vsync_end;
1720 out->vtotal = in->vtotal;
1721 out->vscan = in->vscan;
1722 out->vrefresh = in->vrefresh;
1723 out->flags = in->flags;
1724 out->type = in->type;
1725 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1726 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001727
1728 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001729}
1730
1731/**
1732 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001733 * @dev: drm device for the ioctl
1734 * @data: data pointer for the ioctl
1735 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001736 *
Dave Airlief453ba02008-11-07 14:05:41 -08001737 * Construct a set of configuration description structures and return
1738 * them to the user, including CRTC, connector and framebuffer configuration.
1739 *
1740 * Called by the user via ioctl.
1741 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001742 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001743 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001744 */
1745int drm_mode_getresources(struct drm_device *dev, void *data,
1746 struct drm_file *file_priv)
1747{
1748 struct drm_mode_card_res *card_res = data;
1749 struct list_head *lh;
1750 struct drm_framebuffer *fb;
1751 struct drm_connector *connector;
1752 struct drm_crtc *crtc;
1753 struct drm_encoder *encoder;
1754 int ret = 0;
1755 int connector_count = 0;
1756 int crtc_count = 0;
1757 int fb_count = 0;
1758 int encoder_count = 0;
1759 int copied = 0, i;
1760 uint32_t __user *fb_id;
1761 uint32_t __user *crtc_id;
1762 uint32_t __user *connector_id;
1763 uint32_t __user *encoder_id;
1764 struct drm_mode_group *mode_group;
1765
Dave Airliefb3b06c2011-02-08 13:55:21 +10001766 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1767 return -EINVAL;
1768
Dave Airlief453ba02008-11-07 14:05:41 -08001769
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001770 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001771 /*
1772 * For the non-control nodes we need to limit the list of resources
1773 * by IDs in the group list for this node
1774 */
1775 list_for_each(lh, &file_priv->fbs)
1776 fb_count++;
1777
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001778 /* handle this in 4 parts */
1779 /* FBs */
1780 if (card_res->count_fbs >= fb_count) {
1781 copied = 0;
1782 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1783 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1784 if (put_user(fb->base.id, fb_id + copied)) {
1785 mutex_unlock(&file_priv->fbs_lock);
1786 return -EFAULT;
1787 }
1788 copied++;
1789 }
1790 }
1791 card_res->count_fbs = fb_count;
1792 mutex_unlock(&file_priv->fbs_lock);
1793
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001794 /* mode_config.mutex protects the connector list against e.g. DP MST
1795 * connector hot-adding. CRTC/Plane lists are invariant. */
1796 mutex_lock(&dev->mode_config.mutex);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001797 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001798
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001799 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001800 list_for_each(lh, &dev->mode_config.crtc_list)
1801 crtc_count++;
1802
1803 list_for_each(lh, &dev->mode_config.connector_list)
1804 connector_count++;
1805
1806 list_for_each(lh, &dev->mode_config.encoder_list)
1807 encoder_count++;
1808 } else {
1809
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001810 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001811 crtc_count = mode_group->num_crtcs;
1812 connector_count = mode_group->num_connectors;
1813 encoder_count = mode_group->num_encoders;
1814 }
1815
1816 card_res->max_height = dev->mode_config.max_height;
1817 card_res->min_height = dev->mode_config.min_height;
1818 card_res->max_width = dev->mode_config.max_width;
1819 card_res->min_width = dev->mode_config.min_width;
1820
Dave Airlief453ba02008-11-07 14:05:41 -08001821 /* CRTCs */
1822 if (card_res->count_crtcs >= crtc_count) {
1823 copied = 0;
1824 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001825 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001826 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1827 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001828 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001829 if (put_user(crtc->base.id, crtc_id + copied)) {
1830 ret = -EFAULT;
1831 goto out;
1832 }
1833 copied++;
1834 }
1835 } else {
1836 for (i = 0; i < mode_group->num_crtcs; i++) {
1837 if (put_user(mode_group->id_list[i],
1838 crtc_id + copied)) {
1839 ret = -EFAULT;
1840 goto out;
1841 }
1842 copied++;
1843 }
1844 }
1845 }
1846 card_res->count_crtcs = crtc_count;
1847
1848 /* Encoders */
1849 if (card_res->count_encoders >= encoder_count) {
1850 copied = 0;
1851 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001852 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001853 list_for_each_entry(encoder,
1854 &dev->mode_config.encoder_list,
1855 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001856 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001857 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001858 if (put_user(encoder->base.id, encoder_id +
1859 copied)) {
1860 ret = -EFAULT;
1861 goto out;
1862 }
1863 copied++;
1864 }
1865 } else {
1866 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1867 if (put_user(mode_group->id_list[i],
1868 encoder_id + copied)) {
1869 ret = -EFAULT;
1870 goto out;
1871 }
1872 copied++;
1873 }
1874
1875 }
1876 }
1877 card_res->count_encoders = encoder_count;
1878
1879 /* Connectors */
1880 if (card_res->count_connectors >= connector_count) {
1881 copied = 0;
1882 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001883 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001884 list_for_each_entry(connector,
1885 &dev->mode_config.connector_list,
1886 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001887 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1888 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001889 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001890 if (put_user(connector->base.id,
1891 connector_id + copied)) {
1892 ret = -EFAULT;
1893 goto out;
1894 }
1895 copied++;
1896 }
1897 } else {
1898 int start = mode_group->num_crtcs +
1899 mode_group->num_encoders;
1900 for (i = start; i < start + mode_group->num_connectors; i++) {
1901 if (put_user(mode_group->id_list[i],
1902 connector_id + copied)) {
1903 ret = -EFAULT;
1904 goto out;
1905 }
1906 copied++;
1907 }
1908 }
1909 }
1910 card_res->count_connectors = connector_count;
1911
Jerome Glisse94401062010-07-15 15:43:25 -04001912 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001913 card_res->count_connectors, card_res->count_encoders);
1914
1915out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001916 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001917 return ret;
1918}
1919
1920/**
1921 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001922 * @dev: drm device for the ioctl
1923 * @data: data pointer for the ioctl
1924 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001925 *
Dave Airlief453ba02008-11-07 14:05:41 -08001926 * Construct a CRTC configuration structure to return to the user.
1927 *
1928 * Called by the user via ioctl.
1929 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001930 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001931 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001932 */
1933int drm_mode_getcrtc(struct drm_device *dev,
1934 void *data, struct drm_file *file_priv)
1935{
1936 struct drm_mode_crtc *crtc_resp = data;
1937 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001938
Dave Airliefb3b06c2011-02-08 13:55:21 +10001939 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1940 return -EINVAL;
1941
Rob Clarka2b34e22013-10-05 16:36:52 -04001942 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001943 if (!crtc)
1944 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001945
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001946 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08001947 crtc_resp->x = crtc->x;
1948 crtc_resp->y = crtc->y;
1949 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07001950 if (crtc->primary->fb)
1951 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08001952 else
1953 crtc_resp->fb_id = 0;
1954
1955 if (crtc->enabled) {
1956
1957 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1958 crtc_resp->mode_valid = 1;
1959
1960 } else {
1961 crtc_resp->mode_valid = 0;
1962 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001963 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08001964
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001965 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001966}
1967
Damien Lespiau61d8e322013-09-25 16:45:22 +01001968static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1969 const struct drm_file *file_priv)
1970{
1971 /*
1972 * If user-space hasn't configured the driver to expose the stereo 3D
1973 * modes, don't expose them.
1974 */
1975 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1976 return false;
1977
1978 return true;
1979}
1980
Daniel Vetterabd69c52014-11-25 23:50:05 +01001981static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
1982{
1983 /* For atomic drivers only state objects are synchronously updated and
1984 * protected by modeset locks, so check those first. */
1985 if (connector->state)
1986 return connector->state->best_encoder;
1987 return connector->encoder;
1988}
1989
Dave Airlief453ba02008-11-07 14:05:41 -08001990/**
1991 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001992 * @dev: drm device for the ioctl
1993 * @data: data pointer for the ioctl
1994 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001995 *
Dave Airlief453ba02008-11-07 14:05:41 -08001996 * Construct a connector configuration structure to return to the user.
1997 *
1998 * Called by the user via ioctl.
1999 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002000 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002001 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002002 */
2003int drm_mode_getconnector(struct drm_device *dev, void *data,
2004 struct drm_file *file_priv)
2005{
2006 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002007 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002008 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08002009 struct drm_display_mode *mode;
2010 int mode_count = 0;
2011 int props_count = 0;
2012 int encoders_count = 0;
2013 int ret = 0;
2014 int copied = 0;
2015 int i;
2016 struct drm_mode_modeinfo u_mode;
2017 struct drm_mode_modeinfo __user *mode_ptr;
2018 uint32_t __user *prop_ptr;
2019 uint64_t __user *prop_values;
2020 uint32_t __user *encoder_ptr;
2021
Dave Airliefb3b06c2011-02-08 13:55:21 +10002022 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2023 return -EINVAL;
2024
Dave Airlief453ba02008-11-07 14:05:41 -08002025 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2026
Jerome Glisse94401062010-07-15 15:43:25 -04002027 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002028
Daniel Vetter7b240562012-12-12 00:35:33 +01002029 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002030
Rob Clarka2b34e22013-10-05 16:36:52 -04002031 connector = drm_connector_find(dev, out_resp->connector_id);
2032 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002033 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002034 goto out;
2035 }
Dave Airlief453ba02008-11-07 14:05:41 -08002036
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002037 props_count = connector->properties.count;
Dave Airlief453ba02008-11-07 14:05:41 -08002038
2039 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2040 if (connector->encoder_ids[i] != 0) {
2041 encoders_count++;
2042 }
2043 }
2044
2045 if (out_resp->count_modes == 0) {
2046 connector->funcs->fill_modes(connector,
2047 dev->mode_config.max_width,
2048 dev->mode_config.max_height);
2049 }
2050
2051 /* delayed so we get modes regardless of pre-fill_modes state */
2052 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002053 if (drm_mode_expose_to_userspace(mode, file_priv))
2054 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002055
2056 out_resp->connector_id = connector->base.id;
2057 out_resp->connector_type = connector->connector_type;
2058 out_resp->connector_type_id = connector->connector_type_id;
2059 out_resp->mm_width = connector->display_info.width_mm;
2060 out_resp->mm_height = connector->display_info.height_mm;
2061 out_resp->subpixel = connector->display_info.subpixel_order;
2062 out_resp->connection = connector->status;
Daniel Vetter832fd392014-06-05 11:07:20 +02002063 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002064
2065 encoder = drm_connector_get_encoder(connector);
2066 if (encoder)
2067 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002068 else
2069 out_resp->encoder_id = 0;
Daniel Vetter832fd392014-06-05 11:07:20 +02002070 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002071
2072 /*
2073 * This ioctl is called twice, once to determine how much space is
2074 * needed, and the 2nd time to fill it.
2075 */
2076 if ((out_resp->count_modes >= mode_count) && mode_count) {
2077 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002078 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002079 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002080 if (!drm_mode_expose_to_userspace(mode, file_priv))
2081 continue;
2082
Dave Airlief453ba02008-11-07 14:05:41 -08002083 drm_crtc_convert_to_umode(&u_mode, mode);
2084 if (copy_to_user(mode_ptr + copied,
2085 &u_mode, sizeof(u_mode))) {
2086 ret = -EFAULT;
2087 goto out;
2088 }
2089 copied++;
2090 }
2091 }
2092 out_resp->count_modes = mode_count;
2093
2094 if ((out_resp->count_props >= props_count) && props_count) {
2095 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002096 prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
2097 prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002098 for (i = 0; i < connector->properties.count; i++) {
2099 if (put_user(connector->properties.ids[i],
2100 prop_ptr + copied)) {
2101 ret = -EFAULT;
2102 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002103 }
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03002104
2105 if (put_user(connector->properties.values[i],
2106 prop_values + copied)) {
2107 ret = -EFAULT;
2108 goto out;
2109 }
2110 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08002111 }
2112 }
2113 out_resp->count_props = props_count;
2114
2115 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2116 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002117 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002118 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2119 if (connector->encoder_ids[i] != 0) {
2120 if (put_user(connector->encoder_ids[i],
2121 encoder_ptr + copied)) {
2122 ret = -EFAULT;
2123 goto out;
2124 }
2125 copied++;
2126 }
2127 }
2128 }
2129 out_resp->count_encoders = encoders_count;
2130
2131out:
Daniel Vetter7b240562012-12-12 00:35:33 +01002132 mutex_unlock(&dev->mode_config.mutex);
2133
Dave Airlief453ba02008-11-07 14:05:41 -08002134 return ret;
2135}
2136
Daniel Vetterabd69c52014-11-25 23:50:05 +01002137static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2138{
2139 struct drm_connector *connector;
2140 struct drm_device *dev = encoder->dev;
2141 bool uses_atomic = false;
2142
2143 /* For atomic drivers only state objects are synchronously updated and
2144 * protected by modeset locks, so check those first. */
2145 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2146 if (!connector->state)
2147 continue;
2148
2149 uses_atomic = true;
2150
2151 if (connector->state->best_encoder != encoder)
2152 continue;
2153
2154 return connector->state->crtc;
2155 }
2156
2157 /* Don't return stale data (e.g. pending async disable). */
2158 if (uses_atomic)
2159 return NULL;
2160
2161 return encoder->crtc;
2162}
2163
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002164/**
2165 * drm_mode_getencoder - get encoder configuration
2166 * @dev: drm device for the ioctl
2167 * @data: data pointer for the ioctl
2168 * @file_priv: drm file for the ioctl call
2169 *
2170 * Construct a encoder configuration structure to return to the user.
2171 *
2172 * Called by the user via ioctl.
2173 *
2174 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002175 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002176 */
Dave Airlief453ba02008-11-07 14:05:41 -08002177int drm_mode_getencoder(struct drm_device *dev, void *data,
2178 struct drm_file *file_priv)
2179{
2180 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002181 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002182 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002183
Dave Airliefb3b06c2011-02-08 13:55:21 +10002184 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2185 return -EINVAL;
2186
Rob Clarka2b34e22013-10-05 16:36:52 -04002187 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002188 if (!encoder)
2189 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002190
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002191 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002192 crtc = drm_encoder_get_crtc(encoder);
2193 if (crtc)
2194 enc_resp->crtc_id = crtc->base.id;
2195 else if (encoder->crtc)
Dave Airlief453ba02008-11-07 14:05:41 -08002196 enc_resp->crtc_id = encoder->crtc->base.id;
2197 else
2198 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002199 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2200
Dave Airlief453ba02008-11-07 14:05:41 -08002201 enc_resp->encoder_type = encoder->encoder_type;
2202 enc_resp->encoder_id = encoder->base.id;
2203 enc_resp->possible_crtcs = encoder->possible_crtcs;
2204 enc_resp->possible_clones = encoder->possible_clones;
2205
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002206 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002207}
2208
2209/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002210 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002211 * @dev: DRM device
2212 * @data: ioctl data
2213 * @file_priv: DRM file info
2214 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002215 * Construct a list of plane ids to return to the user.
2216 *
2217 * Called by the user via ioctl.
2218 *
2219 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002220 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002221 */
2222int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002223 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002224{
2225 struct drm_mode_get_plane_res *plane_resp = data;
2226 struct drm_mode_config *config;
2227 struct drm_plane *plane;
2228 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002229 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002230 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002231
2232 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2233 return -EINVAL;
2234
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002235 config = &dev->mode_config;
2236
Matt Roper681e7ec2014-04-01 15:22:42 -07002237 if (file_priv->universal_planes)
2238 num_planes = config->num_total_plane;
2239 else
2240 num_planes = config->num_overlay_plane;
2241
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002242 /*
2243 * This ioctl is called twice, once to determine how much space is
2244 * needed, and the 2nd time to fill it.
2245 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002246 if (num_planes &&
2247 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002248 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002249
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002250 /* Plane lists are invariant, no locking needed. */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002251 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002252 /*
2253 * Unless userspace set the 'universal planes'
2254 * capability bit, only advertise overlays.
2255 */
2256 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2257 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002258 continue;
2259
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002260 if (put_user(plane->base.id, plane_ptr + copied))
2261 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002262 copied++;
2263 }
2264 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002265 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002266
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002267 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002268}
2269
2270/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002271 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002272 * @dev: DRM device
2273 * @data: ioctl data
2274 * @file_priv: DRM file info
2275 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002276 * Construct a plane configuration structure to return to the user.
2277 *
2278 * Called by the user via ioctl.
2279 *
2280 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002281 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002282 */
2283int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002284 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002285{
2286 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002287 struct drm_plane *plane;
2288 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002289
2290 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2291 return -EINVAL;
2292
Rob Clarka2b34e22013-10-05 16:36:52 -04002293 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002294 if (!plane)
2295 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002296
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002297 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002298 if (plane->crtc)
2299 plane_resp->crtc_id = plane->crtc->base.id;
2300 else
2301 plane_resp->crtc_id = 0;
2302
2303 if (plane->fb)
2304 plane_resp->fb_id = plane->fb->base.id;
2305 else
2306 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002307 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002308
2309 plane_resp->plane_id = plane->base.id;
2310 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002311 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002312
2313 /*
2314 * This ioctl is called twice, once to determine how much space is
2315 * needed, and the 2nd time to fill it.
2316 */
2317 if (plane->format_count &&
2318 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002319 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002320 if (copy_to_user(format_ptr,
2321 plane->format_types,
2322 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002323 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002324 }
2325 }
2326 plane_resp->count_format_types = plane->format_count;
2327
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002328 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002329}
2330
Matt Roperb36552b2014-06-10 08:28:09 -07002331/*
2332 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002333 *
Matt Roperb36552b2014-06-10 08:28:09 -07002334 * Note that we assume an extra reference has already been taken on fb. If the
2335 * update fails, this reference will be dropped before return; if it succeeds,
2336 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002337 *
Matt Roperb36552b2014-06-10 08:28:09 -07002338 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002339 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002340static int __setplane_internal(struct drm_plane *plane,
2341 struct drm_crtc *crtc,
2342 struct drm_framebuffer *fb,
2343 int32_t crtc_x, int32_t crtc_y,
2344 uint32_t crtc_w, uint32_t crtc_h,
2345 /* src_{x,y,w,h} values are 16.16 fixed point */
2346 uint32_t src_x, uint32_t src_y,
2347 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002348{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002349 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002350 unsigned int fb_width, fb_height;
Thierry Reding2f763312014-10-13 12:45:57 +02002351 unsigned int i;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002352
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002353 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002354 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002355 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002356 ret = plane->funcs->disable_plane(plane);
2357 if (!ret) {
2358 plane->crtc = NULL;
2359 plane->fb = NULL;
2360 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002361 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002362 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002363 goto out;
2364 }
2365
Matt Roper7f994f32014-05-29 08:06:51 -07002366 /* Check whether this plane is usable on this CRTC */
2367 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2368 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2369 ret = -EINVAL;
2370 goto out;
2371 }
2372
Ville Syrjälä62443be2011-12-20 00:06:47 +02002373 /* Check whether this plane supports the fb pixel format. */
2374 for (i = 0; i < plane->format_count; i++)
2375 if (fb->pixel_format == plane->format_types[i])
2376 break;
2377 if (i == plane->format_count) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002378 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2379 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002380 ret = -EINVAL;
2381 goto out;
2382 }
2383
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002384 fb_width = fb->width << 16;
2385 fb_height = fb->height << 16;
2386
2387 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002388 if (src_w > fb_width ||
2389 src_x > fb_width - src_w ||
2390 src_h > fb_height ||
2391 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002392 DRM_DEBUG_KMS("Invalid source coordinates "
2393 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002394 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2395 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2396 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2397 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002398 ret = -ENOSPC;
2399 goto out;
2400 }
2401
Daniel Vetter3d30a592014-07-27 13:42:42 +02002402 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002403 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002404 crtc_x, crtc_y, crtc_w, crtc_h,
2405 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002406 if (!ret) {
2407 plane->crtc = crtc;
2408 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002409 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002410 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002411 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002412 }
2413
2414out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002415 if (fb)
2416 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002417 if (plane->old_fb)
2418 drm_framebuffer_unreference(plane->old_fb);
2419 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002420
2421 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002422}
Matt Roperb36552b2014-06-10 08:28:09 -07002423
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002424static int setplane_internal(struct drm_plane *plane,
2425 struct drm_crtc *crtc,
2426 struct drm_framebuffer *fb,
2427 int32_t crtc_x, int32_t crtc_y,
2428 uint32_t crtc_w, uint32_t crtc_h,
2429 /* src_{x,y,w,h} values are 16.16 fixed point */
2430 uint32_t src_x, uint32_t src_y,
2431 uint32_t src_w, uint32_t src_h)
2432{
2433 int ret;
2434
2435 drm_modeset_lock_all(plane->dev);
2436 ret = __setplane_internal(plane, crtc, fb,
2437 crtc_x, crtc_y, crtc_w, crtc_h,
2438 src_x, src_y, src_w, src_h);
2439 drm_modeset_unlock_all(plane->dev);
2440
2441 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002442}
2443
2444/**
2445 * drm_mode_setplane - configure a plane's configuration
2446 * @dev: DRM device
2447 * @data: ioctl data*
2448 * @file_priv: DRM file info
2449 *
2450 * Set plane configuration, including placement, fb, scaling, and other factors.
2451 * Or pass a NULL fb to disable (planes may be disabled without providing a
2452 * valid crtc).
2453 *
2454 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002455 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002456 */
2457int drm_mode_setplane(struct drm_device *dev, void *data,
2458 struct drm_file *file_priv)
2459{
2460 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002461 struct drm_plane *plane;
2462 struct drm_crtc *crtc = NULL;
2463 struct drm_framebuffer *fb = NULL;
2464
2465 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2466 return -EINVAL;
2467
2468 /* Give drivers some help against integer overflows */
2469 if (plane_req->crtc_w > INT_MAX ||
2470 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2471 plane_req->crtc_h > INT_MAX ||
2472 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2473 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2474 plane_req->crtc_w, plane_req->crtc_h,
2475 plane_req->crtc_x, plane_req->crtc_y);
2476 return -ERANGE;
2477 }
2478
2479 /*
2480 * First, find the plane, crtc, and fb objects. If not available,
2481 * we don't bother to call the driver.
2482 */
Rob Clark933f6222014-11-25 20:33:11 -05002483 plane = drm_plane_find(dev, plane_req->plane_id);
2484 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002485 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2486 plane_req->plane_id);
2487 return -ENOENT;
2488 }
Matt Roperb36552b2014-06-10 08:28:09 -07002489
2490 if (plane_req->fb_id) {
2491 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2492 if (!fb) {
2493 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2494 plane_req->fb_id);
2495 return -ENOENT;
2496 }
2497
Rob Clark933f6222014-11-25 20:33:11 -05002498 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2499 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002500 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2501 plane_req->crtc_id);
2502 return -ENOENT;
2503 }
Matt Roperb36552b2014-06-10 08:28:09 -07002504 }
2505
Matt Roper161d0dc2014-06-10 08:28:10 -07002506 /*
2507 * setplane_internal will take care of deref'ing either the old or new
2508 * framebuffer depending on success.
2509 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002510 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002511 plane_req->crtc_x, plane_req->crtc_y,
2512 plane_req->crtc_w, plane_req->crtc_h,
2513 plane_req->src_x, plane_req->src_y,
2514 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002515}
2516
2517/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002518 * drm_mode_set_config_internal - helper to call ->set_config
2519 * @set: modeset config to set
2520 *
2521 * This is a little helper to wrap internal calls to the ->set_config driver
2522 * interface. The only thing it adds is correct refcounting dance.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002523 *
2524 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002525 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002526 */
2527int drm_mode_set_config_internal(struct drm_mode_set *set)
2528{
2529 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002530 struct drm_framebuffer *fb;
2531 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002532 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002533
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002534 /*
2535 * NOTE: ->set_config can also disable other crtcs (if we steal all
2536 * connectors from it), hence we need to refcount the fbs across all
2537 * crtcs. Atomic modeset will have saner semantics ...
2538 */
2539 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002540 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002541
Daniel Vetterb0d12322012-12-11 01:07:12 +01002542 fb = set->fb;
2543
2544 ret = crtc->funcs->set_config(set);
2545 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002546 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002547 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002548 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002549
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002550 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002551 if (tmp->primary->fb)
2552 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002553 if (tmp->primary->old_fb)
2554 drm_framebuffer_unreference(tmp->primary->old_fb);
2555 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002556 }
2557
2558 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002559}
2560EXPORT_SYMBOL(drm_mode_set_config_internal);
2561
Matt Roperaf936292014-04-01 15:22:34 -07002562/**
2563 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2564 * CRTC viewport
2565 * @crtc: CRTC that framebuffer will be displayed on
2566 * @x: x panning
2567 * @y: y panning
2568 * @mode: mode that framebuffer will be displayed under
2569 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002570 */
Matt Roperaf936292014-04-01 15:22:34 -07002571int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2572 int x, int y,
2573 const struct drm_display_mode *mode,
2574 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002575
2576{
2577 int hdisplay, vdisplay;
2578
2579 hdisplay = mode->hdisplay;
2580 vdisplay = mode->vdisplay;
2581
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002582 if (drm_mode_is_stereo(mode)) {
2583 struct drm_display_mode adjusted = *mode;
2584
2585 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE);
2586 hdisplay = adjusted.crtc_hdisplay;
2587 vdisplay = adjusted.crtc_vdisplay;
2588 }
2589
Damien Lespiauc11e9282013-09-25 16:45:30 +01002590 if (crtc->invert_dimensions)
2591 swap(hdisplay, vdisplay);
2592
2593 if (hdisplay > fb->width ||
2594 vdisplay > fb->height ||
2595 x > fb->width - hdisplay ||
2596 y > fb->height - vdisplay) {
2597 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2598 fb->width, fb->height, hdisplay, vdisplay, x, y,
2599 crtc->invert_dimensions ? " (inverted)" : "");
2600 return -ENOSPC;
2601 }
2602
2603 return 0;
2604}
Matt Roperaf936292014-04-01 15:22:34 -07002605EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002606
Daniel Vetter2d13b672012-12-11 13:47:23 +01002607/**
Dave Airlief453ba02008-11-07 14:05:41 -08002608 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002609 * @dev: drm device for the ioctl
2610 * @data: data pointer for the ioctl
2611 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002612 *
Dave Airlief453ba02008-11-07 14:05:41 -08002613 * Build a new CRTC configuration based on user request.
2614 *
2615 * Called by the user via ioctl.
2616 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002617 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002618 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002619 */
2620int drm_mode_setcrtc(struct drm_device *dev, void *data,
2621 struct drm_file *file_priv)
2622{
2623 struct drm_mode_config *config = &dev->mode_config;
2624 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002625 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002626 struct drm_connector **connector_set = NULL, *connector;
2627 struct drm_framebuffer *fb = NULL;
2628 struct drm_display_mode *mode = NULL;
2629 struct drm_mode_set set;
2630 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002631 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002632 int i;
2633
Dave Airliefb3b06c2011-02-08 13:55:21 +10002634 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2635 return -EINVAL;
2636
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002637 /* For some reason crtc x/y offsets are signed internally. */
2638 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2639 return -ERANGE;
2640
Daniel Vetter84849902012-12-02 00:28:11 +01002641 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002642 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2643 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002644 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002645 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002646 goto out;
2647 }
Jerome Glisse94401062010-07-15 15:43:25 -04002648 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002649
2650 if (crtc_req->mode_valid) {
2651 /* If we have a mode we need a framebuffer. */
2652 /* If we pass -1, set the mode with the currently bound fb */
2653 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002654 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002655 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2656 ret = -EINVAL;
2657 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002658 }
Matt Roperf4510a22014-04-01 15:22:40 -07002659 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002660 /* Make refcounting symmetric with the lookup path. */
2661 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002662 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002663 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2664 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002665 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2666 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002667 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002668 goto out;
2669 }
Dave Airlief453ba02008-11-07 14:05:41 -08002670 }
2671
2672 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002673 if (!mode) {
2674 ret = -ENOMEM;
2675 goto out;
2676 }
2677
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002678 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2679 if (ret) {
2680 DRM_DEBUG_KMS("Invalid mode\n");
2681 goto out;
2682 }
2683
Dave Airlief453ba02008-11-07 14:05:41 -08002684 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002685
Damien Lespiauc11e9282013-09-25 16:45:30 +01002686 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2687 mode, fb);
2688 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002689 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002690
Dave Airlief453ba02008-11-07 14:05:41 -08002691 }
2692
2693 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002694 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002695 ret = -EINVAL;
2696 goto out;
2697 }
2698
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002699 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002700 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002701 crtc_req->count_connectors);
2702 ret = -EINVAL;
2703 goto out;
2704 }
2705
2706 if (crtc_req->count_connectors > 0) {
2707 u32 out_id;
2708
2709 /* Avoid unbounded kernel memory allocation */
2710 if (crtc_req->count_connectors > config->num_connector) {
2711 ret = -EINVAL;
2712 goto out;
2713 }
2714
2715 connector_set = kmalloc(crtc_req->count_connectors *
2716 sizeof(struct drm_connector *),
2717 GFP_KERNEL);
2718 if (!connector_set) {
2719 ret = -ENOMEM;
2720 goto out;
2721 }
2722
2723 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002724 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002725 if (get_user(out_id, &set_connectors_ptr[i])) {
2726 ret = -EFAULT;
2727 goto out;
2728 }
2729
Rob Clarka2b34e22013-10-05 16:36:52 -04002730 connector = drm_connector_find(dev, out_id);
2731 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002732 DRM_DEBUG_KMS("Connector id %d unknown\n",
2733 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002734 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002735 goto out;
2736 }
Jerome Glisse94401062010-07-15 15:43:25 -04002737 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2738 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002739 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002740
2741 connector_set[i] = connector;
2742 }
2743 }
2744
2745 set.crtc = crtc;
2746 set.x = crtc_req->x;
2747 set.y = crtc_req->y;
2748 set.mode = mode;
2749 set.connectors = connector_set;
2750 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002751 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002752 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002753
2754out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002755 if (fb)
2756 drm_framebuffer_unreference(fb);
2757
Dave Airlief453ba02008-11-07 14:05:41 -08002758 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002759 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002760 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002761 return ret;
2762}
2763
Matt Roper161d0dc2014-06-10 08:28:10 -07002764/**
2765 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2766 * universal plane handler call
2767 * @crtc: crtc to update cursor for
2768 * @req: data pointer for the ioctl
2769 * @file_priv: drm file for the ioctl call
2770 *
2771 * Legacy cursor ioctl's work directly with driver buffer handles. To
2772 * translate legacy ioctl calls into universal plane handler calls, we need to
2773 * wrap the native buffer handle in a drm_framebuffer.
2774 *
2775 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2776 * buffer with a pitch of 4*width; the universal plane interface should be used
2777 * directly in cases where the hardware can support other buffer settings and
2778 * userspace wants to make use of these capabilities.
2779 *
2780 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002781 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002782 */
2783static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2784 struct drm_mode_cursor2 *req,
2785 struct drm_file *file_priv)
2786{
2787 struct drm_device *dev = crtc->dev;
2788 struct drm_framebuffer *fb = NULL;
2789 struct drm_mode_fb_cmd2 fbreq = {
2790 .width = req->width,
2791 .height = req->height,
2792 .pixel_format = DRM_FORMAT_ARGB8888,
2793 .pitches = { req->width * 4 },
2794 .handles = { req->handle },
2795 };
2796 int32_t crtc_x, crtc_y;
2797 uint32_t crtc_w = 0, crtc_h = 0;
2798 uint32_t src_w = 0, src_h = 0;
2799 int ret = 0;
2800
2801 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002802 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002803
2804 /*
2805 * Obtain fb we'll be using (either new or existing) and take an extra
2806 * reference to it if fb != null. setplane will take care of dropping
2807 * the reference if the plane update fails.
2808 */
2809 if (req->flags & DRM_MODE_CURSOR_BO) {
2810 if (req->handle) {
2811 fb = add_framebuffer_internal(dev, &fbreq, file_priv);
2812 if (IS_ERR(fb)) {
2813 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2814 return PTR_ERR(fb);
2815 }
2816
2817 drm_framebuffer_reference(fb);
2818 } else {
2819 fb = NULL;
2820 }
2821 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002822 fb = crtc->cursor->fb;
2823 if (fb)
2824 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002825 }
2826
2827 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2828 crtc_x = req->x;
2829 crtc_y = req->y;
2830 } else {
2831 crtc_x = crtc->cursor_x;
2832 crtc_y = crtc->cursor_y;
2833 }
2834
2835 if (fb) {
2836 crtc_w = fb->width;
2837 crtc_h = fb->height;
2838 src_w = fb->width << 16;
2839 src_h = fb->height << 16;
2840 }
2841
2842 /*
2843 * setplane_internal will take care of deref'ing either the old or new
2844 * framebuffer depending on success.
2845 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002846 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002847 crtc_x, crtc_y, crtc_w, crtc_h,
2848 0, 0, src_w, src_h);
2849
2850 /* Update successful; save new cursor position, if necessary */
2851 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2852 crtc->cursor_x = req->x;
2853 crtc->cursor_y = req->y;
2854 }
2855
2856 return ret;
2857}
2858
Dave Airlie4c813d42013-06-20 11:48:52 +10002859static int drm_mode_cursor_common(struct drm_device *dev,
2860 struct drm_mode_cursor2 *req,
2861 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002862{
Dave Airlief453ba02008-11-07 14:05:41 -08002863 struct drm_crtc *crtc;
2864 int ret = 0;
2865
Dave Airliefb3b06c2011-02-08 13:55:21 +10002866 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2867 return -EINVAL;
2868
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002869 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002870 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002871
Rob Clarka2b34e22013-10-05 16:36:52 -04002872 crtc = drm_crtc_find(dev, req->crtc_id);
2873 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002874 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002875 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002876 }
Dave Airlief453ba02008-11-07 14:05:41 -08002877
Matt Roper161d0dc2014-06-10 08:28:10 -07002878 /*
2879 * If this crtc has a universal cursor plane, call that plane's update
2880 * handler rather than using legacy cursor handlers.
2881 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01002882 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002883 if (crtc->cursor) {
2884 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2885 goto out;
2886 }
2887
Dave Airlief453ba02008-11-07 14:05:41 -08002888 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002889 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002890 ret = -ENXIO;
2891 goto out;
2892 }
2893 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002894 if (crtc->funcs->cursor_set2)
2895 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2896 req->width, req->height, req->hot_x, req->hot_y);
2897 else
2898 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2899 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002900 }
2901
2902 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2903 if (crtc->funcs->cursor_move) {
2904 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2905 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002906 ret = -EFAULT;
2907 goto out;
2908 }
2909 }
2910out:
Daniel Vetterd059f652014-07-25 18:07:40 +02002911 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01002912
Dave Airlief453ba02008-11-07 14:05:41 -08002913 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10002914
2915}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002916
2917
2918/**
2919 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2920 * @dev: drm device for the ioctl
2921 * @data: data pointer for the ioctl
2922 * @file_priv: drm file for the ioctl call
2923 *
2924 * Set the cursor configuration based on user request.
2925 *
2926 * Called by the user via ioctl.
2927 *
2928 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002929 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002930 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002931int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002932 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10002933{
2934 struct drm_mode_cursor *req = data;
2935 struct drm_mode_cursor2 new_req;
2936
2937 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
2938 new_req.hot_x = new_req.hot_y = 0;
2939
2940 return drm_mode_cursor_common(dev, &new_req, file_priv);
2941}
2942
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002943/**
2944 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
2945 * @dev: drm device for the ioctl
2946 * @data: data pointer for the ioctl
2947 * @file_priv: drm file for the ioctl call
2948 *
2949 * Set the cursor configuration based on user request. This implements the 2nd
2950 * version of the cursor ioctl, which allows userspace to additionally specify
2951 * the hotspot of the pointer.
2952 *
2953 * Called by the user via ioctl.
2954 *
2955 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002956 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002957 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002958int drm_mode_cursor2_ioctl(struct drm_device *dev,
2959 void *data, struct drm_file *file_priv)
2960{
2961 struct drm_mode_cursor2 *req = data;
2962 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08002963}
2964
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002965/**
2966 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
2967 * @bpp: bits per pixels
2968 * @depth: bit depth per pixel
2969 *
2970 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
2971 * Useful in fbdev emulation code, since that deals in those values.
2972 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002973uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2974{
2975 uint32_t fmt;
2976
2977 switch (bpp) {
2978 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02002979 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002980 break;
2981 case 16:
2982 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002983 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002984 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002985 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002986 break;
2987 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002988 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002989 break;
2990 case 32:
2991 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002992 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002993 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002994 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002995 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002996 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002997 break;
2998 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002999 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3000 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003001 break;
3002 }
3003
3004 return fmt;
3005}
3006EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3007
Dave Airlief453ba02008-11-07 14:05:41 -08003008/**
3009 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003010 * @dev: drm device for the ioctl
3011 * @data: data pointer for the ioctl
3012 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003013 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003014 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003015 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003016 *
3017 * Called by the user via ioctl.
3018 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003019 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003020 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003021 */
3022int drm_mode_addfb(struct drm_device *dev,
3023 void *data, struct drm_file *file_priv)
3024{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003025 struct drm_mode_fb_cmd *or = data;
3026 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003027 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003028
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003029 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003030 r.fb_id = or->fb_id;
3031 r.width = or->width;
3032 r.height = or->height;
3033 r.pitches[0] = or->pitch;
3034 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3035 r.handles[0] = or->handle;
3036
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003037 ret = drm_mode_addfb2(dev, &r, file_priv);
3038 if (ret)
3039 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003040
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003041 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003042
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003043 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003044}
3045
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003046static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003047{
3048 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3049
3050 switch (format) {
3051 case DRM_FORMAT_C8:
3052 case DRM_FORMAT_RGB332:
3053 case DRM_FORMAT_BGR233:
3054 case DRM_FORMAT_XRGB4444:
3055 case DRM_FORMAT_XBGR4444:
3056 case DRM_FORMAT_RGBX4444:
3057 case DRM_FORMAT_BGRX4444:
3058 case DRM_FORMAT_ARGB4444:
3059 case DRM_FORMAT_ABGR4444:
3060 case DRM_FORMAT_RGBA4444:
3061 case DRM_FORMAT_BGRA4444:
3062 case DRM_FORMAT_XRGB1555:
3063 case DRM_FORMAT_XBGR1555:
3064 case DRM_FORMAT_RGBX5551:
3065 case DRM_FORMAT_BGRX5551:
3066 case DRM_FORMAT_ARGB1555:
3067 case DRM_FORMAT_ABGR1555:
3068 case DRM_FORMAT_RGBA5551:
3069 case DRM_FORMAT_BGRA5551:
3070 case DRM_FORMAT_RGB565:
3071 case DRM_FORMAT_BGR565:
3072 case DRM_FORMAT_RGB888:
3073 case DRM_FORMAT_BGR888:
3074 case DRM_FORMAT_XRGB8888:
3075 case DRM_FORMAT_XBGR8888:
3076 case DRM_FORMAT_RGBX8888:
3077 case DRM_FORMAT_BGRX8888:
3078 case DRM_FORMAT_ARGB8888:
3079 case DRM_FORMAT_ABGR8888:
3080 case DRM_FORMAT_RGBA8888:
3081 case DRM_FORMAT_BGRA8888:
3082 case DRM_FORMAT_XRGB2101010:
3083 case DRM_FORMAT_XBGR2101010:
3084 case DRM_FORMAT_RGBX1010102:
3085 case DRM_FORMAT_BGRX1010102:
3086 case DRM_FORMAT_ARGB2101010:
3087 case DRM_FORMAT_ABGR2101010:
3088 case DRM_FORMAT_RGBA1010102:
3089 case DRM_FORMAT_BGRA1010102:
3090 case DRM_FORMAT_YUYV:
3091 case DRM_FORMAT_YVYU:
3092 case DRM_FORMAT_UYVY:
3093 case DRM_FORMAT_VYUY:
3094 case DRM_FORMAT_AYUV:
3095 case DRM_FORMAT_NV12:
3096 case DRM_FORMAT_NV21:
3097 case DRM_FORMAT_NV16:
3098 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003099 case DRM_FORMAT_NV24:
3100 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003101 case DRM_FORMAT_YUV410:
3102 case DRM_FORMAT_YVU410:
3103 case DRM_FORMAT_YUV411:
3104 case DRM_FORMAT_YVU411:
3105 case DRM_FORMAT_YUV420:
3106 case DRM_FORMAT_YVU420:
3107 case DRM_FORMAT_YUV422:
3108 case DRM_FORMAT_YVU422:
3109 case DRM_FORMAT_YUV444:
3110 case DRM_FORMAT_YVU444:
3111 return 0;
3112 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003113 DRM_DEBUG_KMS("invalid pixel format %s\n",
3114 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003115 return -EINVAL;
3116 }
3117}
3118
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003119static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003120{
3121 int ret, hsub, vsub, num_planes, i;
3122
3123 ret = format_check(r);
3124 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003125 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3126 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003127 return ret;
3128 }
3129
3130 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3131 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3132 num_planes = drm_format_num_planes(r->pixel_format);
3133
3134 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003135 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003136 return -EINVAL;
3137 }
3138
3139 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003140 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003141 return -EINVAL;
3142 }
3143
3144 for (i = 0; i < num_planes; i++) {
3145 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003146 unsigned int height = r->height / (i != 0 ? vsub : 1);
3147 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003148
3149 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003150 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003151 return -EINVAL;
3152 }
3153
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003154 if ((uint64_t) width * cpp > UINT_MAX)
3155 return -ERANGE;
3156
3157 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3158 return -ERANGE;
3159
3160 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003161 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003162 return -EINVAL;
3163 }
3164 }
3165
3166 return 0;
3167}
3168
Matt Roperc394c2b2014-06-10 08:28:08 -07003169static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
3170 struct drm_mode_fb_cmd2 *r,
3171 struct drm_file *file_priv)
3172{
3173 struct drm_mode_config *config = &dev->mode_config;
3174 struct drm_framebuffer *fb;
3175 int ret;
3176
3177 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
3178 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3179 return ERR_PTR(-EINVAL);
3180 }
3181
3182 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3183 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3184 r->width, config->min_width, config->max_width);
3185 return ERR_PTR(-EINVAL);
3186 }
3187 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3188 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3189 r->height, config->min_height, config->max_height);
3190 return ERR_PTR(-EINVAL);
3191 }
3192
3193 ret = framebuffer_check(r);
3194 if (ret)
3195 return ERR_PTR(ret);
3196
3197 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3198 if (IS_ERR(fb)) {
3199 DRM_DEBUG_KMS("could not create framebuffer\n");
3200 return fb;
3201 }
3202
3203 mutex_lock(&file_priv->fbs_lock);
3204 r->fb_id = fb->base.id;
3205 list_add(&fb->filp_head, &file_priv->fbs);
3206 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3207 mutex_unlock(&file_priv->fbs_lock);
3208
3209 return fb;
3210}
3211
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003212/**
3213 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003214 * @dev: drm device for the ioctl
3215 * @data: data pointer for the ioctl
3216 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003217 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003218 * Add a new FB to the specified CRTC, given a user request with format. This is
3219 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3220 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003221 *
3222 * Called by the user via ioctl.
3223 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003224 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003225 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003226 */
3227int drm_mode_addfb2(struct drm_device *dev,
3228 void *data, struct drm_file *file_priv)
3229{
Dave Airlief453ba02008-11-07 14:05:41 -08003230 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003231
Dave Airliefb3b06c2011-02-08 13:55:21 +10003232 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3233 return -EINVAL;
3234
Matt Roperc394c2b2014-06-10 08:28:08 -07003235 fb = add_framebuffer_internal(dev, data, file_priv);
3236 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003237 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003238
Matt Roperc394c2b2014-06-10 08:28:08 -07003239 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003240}
3241
3242/**
3243 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003244 * @dev: drm device for the ioctl
3245 * @data: data pointer for the ioctl
3246 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003247 *
Dave Airlief453ba02008-11-07 14:05:41 -08003248 * Remove the FB specified by the user.
3249 *
3250 * Called by the user via ioctl.
3251 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003252 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003253 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003254 */
3255int drm_mode_rmfb(struct drm_device *dev,
3256 void *data, struct drm_file *file_priv)
3257{
Dave Airlief453ba02008-11-07 14:05:41 -08003258 struct drm_framebuffer *fb = NULL;
3259 struct drm_framebuffer *fbl = NULL;
3260 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003261 int found = 0;
3262
Dave Airliefb3b06c2011-02-08 13:55:21 +10003263 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3264 return -EINVAL;
3265
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003266 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003267 mutex_lock(&dev->mode_config.fb_lock);
3268 fb = __drm_framebuffer_lookup(dev, *id);
3269 if (!fb)
3270 goto fail_lookup;
3271
Dave Airlief453ba02008-11-07 14:05:41 -08003272 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3273 if (fb == fbl)
3274 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003275 if (!found)
3276 goto fail_lookup;
3277
3278 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3279 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003280
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003281 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003282 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003283 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003284
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003285 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003286
Daniel Vetter2b677e82012-12-10 21:16:05 +01003287 return 0;
3288
3289fail_lookup:
3290 mutex_unlock(&dev->mode_config.fb_lock);
3291 mutex_unlock(&file_priv->fbs_lock);
3292
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003293 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003294}
3295
3296/**
3297 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003298 * @dev: drm device for the ioctl
3299 * @data: data pointer for the ioctl
3300 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003301 *
Dave Airlief453ba02008-11-07 14:05:41 -08003302 * Lookup the FB given its ID and return info about it.
3303 *
3304 * Called by the user via ioctl.
3305 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003306 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003307 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003308 */
3309int drm_mode_getfb(struct drm_device *dev,
3310 void *data, struct drm_file *file_priv)
3311{
3312 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003313 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003314 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003315
Dave Airliefb3b06c2011-02-08 13:55:21 +10003316 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3317 return -EINVAL;
3318
Daniel Vetter786b99e2012-12-02 21:53:40 +01003319 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003320 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003321 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003322
3323 r->height = fb->height;
3324 r->width = fb->width;
3325 r->depth = fb->depth;
3326 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003327 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003328 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003329 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003330 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003331 ret = fb->funcs->create_handle(fb, file_priv,
3332 &r->handle);
3333 } else {
3334 /* GET_FB() is an unprivileged ioctl so we must not
3335 * return a buffer-handle to non-master processes! For
3336 * backwards-compatibility reasons, we cannot make
3337 * GET_FB() privileged, so just return an invalid handle
3338 * for non-masters. */
3339 r->handle = 0;
3340 ret = 0;
3341 }
3342 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003343 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003344 }
Dave Airlief453ba02008-11-07 14:05:41 -08003345
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003346 drm_framebuffer_unreference(fb);
3347
Dave Airlief453ba02008-11-07 14:05:41 -08003348 return ret;
3349}
3350
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003351/**
3352 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3353 * @dev: drm device for the ioctl
3354 * @data: data pointer for the ioctl
3355 * @file_priv: drm file for the ioctl call
3356 *
3357 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3358 * rectangle list. Generic userspace which does frontbuffer rendering must call
3359 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3360 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3361 *
3362 * Modesetting drivers which always update the frontbuffer do not need to
3363 * implement the corresponding ->dirty framebuffer callback.
3364 *
3365 * Called by the user via ioctl.
3366 *
3367 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003368 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003369 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003370int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3371 void *data, struct drm_file *file_priv)
3372{
3373 struct drm_clip_rect __user *clips_ptr;
3374 struct drm_clip_rect *clips = NULL;
3375 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003376 struct drm_framebuffer *fb;
3377 unsigned flags;
3378 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003379 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003380
Dave Airliefb3b06c2011-02-08 13:55:21 +10003381 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3382 return -EINVAL;
3383
Daniel Vetter786b99e2012-12-02 21:53:40 +01003384 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003385 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003386 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003387
3388 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003389 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003390
3391 if (!num_clips != !clips_ptr) {
3392 ret = -EINVAL;
3393 goto out_err1;
3394 }
3395
3396 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3397
3398 /* If userspace annotates copy, clips must come in pairs */
3399 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3400 ret = -EINVAL;
3401 goto out_err1;
3402 }
3403
3404 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003405 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3406 ret = -EINVAL;
3407 goto out_err1;
3408 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003409 clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
3410 if (!clips) {
3411 ret = -ENOMEM;
3412 goto out_err1;
3413 }
3414
3415 ret = copy_from_user(clips, clips_ptr,
3416 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003417 if (ret) {
3418 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003419 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003420 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003421 }
3422
3423 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003424 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3425 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003426 } else {
3427 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003428 }
3429
3430out_err2:
3431 kfree(clips);
3432out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003433 drm_framebuffer_unreference(fb);
3434
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003435 return ret;
3436}
3437
3438
Dave Airlief453ba02008-11-07 14:05:41 -08003439/**
3440 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003441 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003442 *
Dave Airlief453ba02008-11-07 14:05:41 -08003443 * Destroy all the FBs associated with @filp.
3444 *
3445 * Called by the user via ioctl.
3446 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003447 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003448 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003449 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003450void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003451{
Dave Airlief453ba02008-11-07 14:05:41 -08003452 struct drm_device *dev = priv->minor->dev;
3453 struct drm_framebuffer *fb, *tfb;
3454
Daniel Vetter1b116292014-09-24 21:51:06 +02003455 /*
3456 * When the file gets released that means no one else can access the fb
3457 * list any more, so no need to grab fpriv->fbs_lock. And we need to to
3458 * avoid upsetting lockdep since the universal cursor code adds a
3459 * framebuffer while holding mutex locks.
3460 *
3461 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3462 * locks is impossible here since no one else but this function can get
3463 * at it any more.
3464 */
Dave Airlief453ba02008-11-07 14:05:41 -08003465 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003466
3467 mutex_lock(&dev->mode_config.fb_lock);
3468 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3469 __drm_framebuffer_unregister(dev, fb);
3470 mutex_unlock(&dev->mode_config.fb_lock);
3471
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003472 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003473
3474 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003475 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003476 }
Dave Airlief453ba02008-11-07 14:05:41 -08003477}
3478
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003479/**
3480 * drm_property_create - create a new property type
3481 * @dev: drm device
3482 * @flags: flags specifying the property type
3483 * @name: name of the property
3484 * @num_values: number of pre-defined values
3485 *
3486 * This creates a new generic drm property which can then be attached to a drm
3487 * object with drm_object_attach_property. The returned property object must be
3488 * freed with drm_property_destroy.
3489 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003490 * Note that the DRM core keeps a per-device list of properties and that, if
3491 * drm_mode_config_cleanup() is called, it will destroy all properties created
3492 * by the driver.
3493 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003494 * Returns:
3495 * A pointer to the newly created property on success, NULL on failure.
3496 */
Dave Airlief453ba02008-11-07 14:05:41 -08003497struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3498 const char *name, int num_values)
3499{
3500 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003501 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003502
3503 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3504 if (!property)
3505 return NULL;
3506
Rob Clark98f75de2014-05-30 11:37:03 -04003507 property->dev = dev;
3508
Dave Airlief453ba02008-11-07 14:05:41 -08003509 if (num_values) {
3510 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
3511 if (!property->values)
3512 goto fail;
3513 }
3514
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003515 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3516 if (ret)
3517 goto fail;
3518
Dave Airlief453ba02008-11-07 14:05:41 -08003519 property->flags = flags;
3520 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003521 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003522
Vinson Lee471dd2e2011-11-10 11:55:40 -08003523 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003524 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003525 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3526 }
Dave Airlief453ba02008-11-07 14:05:41 -08003527
3528 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003529
3530 WARN_ON(!drm_property_type_valid(property));
3531
Dave Airlief453ba02008-11-07 14:05:41 -08003532 return property;
3533fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003534 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003535 kfree(property);
3536 return NULL;
3537}
3538EXPORT_SYMBOL(drm_property_create);
3539
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003540/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003541 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003542 * @dev: drm device
3543 * @flags: flags specifying the property type
3544 * @name: name of the property
3545 * @props: enumeration lists with property values
3546 * @num_values: number of pre-defined values
3547 *
3548 * This creates a new generic drm property which can then be attached to a drm
3549 * object with drm_object_attach_property. The returned property object must be
3550 * freed with drm_property_destroy.
3551 *
3552 * Userspace is only allowed to set one of the predefined values for enumeration
3553 * properties.
3554 *
3555 * Returns:
3556 * A pointer to the newly created property on success, NULL on failure.
3557 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003558struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3559 const char *name,
3560 const struct drm_prop_enum_list *props,
3561 int num_values)
3562{
3563 struct drm_property *property;
3564 int i, ret;
3565
3566 flags |= DRM_MODE_PROP_ENUM;
3567
3568 property = drm_property_create(dev, flags, name, num_values);
3569 if (!property)
3570 return NULL;
3571
3572 for (i = 0; i < num_values; i++) {
3573 ret = drm_property_add_enum(property, i,
3574 props[i].type,
3575 props[i].name);
3576 if (ret) {
3577 drm_property_destroy(dev, property);
3578 return NULL;
3579 }
3580 }
3581
3582 return property;
3583}
3584EXPORT_SYMBOL(drm_property_create_enum);
3585
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003586/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003587 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003588 * @dev: drm device
3589 * @flags: flags specifying the property type
3590 * @name: name of the property
3591 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003592 * @num_props: size of the @props array
3593 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003594 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003595 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003596 * object with drm_object_attach_property. The returned property object must be
3597 * freed with drm_property_destroy.
3598 *
3599 * Compared to plain enumeration properties userspace is allowed to set any
3600 * or'ed together combination of the predefined property bitflag values
3601 *
3602 * Returns:
3603 * A pointer to the newly created property on success, NULL on failure.
3604 */
Rob Clark49e27542012-05-17 02:23:26 -06003605struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3606 int flags, const char *name,
3607 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303608 int num_props,
3609 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003610{
3611 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303612 int i, ret, index = 0;
3613 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003614
3615 flags |= DRM_MODE_PROP_BITMASK;
3616
3617 property = drm_property_create(dev, flags, name, num_values);
3618 if (!property)
3619 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303620 for (i = 0; i < num_props; i++) {
3621 if (!(supported_bits & (1ULL << props[i].type)))
3622 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003623
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303624 if (WARN_ON(index >= num_values)) {
3625 drm_property_destroy(dev, property);
3626 return NULL;
3627 }
3628
3629 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003630 props[i].type,
3631 props[i].name);
3632 if (ret) {
3633 drm_property_destroy(dev, property);
3634 return NULL;
3635 }
3636 }
3637
3638 return property;
3639}
3640EXPORT_SYMBOL(drm_property_create_bitmask);
3641
Rob Clarkebc44cf2012-09-12 22:22:31 -05003642static struct drm_property *property_create_range(struct drm_device *dev,
3643 int flags, const char *name,
3644 uint64_t min, uint64_t max)
3645{
3646 struct drm_property *property;
3647
3648 property = drm_property_create(dev, flags, name, 2);
3649 if (!property)
3650 return NULL;
3651
3652 property->values[0] = min;
3653 property->values[1] = max;
3654
3655 return property;
3656}
3657
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003658/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003659 * drm_property_create_range - create a new ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003660 * @dev: drm device
3661 * @flags: flags specifying the property type
3662 * @name: name of the property
3663 * @min: minimum value of the property
3664 * @max: maximum value of the property
3665 *
3666 * This creates a new generic drm property which can then be attached to a drm
3667 * object with drm_object_attach_property. The returned property object must be
3668 * freed with drm_property_destroy.
3669 *
Masanari Iida32197aa2014-10-20 23:53:13 +09003670 * Userspace is allowed to set any integer value in the (min, max) range
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003671 * inclusive.
3672 *
3673 * Returns:
3674 * A pointer to the newly created property on success, NULL on failure.
3675 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003676struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3677 const char *name,
3678 uint64_t min, uint64_t max)
3679{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003680 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3681 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003682}
3683EXPORT_SYMBOL(drm_property_create_range);
3684
Rob Clarkebc44cf2012-09-12 22:22:31 -05003685struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3686 int flags, const char *name,
3687 int64_t min, int64_t max)
3688{
3689 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3690 name, I642U64(min), I642U64(max));
3691}
3692EXPORT_SYMBOL(drm_property_create_signed_range);
3693
Rob Clark98f75de2014-05-30 11:37:03 -04003694struct drm_property *drm_property_create_object(struct drm_device *dev,
3695 int flags, const char *name, uint32_t type)
3696{
3697 struct drm_property *property;
3698
3699 flags |= DRM_MODE_PROP_OBJECT;
3700
3701 property = drm_property_create(dev, flags, name, 1);
3702 if (!property)
3703 return NULL;
3704
3705 property->values[0] = type;
3706
3707 return property;
3708}
3709EXPORT_SYMBOL(drm_property_create_object);
3710
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003711/**
3712 * drm_property_add_enum - add a possible value to an enumeration property
3713 * @property: enumeration property to change
3714 * @index: index of the new enumeration
3715 * @value: value of the new enumeration
3716 * @name: symbolic name of the new enumeration
3717 *
3718 * This functions adds enumerations to a property.
3719 *
3720 * It's use is deprecated, drivers should use one of the more specific helpers
3721 * to directly create the property with all enumerations already attached.
3722 *
3723 * Returns:
3724 * Zero on success, error code on failure.
3725 */
Dave Airlief453ba02008-11-07 14:05:41 -08003726int drm_property_add_enum(struct drm_property *property, int index,
3727 uint64_t value, const char *name)
3728{
3729 struct drm_property_enum *prop_enum;
3730
Rob Clark5ea22f22014-05-30 11:34:01 -04003731 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3732 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003733 return -EINVAL;
3734
3735 /*
3736 * Bitmask enum properties have the additional constraint of values
3737 * from 0 to 63
3738 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003739 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3740 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003741 return -EINVAL;
3742
Daniel Vetter3758b342014-11-19 18:38:10 +01003743 if (!list_empty(&property->enum_list)) {
3744 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003745 if (prop_enum->value == value) {
3746 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3747 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3748 return 0;
3749 }
3750 }
3751 }
3752
3753 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3754 if (!prop_enum)
3755 return -ENOMEM;
3756
3757 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3758 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3759 prop_enum->value = value;
3760
3761 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003762 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003763 return 0;
3764}
3765EXPORT_SYMBOL(drm_property_add_enum);
3766
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003767/**
3768 * drm_property_destroy - destroy a drm property
3769 * @dev: drm device
3770 * @property: property to destry
3771 *
3772 * This function frees a property including any attached resources like
3773 * enumeration values.
3774 */
Dave Airlief453ba02008-11-07 14:05:41 -08003775void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3776{
3777 struct drm_property_enum *prop_enum, *pt;
3778
Daniel Vetter3758b342014-11-19 18:38:10 +01003779 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003780 list_del(&prop_enum->head);
3781 kfree(prop_enum);
3782 }
3783
3784 if (property->num_values)
3785 kfree(property->values);
3786 drm_mode_object_put(dev, &property->base);
3787 list_del(&property->head);
3788 kfree(property);
3789}
3790EXPORT_SYMBOL(drm_property_destroy);
3791
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003792/**
3793 * drm_object_attach_property - attach a property to a modeset object
3794 * @obj: drm modeset object
3795 * @property: property to attach
3796 * @init_val: initial value of the property
3797 *
3798 * This attaches the given property to the modeset object with the given initial
3799 * value. Currently this function cannot fail since the properties are stored in
3800 * a statically sized array.
3801 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003802void drm_object_attach_property(struct drm_mode_object *obj,
3803 struct drm_property *property,
3804 uint64_t init_val)
3805{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003806 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003807
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003808 if (count == DRM_OBJECT_MAX_PROPERTY) {
3809 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3810 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3811 "you see this message on the same object type.\n",
3812 obj->type);
3813 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03003814 }
3815
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003816 obj->properties->ids[count] = property->base.id;
3817 obj->properties->values[count] = init_val;
3818 obj->properties->count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03003819}
3820EXPORT_SYMBOL(drm_object_attach_property);
3821
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003822/**
3823 * drm_object_property_set_value - set the value of a property
3824 * @obj: drm mode object to set property value for
3825 * @property: property to set
3826 * @val: value the property should be set to
3827 *
3828 * This functions sets a given property on a given object. This function only
3829 * changes the software state of the property, it does not call into the
3830 * driver's ->set_property callback.
3831 *
3832 * Returns:
3833 * Zero on success, error code on failure.
3834 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003835int drm_object_property_set_value(struct drm_mode_object *obj,
3836 struct drm_property *property, uint64_t val)
3837{
3838 int i;
3839
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003840 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003841 if (obj->properties->ids[i] == property->base.id) {
3842 obj->properties->values[i] = val;
3843 return 0;
3844 }
3845 }
3846
3847 return -EINVAL;
3848}
3849EXPORT_SYMBOL(drm_object_property_set_value);
3850
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003851/**
3852 * drm_object_property_get_value - retrieve the value of a property
3853 * @obj: drm mode object to get property value from
3854 * @property: property to retrieve
3855 * @val: storage for the property value
3856 *
3857 * This function retrieves the softare state of the given property for the given
3858 * property. Since there is no driver callback to retrieve the current property
3859 * value this might be out of sync with the hardware, depending upon the driver
3860 * and property.
3861 *
3862 * Returns:
3863 * Zero on success, error code on failure.
3864 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003865int drm_object_property_get_value(struct drm_mode_object *obj,
3866 struct drm_property *property, uint64_t *val)
3867{
3868 int i;
3869
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003870 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003871 if (obj->properties->ids[i] == property->base.id) {
3872 *val = obj->properties->values[i];
3873 return 0;
3874 }
3875 }
3876
3877 return -EINVAL;
3878}
3879EXPORT_SYMBOL(drm_object_property_get_value);
3880
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003881/**
Daniel Vetter1a498632014-11-19 18:38:09 +01003882 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003883 * @dev: DRM device
3884 * @data: ioctl data
3885 * @file_priv: DRM file info
3886 *
Daniel Vetter1a498632014-11-19 18:38:09 +01003887 * This function retrieves the metadata for a given property, like the different
3888 * possible values for an enum property or the limits for a range property.
3889 *
3890 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003891 *
3892 * Called by the user via ioctl.
3893 *
3894 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003895 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003896 */
Dave Airlief453ba02008-11-07 14:05:41 -08003897int drm_mode_getproperty_ioctl(struct drm_device *dev,
3898 void *data, struct drm_file *file_priv)
3899{
Dave Airlief453ba02008-11-07 14:05:41 -08003900 struct drm_mode_get_property *out_resp = data;
3901 struct drm_property *property;
3902 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003903 int value_count = 0;
3904 int ret = 0, i;
3905 int copied;
3906 struct drm_property_enum *prop_enum;
3907 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003908 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003909
Dave Airliefb3b06c2011-02-08 13:55:21 +10003910 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3911 return -EINVAL;
3912
Daniel Vetter84849902012-12-02 00:28:11 +01003913 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04003914 property = drm_property_find(dev, out_resp->prop_id);
3915 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003916 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003917 goto done;
3918 }
Dave Airlief453ba02008-11-07 14:05:41 -08003919
Rob Clark5ea22f22014-05-30 11:34:01 -04003920 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3921 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01003922 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08003923 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08003924 }
3925
3926 value_count = property->num_values;
3927
3928 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
3929 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
3930 out_resp->flags = property->flags;
3931
3932 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003933 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003934 for (i = 0; i < value_count; i++) {
3935 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
3936 ret = -EFAULT;
3937 goto done;
3938 }
3939 }
3940 }
3941 out_resp->count_values = value_count;
3942
Rob Clark5ea22f22014-05-30 11:34:01 -04003943 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3944 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003945 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
3946 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003947 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01003948 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003949
3950 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
3951 ret = -EFAULT;
3952 goto done;
3953 }
3954
3955 if (copy_to_user(&enum_ptr[copied].name,
3956 &prop_enum->name, DRM_PROP_NAME_LEN)) {
3957 ret = -EFAULT;
3958 goto done;
3959 }
3960 copied++;
3961 }
3962 }
3963 out_resp->count_enum_blobs = enum_count;
3964 }
3965
Daniel Vetter3758b342014-11-19 18:38:10 +01003966 /*
3967 * NOTE: The idea seems to have been to use this to read all the blob
3968 * property values. But nothing ever added them to the corresponding
3969 * list, userspace always used the special-purpose get_blob ioctl to
3970 * read the value for a blob property. It also doesn't make a lot of
3971 * sense to return values here when everything else is just metadata for
3972 * the property itself.
3973 */
3974 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
3975 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003976done:
Daniel Vetter84849902012-12-02 00:28:11 +01003977 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003978 return ret;
3979}
3980
Thierry Redingecbbe592014-05-13 11:36:13 +02003981static struct drm_property_blob *
3982drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02003983 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08003984{
3985 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003986 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003987
3988 if (!length || !data)
3989 return NULL;
3990
3991 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3992 if (!blob)
3993 return NULL;
3994
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003995 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
3996 if (ret) {
3997 kfree(blob);
3998 return NULL;
3999 }
4000
Dave Airlief453ba02008-11-07 14:05:41 -08004001 blob->length = length;
4002
4003 memcpy(blob->data, data, length);
4004
Dave Airlief453ba02008-11-07 14:05:41 -08004005 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
4006 return blob;
4007}
4008
4009static void drm_property_destroy_blob(struct drm_device *dev,
4010 struct drm_property_blob *blob)
4011{
4012 drm_mode_object_put(dev, &blob->base);
4013 list_del(&blob->head);
4014 kfree(blob);
4015}
4016
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004017/**
4018 * drm_mode_getblob_ioctl - get the contents of a blob property value
4019 * @dev: DRM device
4020 * @data: ioctl data
4021 * @file_priv: DRM file info
4022 *
4023 * This function retrieves the contents of a blob property. The value stored in
4024 * an object's blob property is just a normal modeset object id.
4025 *
4026 * Called by the user via ioctl.
4027 *
4028 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004029 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004030 */
Dave Airlief453ba02008-11-07 14:05:41 -08004031int drm_mode_getblob_ioctl(struct drm_device *dev,
4032 void *data, struct drm_file *file_priv)
4033{
Dave Airlief453ba02008-11-07 14:05:41 -08004034 struct drm_mode_get_blob *out_resp = data;
4035 struct drm_property_blob *blob;
4036 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004037 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004038
Dave Airliefb3b06c2011-02-08 13:55:21 +10004039 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4040 return -EINVAL;
4041
Daniel Vetter84849902012-12-02 00:28:11 +01004042 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004043 blob = drm_property_blob_find(dev, out_resp->blob_id);
4044 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004045 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004046 goto done;
4047 }
Dave Airlief453ba02008-11-07 14:05:41 -08004048
4049 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004050 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Dave Airlief453ba02008-11-07 14:05:41 -08004051 if (copy_to_user(blob_ptr, blob->data, blob->length)){
4052 ret = -EFAULT;
4053 goto done;
4054 }
4055 }
4056 out_resp->length = blob->length;
4057
4058done:
Daniel Vetter84849902012-12-02 00:28:11 +01004059 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004060 return ret;
4061}
4062
Dave Airliecc7096f2014-10-22 12:03:04 +10004063/**
4064 * drm_mode_connector_set_path_property - set tile property on connector
4065 * @connector: connector to set property on.
4066 * @path: path to use for property.
4067 *
4068 * This creates a property to expose to userspace to specify a
4069 * connector path. This is mainly used for DisplayPort MST where
4070 * connectors have a topology and we want to allow userspace to give
4071 * them more meaningful names.
4072 *
4073 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004074 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004075 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004076int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004077 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004078{
4079 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004080 size_t size = strlen(path) + 1;
4081 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004082
4083 connector->path_blob_ptr = drm_property_create_blob(connector->dev,
4084 size, path);
4085 if (!connector->path_blob_ptr)
4086 return -EINVAL;
4087
4088 ret = drm_object_property_set_value(&connector->base,
4089 dev->mode_config.path_property,
4090 connector->path_blob_ptr->base.id);
4091 return ret;
4092}
4093EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4094
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004095/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004096 * drm_mode_connector_set_tile_property - set tile property on connector
4097 * @connector: connector to set property on.
4098 *
4099 * This looks up the tile information for a connector, and creates a
4100 * property for userspace to parse if it exists. The property is of
4101 * the form of 8 integers using ':' as a separator.
4102 *
4103 * Returns:
4104 * Zero on success, errno on failure.
4105 */
4106int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4107{
4108 struct drm_device *dev = connector->dev;
4109 int ret, size;
4110 char tile[256];
4111
4112 if (connector->tile_blob_ptr)
4113 drm_property_destroy_blob(dev, connector->tile_blob_ptr);
4114
4115 if (!connector->has_tile) {
4116 connector->tile_blob_ptr = NULL;
4117 ret = drm_object_property_set_value(&connector->base,
4118 dev->mode_config.tile_property, 0);
4119 return ret;
4120 }
4121
4122 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4123 connector->tile_group->id, connector->tile_is_single_monitor,
4124 connector->num_h_tile, connector->num_v_tile,
4125 connector->tile_h_loc, connector->tile_v_loc,
4126 connector->tile_h_size, connector->tile_v_size);
4127 size = strlen(tile) + 1;
4128
4129 connector->tile_blob_ptr = drm_property_create_blob(connector->dev,
4130 size, tile);
4131 if (!connector->tile_blob_ptr)
4132 return -EINVAL;
4133
4134 ret = drm_object_property_set_value(&connector->base,
4135 dev->mode_config.tile_property,
4136 connector->tile_blob_ptr->base.id);
4137 return ret;
4138}
4139EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4140
4141/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004142 * drm_mode_connector_update_edid_property - update the edid property of a connector
4143 * @connector: drm connector
4144 * @edid: new value of the edid property
4145 *
4146 * This function creates a new blob modeset object and assigns its id to the
4147 * connector's edid property.
4148 *
4149 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004150 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004151 */
Dave Airlief453ba02008-11-07 14:05:41 -08004152int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004153 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004154{
4155 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004156 size_t size;
4157 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004158
Thomas Wood4cf2b282014-06-18 17:52:33 +01004159 /* ignore requests to set edid when overridden */
4160 if (connector->override_edid)
4161 return 0;
4162
Dave Airlief453ba02008-11-07 14:05:41 -08004163 if (connector->edid_blob_ptr)
4164 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
4165
4166 /* Delete edid, when there is none. */
4167 if (!edid) {
4168 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05004169 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08004170 return ret;
4171 }
4172
Adam Jackson7466f4c2010-03-29 21:43:23 +00004173 size = EDID_LENGTH * (1 + edid->extensions);
4174 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
4175 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00004176 if (!connector->edid_blob_ptr)
4177 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08004178
Rob Clark58495562012-10-11 20:50:56 -05004179 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08004180 dev->mode_config.edid_property,
4181 connector->edid_blob_ptr->base.id);
4182
4183 return ret;
4184}
4185EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4186
Paulo Zanoni26a34812012-05-15 18:08:59 -03004187static bool drm_property_change_is_valid(struct drm_property *property,
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004188 uint64_t value)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004189{
4190 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4191 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004192
4193 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004194 if (value < property->values[0] || value > property->values[1])
4195 return false;
4196 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004197 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4198 int64_t svalue = U642I64(value);
4199 if (svalue < U642I64(property->values[0]) ||
4200 svalue > U642I64(property->values[1]))
4201 return false;
4202 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004203 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Rob Clark49e27542012-05-17 02:23:26 -06004204 int i;
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004205 uint64_t valid_mask = 0;
Rob Clark49e27542012-05-17 02:23:26 -06004206 for (i = 0; i < property->num_values; i++)
4207 valid_mask |= (1ULL << property->values[i]);
4208 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004209 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Ville Syrjäläc4a56752012-10-25 18:05:06 +00004210 /* Only the driver knows */
4211 return true;
Rob Clark98f75de2014-05-30 11:37:03 -04004212 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4213 struct drm_mode_object *obj;
4214 /* a zero value for an object property translates to null: */
4215 if (value == 0)
4216 return true;
4217 /*
4218 * NOTE: use _object_find() directly to bypass restriction on
4219 * looking up refcnt'd objects (ie. fb's). For a refcnt'd
4220 * object this could race against object finalization, so it
4221 * simply tells us that the object *was* valid. Which is good
4222 * enough.
4223 */
4224 obj = _object_find(property->dev, value, property->values[0]);
4225 return obj != NULL;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004226 } else {
4227 int i;
4228 for (i = 0; i < property->num_values; i++)
4229 if (property->values[i] == value)
4230 return true;
4231 return false;
4232 }
4233}
4234
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004235/**
4236 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4237 * @dev: DRM device
4238 * @data: ioctl data
4239 * @file_priv: DRM file info
4240 *
4241 * This function sets the current value for a connectors's property. It also
4242 * calls into a driver's ->set_property callback to update the hardware state
4243 *
4244 * Called by the user via ioctl.
4245 *
4246 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004247 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004248 */
Dave Airlief453ba02008-11-07 14:05:41 -08004249int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4250 void *data, struct drm_file *file_priv)
4251{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004252 struct drm_mode_connector_set_property *conn_set_prop = data;
4253 struct drm_mode_obj_set_property obj_set_prop = {
4254 .value = conn_set_prop->value,
4255 .prop_id = conn_set_prop->prop_id,
4256 .obj_id = conn_set_prop->connector_id,
4257 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4258 };
Dave Airlief453ba02008-11-07 14:05:41 -08004259
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004260 /* It does all the locking and checking we need */
4261 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004262}
4263
Paulo Zanonic5431882012-05-15 18:09:02 -03004264static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4265 struct drm_property *property,
4266 uint64_t value)
4267{
4268 int ret = -EINVAL;
4269 struct drm_connector *connector = obj_to_connector(obj);
4270
4271 /* Do DPMS ourselves */
4272 if (property == connector->dev->mode_config.dpms_property) {
4273 if (connector->funcs->dpms)
4274 (*connector->funcs->dpms)(connector, (int)value);
4275 ret = 0;
4276 } else if (connector->funcs->set_property)
4277 ret = connector->funcs->set_property(connector, property, value);
4278
4279 /* store the property value if successful */
4280 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004281 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004282 return ret;
4283}
4284
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004285static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4286 struct drm_property *property,
4287 uint64_t value)
4288{
4289 int ret = -EINVAL;
4290 struct drm_crtc *crtc = obj_to_crtc(obj);
4291
4292 if (crtc->funcs->set_property)
4293 ret = crtc->funcs->set_property(crtc, property, value);
4294 if (!ret)
4295 drm_object_property_set_value(obj, property, value);
4296
4297 return ret;
4298}
4299
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004300/**
4301 * drm_mode_plane_set_obj_prop - set the value of a property
4302 * @plane: drm plane object to set property value for
4303 * @property: property to set
4304 * @value: value the property should be set to
4305 *
4306 * This functions sets a given property on a given plane object. This function
4307 * calls the driver's ->set_property callback and changes the software state of
4308 * the property if the callback succeeds.
4309 *
4310 * Returns:
4311 * Zero on success, error code on failure.
4312 */
4313int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4314 struct drm_property *property,
4315 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004316{
4317 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004318 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004319
4320 if (plane->funcs->set_property)
4321 ret = plane->funcs->set_property(plane, property, value);
4322 if (!ret)
4323 drm_object_property_set_value(obj, property, value);
4324
4325 return ret;
4326}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004327EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004328
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004329/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004330 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004331 * @dev: DRM device
4332 * @data: ioctl data
4333 * @file_priv: DRM file info
4334 *
4335 * This function retrieves the current value for an object's property. Compared
4336 * to the connector specific ioctl this one is extended to also work on crtc and
4337 * plane objects.
4338 *
4339 * Called by the user via ioctl.
4340 *
4341 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004342 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004343 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004344int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4345 struct drm_file *file_priv)
4346{
4347 struct drm_mode_obj_get_properties *arg = data;
4348 struct drm_mode_object *obj;
4349 int ret = 0;
4350 int i;
4351 int copied = 0;
4352 int props_count = 0;
4353 uint32_t __user *props_ptr;
4354 uint64_t __user *prop_values_ptr;
4355
4356 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4357 return -EINVAL;
4358
Daniel Vetter84849902012-12-02 00:28:11 +01004359 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004360
4361 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4362 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004363 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004364 goto out;
4365 }
4366 if (!obj->properties) {
4367 ret = -EINVAL;
4368 goto out;
4369 }
4370
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004371 props_count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03004372
4373 /* This ioctl is called twice, once to determine how much space is
4374 * needed, and the 2nd time to fill it. */
4375 if ((arg->count_props >= props_count) && props_count) {
4376 copied = 0;
4377 props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
4378 prop_values_ptr = (uint64_t __user *)(unsigned long)
4379 (arg->prop_values_ptr);
4380 for (i = 0; i < props_count; i++) {
4381 if (put_user(obj->properties->ids[i],
4382 props_ptr + copied)) {
4383 ret = -EFAULT;
4384 goto out;
4385 }
4386 if (put_user(obj->properties->values[i],
4387 prop_values_ptr + copied)) {
4388 ret = -EFAULT;
4389 goto out;
4390 }
4391 copied++;
4392 }
4393 }
4394 arg->count_props = props_count;
4395out:
Daniel Vetter84849902012-12-02 00:28:11 +01004396 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004397 return ret;
4398}
4399
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004400/**
4401 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4402 * @dev: DRM device
4403 * @data: ioctl data
4404 * @file_priv: DRM file info
4405 *
4406 * This function sets the current value for an object's property. It also calls
4407 * into a driver's ->set_property callback to update the hardware state.
4408 * Compared to the connector specific ioctl this one is extended to also work on
4409 * crtc and plane objects.
4410 *
4411 * Called by the user via ioctl.
4412 *
4413 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004414 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004415 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004416int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4417 struct drm_file *file_priv)
4418{
4419 struct drm_mode_obj_set_property *arg = data;
4420 struct drm_mode_object *arg_obj;
4421 struct drm_mode_object *prop_obj;
4422 struct drm_property *property;
4423 int ret = -EINVAL;
4424 int i;
4425
4426 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4427 return -EINVAL;
4428
Daniel Vetter84849902012-12-02 00:28:11 +01004429 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004430
4431 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004432 if (!arg_obj) {
4433 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004434 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004435 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004436 if (!arg_obj->properties)
4437 goto out;
4438
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004439 for (i = 0; i < arg_obj->properties->count; i++)
Paulo Zanonic5431882012-05-15 18:09:02 -03004440 if (arg_obj->properties->ids[i] == arg->prop_id)
4441 break;
4442
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004443 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004444 goto out;
4445
4446 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4447 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004448 if (!prop_obj) {
4449 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004450 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004451 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004452 property = obj_to_property(prop_obj);
4453
4454 if (!drm_property_change_is_valid(property, arg->value))
4455 goto out;
4456
4457 switch (arg_obj->type) {
4458 case DRM_MODE_OBJECT_CONNECTOR:
4459 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4460 arg->value);
4461 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004462 case DRM_MODE_OBJECT_CRTC:
4463 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4464 break;
Rob Clark4d939142012-05-17 02:23:27 -06004465 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004466 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4467 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06004468 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004469 }
4470
4471out:
Daniel Vetter84849902012-12-02 00:28:11 +01004472 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004473 return ret;
4474}
4475
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004476/**
4477 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4478 * @connector: connector to attach
4479 * @encoder: encoder to attach @connector to
4480 *
4481 * This function links up a connector to an encoder. Note that the routing
4482 * restrictions between encoders and crtcs are exposed to userspace through the
4483 * possible_clones and possible_crtcs bitmasks.
4484 *
4485 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004486 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004487 */
Dave Airlief453ba02008-11-07 14:05:41 -08004488int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4489 struct drm_encoder *encoder)
4490{
4491 int i;
4492
4493 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4494 if (connector->encoder_ids[i] == 0) {
4495 connector->encoder_ids[i] = encoder->base.id;
4496 return 0;
4497 }
4498 }
4499 return -ENOMEM;
4500}
4501EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4502
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004503/**
4504 * drm_mode_crtc_set_gamma_size - set the gamma table size
4505 * @crtc: CRTC to set the gamma table size for
4506 * @gamma_size: size of the gamma table
4507 *
4508 * Drivers which support gamma tables should set this to the supported gamma
4509 * table size when initializing the CRTC. Currently the drm core only supports a
4510 * fixed gamma table size.
4511 *
4512 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004513 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004514 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004515int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004516 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004517{
4518 crtc->gamma_size = gamma_size;
4519
4520 crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
4521 if (!crtc->gamma_store) {
4522 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004523 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004524 }
4525
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004526 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004527}
4528EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4529
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004530/**
4531 * drm_mode_gamma_set_ioctl - set the gamma table
4532 * @dev: DRM device
4533 * @data: ioctl data
4534 * @file_priv: DRM file info
4535 *
4536 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4537 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4538 *
4539 * Called by the user via ioctl.
4540 *
4541 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004542 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004543 */
Dave Airlief453ba02008-11-07 14:05:41 -08004544int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4545 void *data, struct drm_file *file_priv)
4546{
4547 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004548 struct drm_crtc *crtc;
4549 void *r_base, *g_base, *b_base;
4550 int size;
4551 int ret = 0;
4552
Dave Airliefb3b06c2011-02-08 13:55:21 +10004553 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4554 return -EINVAL;
4555
Daniel Vetter84849902012-12-02 00:28:11 +01004556 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004557 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4558 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004559 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004560 goto out;
4561 }
Dave Airlief453ba02008-11-07 14:05:41 -08004562
Laurent Pinchartebe0f242012-05-17 13:27:24 +02004563 if (crtc->funcs->gamma_set == NULL) {
4564 ret = -ENOSYS;
4565 goto out;
4566 }
4567
Dave Airlief453ba02008-11-07 14:05:41 -08004568 /* memcpy into gamma store */
4569 if (crtc_lut->gamma_size != crtc->gamma_size) {
4570 ret = -EINVAL;
4571 goto out;
4572 }
4573
4574 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4575 r_base = crtc->gamma_store;
4576 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4577 ret = -EFAULT;
4578 goto out;
4579 }
4580
4581 g_base = r_base + size;
4582 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4583 ret = -EFAULT;
4584 goto out;
4585 }
4586
4587 b_base = g_base + size;
4588 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4589 ret = -EFAULT;
4590 goto out;
4591 }
4592
James Simmons72034252010-08-03 01:33:19 +01004593 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08004594
4595out:
Daniel Vetter84849902012-12-02 00:28:11 +01004596 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004597 return ret;
4598
4599}
4600
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004601/**
4602 * drm_mode_gamma_get_ioctl - get the gamma table
4603 * @dev: DRM device
4604 * @data: ioctl data
4605 * @file_priv: DRM file info
4606 *
4607 * Copy the current gamma table into the storage provided. This also provides
4608 * the gamma table size the driver expects, which can be used to size the
4609 * allocated storage.
4610 *
4611 * Called by the user via ioctl.
4612 *
4613 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004614 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004615 */
Dave Airlief453ba02008-11-07 14:05:41 -08004616int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4617 void *data, struct drm_file *file_priv)
4618{
4619 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004620 struct drm_crtc *crtc;
4621 void *r_base, *g_base, *b_base;
4622 int size;
4623 int ret = 0;
4624
Dave Airliefb3b06c2011-02-08 13:55:21 +10004625 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4626 return -EINVAL;
4627
Daniel Vetter84849902012-12-02 00:28:11 +01004628 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004629 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4630 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004631 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004632 goto out;
4633 }
Dave Airlief453ba02008-11-07 14:05:41 -08004634
4635 /* memcpy into gamma store */
4636 if (crtc_lut->gamma_size != crtc->gamma_size) {
4637 ret = -EINVAL;
4638 goto out;
4639 }
4640
4641 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4642 r_base = crtc->gamma_store;
4643 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4644 ret = -EFAULT;
4645 goto out;
4646 }
4647
4648 g_base = r_base + size;
4649 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4650 ret = -EFAULT;
4651 goto out;
4652 }
4653
4654 b_base = g_base + size;
4655 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4656 ret = -EFAULT;
4657 goto out;
4658 }
4659out:
Daniel Vetter84849902012-12-02 00:28:11 +01004660 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004661 return ret;
4662}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004663
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004664/**
4665 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4666 * @dev: DRM device
4667 * @data: ioctl data
4668 * @file_priv: DRM file info
4669 *
4670 * This schedules an asynchronous update on a given CRTC, called page flip.
4671 * Optionally a drm event is generated to signal the completion of the event.
4672 * Generic drivers cannot assume that a pageflip with changed framebuffer
4673 * properties (including driver specific metadata like tiling layout) will work,
4674 * but some drivers support e.g. pixel format changes through the pageflip
4675 * ioctl.
4676 *
4677 * Called by the user via ioctl.
4678 *
4679 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004680 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004681 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004682int drm_mode_page_flip_ioctl(struct drm_device *dev,
4683 void *data, struct drm_file *file_priv)
4684{
4685 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004686 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02004687 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004688 struct drm_pending_vblank_event *e = NULL;
4689 unsigned long flags;
4690 int ret = -EINVAL;
4691
4692 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4693 page_flip->reserved != 0)
4694 return -EINVAL;
4695
Keith Packard62f21042013-07-22 18:50:00 -07004696 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4697 return -EINVAL;
4698
Rob Clarka2b34e22013-10-05 16:36:52 -04004699 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4700 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004701 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004702
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01004703 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07004704 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01004705 /* The framebuffer is currently unbound, presumably
4706 * due to a hotplug event, that userspace has not
4707 * yet discovered.
4708 */
4709 ret = -EBUSY;
4710 goto out;
4711 }
4712
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004713 if (crtc->funcs->page_flip == NULL)
4714 goto out;
4715
Daniel Vetter786b99e2012-12-02 21:53:40 +01004716 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004717 if (!fb) {
4718 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004719 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004720 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004721
Damien Lespiauc11e9282013-09-25 16:45:30 +01004722 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4723 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004724 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004725
Matt Roperf4510a22014-04-01 15:22:40 -07004726 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02004727 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4728 ret = -EINVAL;
4729 goto out;
4730 }
4731
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004732 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4733 ret = -ENOMEM;
4734 spin_lock_irqsave(&dev->event_lock, flags);
4735 if (file_priv->event_space < sizeof e->event) {
4736 spin_unlock_irqrestore(&dev->event_lock, flags);
4737 goto out;
4738 }
4739 file_priv->event_space -= sizeof e->event;
4740 spin_unlock_irqrestore(&dev->event_lock, flags);
4741
4742 e = kzalloc(sizeof *e, GFP_KERNEL);
4743 if (e == NULL) {
4744 spin_lock_irqsave(&dev->event_lock, flags);
4745 file_priv->event_space += sizeof e->event;
4746 spin_unlock_irqrestore(&dev->event_lock, flags);
4747 goto out;
4748 }
4749
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08004750 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004751 e->event.base.length = sizeof e->event;
4752 e->event.user_data = page_flip->user_data;
4753 e->base.event = &e->event.base;
4754 e->base.file_priv = file_priv;
4755 e->base.destroy =
4756 (void (*) (struct drm_pending_event *)) kfree;
4757 }
4758
Daniel Vetter3d30a592014-07-27 13:42:42 +02004759 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07004760 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004761 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004762 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4763 spin_lock_irqsave(&dev->event_lock, flags);
4764 file_priv->event_space += sizeof e->event;
4765 spin_unlock_irqrestore(&dev->event_lock, flags);
4766 kfree(e);
4767 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01004768 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02004769 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01004770 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01004771 /*
4772 * Warn if the driver hasn't properly updated the crtc->fb
4773 * field to reflect that the new framebuffer is now used.
4774 * Failing to do so will screw with the reference counting
4775 * on framebuffers.
4776 */
Matt Roperf4510a22014-04-01 15:22:40 -07004777 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01004778 /* Unref only the old framebuffer. */
4779 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004780 }
4781
4782out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01004783 if (fb)
4784 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02004785 if (crtc->primary->old_fb)
4786 drm_framebuffer_unreference(crtc->primary->old_fb);
4787 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02004788 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01004789
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004790 return ret;
4791}
Chris Wilsoneb033552011-01-24 15:11:08 +00004792
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004793/**
4794 * drm_mode_config_reset - call ->reset callbacks
4795 * @dev: drm device
4796 *
4797 * This functions calls all the crtc's, encoder's and connector's ->reset
4798 * callback. Drivers can use this in e.g. their driver load or resume code to
4799 * reset hardware and software state.
4800 */
Chris Wilsoneb033552011-01-24 15:11:08 +00004801void drm_mode_config_reset(struct drm_device *dev)
4802{
4803 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02004804 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00004805 struct drm_encoder *encoder;
4806 struct drm_connector *connector;
4807
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02004808 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
4809 if (plane->funcs->reset)
4810 plane->funcs->reset(plane);
4811
Chris Wilsoneb033552011-01-24 15:11:08 +00004812 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4813 if (crtc->funcs->reset)
4814 crtc->funcs->reset(crtc);
4815
4816 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
4817 if (encoder->funcs->reset)
4818 encoder->funcs->reset(encoder);
4819
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004820 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4821 connector->status = connector_status_unknown;
4822
Chris Wilsoneb033552011-01-24 15:11:08 +00004823 if (connector->funcs->reset)
4824 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004825 }
Chris Wilsoneb033552011-01-24 15:11:08 +00004826}
4827EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10004828
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004829/**
4830 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
4831 * @dev: DRM device
4832 * @data: ioctl data
4833 * @file_priv: DRM file info
4834 *
4835 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
4836 * TTM or something else entirely) and returns the resulting buffer handle. This
4837 * handle can then be wrapped up into a framebuffer modeset object.
4838 *
4839 * Note that userspace is not allowed to use such objects for render
4840 * acceleration - drivers must create their own private ioctls for such a use
4841 * case.
4842 *
4843 * Called by the user via ioctl.
4844 *
4845 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004846 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004847 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004848int drm_mode_create_dumb_ioctl(struct drm_device *dev,
4849 void *data, struct drm_file *file_priv)
4850{
4851 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01004852 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10004853
4854 if (!dev->driver->dumb_create)
4855 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01004856 if (!args->width || !args->height || !args->bpp)
4857 return -EINVAL;
4858
4859 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02004860 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01004861 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02004862 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01004863 return -EINVAL;
4864 stride = cpp * args->width;
4865 if (args->height > 0xffffffffU / stride)
4866 return -EINVAL;
4867
4868 /* test for wrap-around */
4869 size = args->height * stride;
4870 if (PAGE_ALIGN(size) == 0)
4871 return -EINVAL;
4872
Thierry Redingf6085952014-11-03 11:14:14 +01004873 /*
4874 * handle, pitch and size are output parameters. Zero them out to
4875 * prevent drivers from accidentally using uninitialized data. Since
4876 * not all existing userspace is clearing these fields properly we
4877 * cannot reject IOCTL with garbage in them.
4878 */
4879 args->handle = 0;
4880 args->pitch = 0;
4881 args->size = 0;
4882
Dave Airlieff72145b2011-02-07 12:16:14 +10004883 return dev->driver->dumb_create(file_priv, dev, args);
4884}
4885
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004886/**
4887 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
4888 * @dev: DRM device
4889 * @data: ioctl data
4890 * @file_priv: DRM file info
4891 *
4892 * Allocate an offset in the drm device node's address space to be able to
4893 * memory map a dumb buffer.
4894 *
4895 * Called by the user via ioctl.
4896 *
4897 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004898 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004899 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004900int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
4901 void *data, struct drm_file *file_priv)
4902{
4903 struct drm_mode_map_dumb *args = data;
4904
4905 /* call driver ioctl to get mmap offset */
4906 if (!dev->driver->dumb_map_offset)
4907 return -ENOSYS;
4908
4909 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
4910}
4911
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004912/**
4913 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
4914 * @dev: DRM device
4915 * @data: ioctl data
4916 * @file_priv: DRM file info
4917 *
4918 * This destroys the userspace handle for the given dumb backing storage buffer.
4919 * Since buffer objects must be reference counted in the kernel a buffer object
4920 * won't be immediately freed if a framebuffer modeset object still uses it.
4921 *
4922 * Called by the user via ioctl.
4923 *
4924 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004925 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004926 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004927int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
4928 void *data, struct drm_file *file_priv)
4929{
4930 struct drm_mode_destroy_dumb *args = data;
4931
4932 if (!dev->driver->dumb_destroy)
4933 return -ENOSYS;
4934
4935 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
4936}
Dave Airlie248dbc22011-11-29 20:02:54 +00004937
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004938/**
4939 * drm_fb_get_bpp_depth - get the bpp/depth values for format
4940 * @format: pixel format (DRM_FORMAT_*)
4941 * @depth: storage for the depth value
4942 * @bpp: storage for the bpp value
4943 *
4944 * This only supports RGB formats here for compat with code that doesn't use
4945 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00004946 */
4947void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
4948 int *bpp)
4949{
4950 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02004951 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02004952 case DRM_FORMAT_RGB332:
4953 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00004954 *depth = 8;
4955 *bpp = 8;
4956 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004957 case DRM_FORMAT_XRGB1555:
4958 case DRM_FORMAT_XBGR1555:
4959 case DRM_FORMAT_RGBX5551:
4960 case DRM_FORMAT_BGRX5551:
4961 case DRM_FORMAT_ARGB1555:
4962 case DRM_FORMAT_ABGR1555:
4963 case DRM_FORMAT_RGBA5551:
4964 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00004965 *depth = 15;
4966 *bpp = 16;
4967 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004968 case DRM_FORMAT_RGB565:
4969 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00004970 *depth = 16;
4971 *bpp = 16;
4972 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004973 case DRM_FORMAT_RGB888:
4974 case DRM_FORMAT_BGR888:
4975 *depth = 24;
4976 *bpp = 24;
4977 break;
4978 case DRM_FORMAT_XRGB8888:
4979 case DRM_FORMAT_XBGR8888:
4980 case DRM_FORMAT_RGBX8888:
4981 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00004982 *depth = 24;
4983 *bpp = 32;
4984 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004985 case DRM_FORMAT_XRGB2101010:
4986 case DRM_FORMAT_XBGR2101010:
4987 case DRM_FORMAT_RGBX1010102:
4988 case DRM_FORMAT_BGRX1010102:
4989 case DRM_FORMAT_ARGB2101010:
4990 case DRM_FORMAT_ABGR2101010:
4991 case DRM_FORMAT_RGBA1010102:
4992 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00004993 *depth = 30;
4994 *bpp = 32;
4995 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004996 case DRM_FORMAT_ARGB8888:
4997 case DRM_FORMAT_ABGR8888:
4998 case DRM_FORMAT_RGBA8888:
4999 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005000 *depth = 32;
5001 *bpp = 32;
5002 break;
5003 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005004 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5005 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005006 *depth = 0;
5007 *bpp = 0;
5008 break;
5009 }
5010}
5011EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005012
5013/**
5014 * drm_format_num_planes - get the number of planes for format
5015 * @format: pixel format (DRM_FORMAT_*)
5016 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005017 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005018 * The number of planes used by the specified pixel format.
5019 */
5020int drm_format_num_planes(uint32_t format)
5021{
5022 switch (format) {
5023 case DRM_FORMAT_YUV410:
5024 case DRM_FORMAT_YVU410:
5025 case DRM_FORMAT_YUV411:
5026 case DRM_FORMAT_YVU411:
5027 case DRM_FORMAT_YUV420:
5028 case DRM_FORMAT_YVU420:
5029 case DRM_FORMAT_YUV422:
5030 case DRM_FORMAT_YVU422:
5031 case DRM_FORMAT_YUV444:
5032 case DRM_FORMAT_YVU444:
5033 return 3;
5034 case DRM_FORMAT_NV12:
5035 case DRM_FORMAT_NV21:
5036 case DRM_FORMAT_NV16:
5037 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005038 case DRM_FORMAT_NV24:
5039 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005040 return 2;
5041 default:
5042 return 1;
5043 }
5044}
5045EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005046
5047/**
5048 * drm_format_plane_cpp - determine the bytes per pixel value
5049 * @format: pixel format (DRM_FORMAT_*)
5050 * @plane: plane index
5051 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005052 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005053 * The bytes per pixel value for the specified plane.
5054 */
5055int drm_format_plane_cpp(uint32_t format, int plane)
5056{
5057 unsigned int depth;
5058 int bpp;
5059
5060 if (plane >= drm_format_num_planes(format))
5061 return 0;
5062
5063 switch (format) {
5064 case DRM_FORMAT_YUYV:
5065 case DRM_FORMAT_YVYU:
5066 case DRM_FORMAT_UYVY:
5067 case DRM_FORMAT_VYUY:
5068 return 2;
5069 case DRM_FORMAT_NV12:
5070 case DRM_FORMAT_NV21:
5071 case DRM_FORMAT_NV16:
5072 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005073 case DRM_FORMAT_NV24:
5074 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005075 return plane ? 2 : 1;
5076 case DRM_FORMAT_YUV410:
5077 case DRM_FORMAT_YVU410:
5078 case DRM_FORMAT_YUV411:
5079 case DRM_FORMAT_YVU411:
5080 case DRM_FORMAT_YUV420:
5081 case DRM_FORMAT_YVU420:
5082 case DRM_FORMAT_YUV422:
5083 case DRM_FORMAT_YVU422:
5084 case DRM_FORMAT_YUV444:
5085 case DRM_FORMAT_YVU444:
5086 return 1;
5087 default:
5088 drm_fb_get_bpp_depth(format, &depth, &bpp);
5089 return bpp >> 3;
5090 }
5091}
5092EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005093
5094/**
5095 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5096 * @format: pixel format (DRM_FORMAT_*)
5097 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005098 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005099 * The horizontal chroma subsampling factor for the
5100 * specified pixel format.
5101 */
5102int drm_format_horz_chroma_subsampling(uint32_t format)
5103{
5104 switch (format) {
5105 case DRM_FORMAT_YUV411:
5106 case DRM_FORMAT_YVU411:
5107 case DRM_FORMAT_YUV410:
5108 case DRM_FORMAT_YVU410:
5109 return 4;
5110 case DRM_FORMAT_YUYV:
5111 case DRM_FORMAT_YVYU:
5112 case DRM_FORMAT_UYVY:
5113 case DRM_FORMAT_VYUY:
5114 case DRM_FORMAT_NV12:
5115 case DRM_FORMAT_NV21:
5116 case DRM_FORMAT_NV16:
5117 case DRM_FORMAT_NV61:
5118 case DRM_FORMAT_YUV422:
5119 case DRM_FORMAT_YVU422:
5120 case DRM_FORMAT_YUV420:
5121 case DRM_FORMAT_YVU420:
5122 return 2;
5123 default:
5124 return 1;
5125 }
5126}
5127EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5128
5129/**
5130 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5131 * @format: pixel format (DRM_FORMAT_*)
5132 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005133 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005134 * The vertical chroma subsampling factor for the
5135 * specified pixel format.
5136 */
5137int drm_format_vert_chroma_subsampling(uint32_t format)
5138{
5139 switch (format) {
5140 case DRM_FORMAT_YUV410:
5141 case DRM_FORMAT_YVU410:
5142 return 4;
5143 case DRM_FORMAT_YUV420:
5144 case DRM_FORMAT_YVU420:
5145 case DRM_FORMAT_NV12:
5146 case DRM_FORMAT_NV21:
5147 return 2;
5148 default:
5149 return 1;
5150 }
5151}
5152EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005153
5154/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305155 * drm_rotation_simplify() - Try to simplify the rotation
5156 * @rotation: Rotation to be simplified
5157 * @supported_rotations: Supported rotations
5158 *
5159 * Attempt to simplify the rotation to a form that is supported.
5160 * Eg. if the hardware supports everything except DRM_REFLECT_X
5161 * one could call this function like this:
5162 *
5163 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5164 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5165 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5166 *
5167 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5168 * transforms the hardware supports, this function may not
5169 * be able to produce a supported transform, so the caller should
5170 * check the result afterwards.
5171 */
5172unsigned int drm_rotation_simplify(unsigned int rotation,
5173 unsigned int supported_rotations)
5174{
5175 if (rotation & ~supported_rotations) {
5176 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5177 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5178 }
5179
5180 return rotation;
5181}
5182EXPORT_SYMBOL(drm_rotation_simplify);
5183
5184/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005185 * drm_mode_config_init - initialize DRM mode_configuration structure
5186 * @dev: DRM device
5187 *
5188 * Initialize @dev's mode_config structure, used for tracking the graphics
5189 * configuration of @dev.
5190 *
5191 * Since this initializes the modeset locks, no locking is possible. Which is no
5192 * problem, since this should happen single threaded at init time. It is the
5193 * driver's problem to ensure this guarantee.
5194 *
5195 */
5196void drm_mode_config_init(struct drm_device *dev)
5197{
5198 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005199 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005200 mutex_init(&dev->mode_config.idr_mutex);
5201 mutex_init(&dev->mode_config.fb_lock);
5202 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5203 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5204 INIT_LIST_HEAD(&dev->mode_config.connector_list);
Sean Paul3b336ec2013-08-14 16:47:37 -04005205 INIT_LIST_HEAD(&dev->mode_config.bridge_list);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005206 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5207 INIT_LIST_HEAD(&dev->mode_config.property_list);
5208 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5209 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5210 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005211 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005212
5213 drm_modeset_lock_all(dev);
5214 drm_mode_create_standard_connector_properties(dev);
Rob Clark9922ab52014-04-01 20:16:57 -04005215 drm_mode_create_standard_plane_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005216 drm_modeset_unlock_all(dev);
5217
5218 /* Just to be sure */
5219 dev->mode_config.num_fb = 0;
5220 dev->mode_config.num_connector = 0;
5221 dev->mode_config.num_crtc = 0;
5222 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005223 dev->mode_config.num_overlay_plane = 0;
5224 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005225}
5226EXPORT_SYMBOL(drm_mode_config_init);
5227
5228/**
5229 * drm_mode_config_cleanup - free up DRM mode_config info
5230 * @dev: DRM device
5231 *
5232 * Free up all the connectors and CRTCs associated with this DRM device, then
5233 * free up the framebuffers and associated buffer objects.
5234 *
5235 * Note that since this /should/ happen single-threaded at driver/device
5236 * teardown time, no locking is required. It's the driver's job to ensure that
5237 * this guarantee actually holds true.
5238 *
5239 * FIXME: cleanup any dangling user buffer objects too
5240 */
5241void drm_mode_config_cleanup(struct drm_device *dev)
5242{
5243 struct drm_connector *connector, *ot;
5244 struct drm_crtc *crtc, *ct;
5245 struct drm_encoder *encoder, *enct;
Sean Paul3b336ec2013-08-14 16:47:37 -04005246 struct drm_bridge *bridge, *brt;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005247 struct drm_framebuffer *fb, *fbt;
5248 struct drm_property *property, *pt;
5249 struct drm_property_blob *blob, *bt;
5250 struct drm_plane *plane, *plt;
5251
5252 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5253 head) {
5254 encoder->funcs->destroy(encoder);
5255 }
5256
Sean Paul3b336ec2013-08-14 16:47:37 -04005257 list_for_each_entry_safe(bridge, brt,
5258 &dev->mode_config.bridge_list, head) {
5259 bridge->funcs->destroy(bridge);
5260 }
5261
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005262 list_for_each_entry_safe(connector, ot,
5263 &dev->mode_config.connector_list, head) {
5264 connector->funcs->destroy(connector);
5265 }
5266
5267 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5268 head) {
5269 drm_property_destroy(dev, property);
5270 }
5271
5272 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5273 head) {
5274 drm_property_destroy_blob(dev, blob);
5275 }
5276
5277 /*
5278 * Single-threaded teardown context, so it's not required to grab the
5279 * fb_lock to protect against concurrent fb_list access. Contrary, it
5280 * would actually deadlock with the drm_framebuffer_cleanup function.
5281 *
5282 * Also, if there are any framebuffers left, that's a driver leak now,
5283 * so politely WARN about this.
5284 */
5285 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5286 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5287 drm_framebuffer_remove(fb);
5288 }
5289
5290 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5291 head) {
5292 plane->funcs->destroy(plane);
5293 }
5294
5295 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5296 crtc->funcs->destroy(crtc);
5297 }
5298
Dave Airlie138f9eb2014-10-20 16:17:17 +10005299 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005300 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005301 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005302}
5303EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305304
5305struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5306 unsigned int supported_rotations)
5307{
5308 static const struct drm_prop_enum_list props[] = {
5309 { DRM_ROTATE_0, "rotate-0" },
5310 { DRM_ROTATE_90, "rotate-90" },
5311 { DRM_ROTATE_180, "rotate-180" },
5312 { DRM_ROTATE_270, "rotate-270" },
5313 { DRM_REFLECT_X, "reflect-x" },
5314 { DRM_REFLECT_Y, "reflect-y" },
5315 };
5316
5317 return drm_property_create_bitmask(dev, 0, "rotation",
5318 props, ARRAY_SIZE(props),
5319 supported_rotations);
5320}
5321EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005322
5323/**
5324 * DOC: Tile group
5325 *
5326 * Tile groups are used to represent tiled monitors with a unique
5327 * integer identifier. Tiled monitors using DisplayID v1.3 have
5328 * a unique 8-byte handle, we store this in a tile group, so we
5329 * have a common identifier for all tiles in a monitor group.
5330 */
5331static void drm_tile_group_free(struct kref *kref)
5332{
5333 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5334 struct drm_device *dev = tg->dev;
5335 mutex_lock(&dev->mode_config.idr_mutex);
5336 idr_remove(&dev->mode_config.tile_idr, tg->id);
5337 mutex_unlock(&dev->mode_config.idr_mutex);
5338 kfree(tg);
5339}
5340
5341/**
5342 * drm_mode_put_tile_group - drop a reference to a tile group.
5343 * @dev: DRM device
5344 * @tg: tile group to drop reference to.
5345 *
5346 * drop reference to tile group and free if 0.
5347 */
5348void drm_mode_put_tile_group(struct drm_device *dev,
5349 struct drm_tile_group *tg)
5350{
5351 kref_put(&tg->refcount, drm_tile_group_free);
5352}
5353
5354/**
5355 * drm_mode_get_tile_group - get a reference to an existing tile group
5356 * @dev: DRM device
5357 * @topology: 8-bytes unique per monitor.
5358 *
5359 * Use the unique bytes to get a reference to an existing tile group.
5360 *
5361 * RETURNS:
5362 * tile group or NULL if not found.
5363 */
5364struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5365 char topology[8])
5366{
5367 struct drm_tile_group *tg;
5368 int id;
5369 mutex_lock(&dev->mode_config.idr_mutex);
5370 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5371 if (!memcmp(tg->group_data, topology, 8)) {
5372 if (!kref_get_unless_zero(&tg->refcount))
5373 tg = NULL;
5374 mutex_unlock(&dev->mode_config.idr_mutex);
5375 return tg;
5376 }
5377 }
5378 mutex_unlock(&dev->mode_config.idr_mutex);
5379 return NULL;
5380}
5381
5382/**
5383 * drm_mode_create_tile_group - create a tile group from a displayid description
5384 * @dev: DRM device
5385 * @topology: 8-bytes unique per monitor.
5386 *
5387 * Create a tile group for the unique monitor, and get a unique
5388 * identifier for the tile group.
5389 *
5390 * RETURNS:
5391 * new tile group or error.
5392 */
5393struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5394 char topology[8])
5395{
5396 struct drm_tile_group *tg;
5397 int ret;
5398
5399 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5400 if (!tg)
5401 return ERR_PTR(-ENOMEM);
5402
5403 kref_init(&tg->refcount);
5404 memcpy(tg->group_data, topology, 8);
5405 tg->dev = dev;
5406
5407 mutex_lock(&dev->mode_config.idr_mutex);
5408 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5409 if (ret >= 0) {
5410 tg->id = ret;
5411 } else {
5412 kfree(tg);
5413 tg = ERR_PTR(ret);
5414 }
5415
5416 mutex_unlock(&dev->mode_config.idr_mutex);
5417 return tg;
5418}