blob: 098c94e53fdf8c5bb340611eb5fca4d1129fc052 [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>
Rob Clark88a48e22014-12-18 16:01:50 -050041#include <drm/drm_atomic.h>
Dave Airlief453ba02008-11-07 14:05:41 -080042
Daniel Vetter8bd441b2014-01-23 15:35:24 +010043#include "drm_crtc_internal.h"
Daniel Vetter67d0ec42014-09-10 12:43:53 +020044#include "drm_internal.h"
Daniel Vetter8bd441b2014-01-23 15:35:24 +010045
Chris Wilson9a6f5132015-02-25 13:45:26 +000046static struct drm_framebuffer *
47internal_framebuffer_create(struct drm_device *dev,
48 struct drm_mode_fb_cmd2 *r,
49 struct drm_file *file_priv);
Matt Roperc394c2b2014-06-10 08:28:08 -070050
Dave Airlief453ba02008-11-07 14:05:41 -080051/* Avoid boilerplate. I'm tired of typing. */
52#define DRM_ENUM_NAME_FN(fnname, list) \
Ville Syrjäläd20d3172013-06-07 15:43:07 +000053 const char *fnname(int val) \
Dave Airlief453ba02008-11-07 14:05:41 -080054 { \
55 int i; \
56 for (i = 0; i < ARRAY_SIZE(list); i++) { \
57 if (list[i].type == val) \
58 return list[i].name; \
59 } \
60 return "(unknown)"; \
61 }
62
63/*
64 * Global properties
65 */
Thierry Reding4dfd9092014-12-10 13:03:34 +010066static const struct drm_prop_enum_list drm_dpms_enum_list[] = {
67 { DRM_MODE_DPMS_ON, "On" },
Dave Airlief453ba02008-11-07 14:05:41 -080068 { DRM_MODE_DPMS_STANDBY, "Standby" },
69 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
70 { DRM_MODE_DPMS_OFF, "Off" }
71};
72
73DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
74
Thierry Reding4dfd9092014-12-10 13:03:34 +010075static const struct drm_prop_enum_list drm_plane_type_enum_list[] = {
Rob Clark9922ab52014-04-01 20:16:57 -040076 { DRM_PLANE_TYPE_OVERLAY, "Overlay" },
77 { DRM_PLANE_TYPE_PRIMARY, "Primary" },
78 { DRM_PLANE_TYPE_CURSOR, "Cursor" },
79};
80
Dave Airlief453ba02008-11-07 14:05:41 -080081/*
82 * Optional properties
83 */
Thierry Reding4dfd9092014-12-10 13:03:34 +010084static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = {
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 */
Thierry Reding4dfd9092014-12-10 13:03:34 +0100100static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800101 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
102 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
103 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
104};
105
106DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
107
Thierry Reding4dfd9092014-12-10 13:03:34 +0100108static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800109 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
110 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
111 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
112};
113
114DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
115 drm_dvi_i_subconnector_enum_list)
116
Thierry Reding4dfd9092014-12-10 13:03:34 +0100117static const struct drm_prop_enum_list drm_tv_select_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800118 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
119 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
120 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
121 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200122 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800123};
124
125DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
126
Thierry Reding4dfd9092014-12-10 13:03:34 +0100127static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800128 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
129 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
130 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
131 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200132 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800133};
134
135DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
136 drm_tv_subconnector_enum_list)
137
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000138static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000139 { DRM_MODE_DIRTY_OFF, "Off" },
140 { DRM_MODE_DIRTY_ON, "On" },
141 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
142};
143
Dave Airlief453ba02008-11-07 14:05:41 -0800144struct drm_conn_prop_enum_list {
145 int type;
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000146 const char *name;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400147 struct ida ida;
Dave Airlief453ba02008-11-07 14:05:41 -0800148};
149
150/*
151 * Connector and encoder types.
152 */
Thierry Reding4dfd9092014-12-10 13:03:34 +0100153static struct drm_conn_prop_enum_list drm_connector_enum_list[] = {
154 { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400155 { DRM_MODE_CONNECTOR_VGA, "VGA" },
156 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
157 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
158 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
159 { DRM_MODE_CONNECTOR_Composite, "Composite" },
160 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
161 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
162 { DRM_MODE_CONNECTOR_Component, "Component" },
163 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
164 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
165 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
166 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
167 { DRM_MODE_CONNECTOR_TV, "TV" },
168 { DRM_MODE_CONNECTOR_eDP, "eDP" },
169 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300170 { DRM_MODE_CONNECTOR_DSI, "DSI" },
Dave Airlief453ba02008-11-07 14:05:41 -0800171};
172
Thierry Reding4dfd9092014-12-10 13:03:34 +0100173static const struct drm_prop_enum_list drm_encoder_enum_list[] = {
174 { DRM_MODE_ENCODER_NONE, "None" },
Dave Airlief453ba02008-11-07 14:05:41 -0800175 { DRM_MODE_ENCODER_DAC, "DAC" },
176 { DRM_MODE_ENCODER_TMDS, "TMDS" },
177 { DRM_MODE_ENCODER_LVDS, "LVDS" },
178 { DRM_MODE_ENCODER_TVDAC, "TV" },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200179 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300180 { DRM_MODE_ENCODER_DSI, "DSI" },
Dave Airlie182407a2014-05-02 11:09:54 +1000181 { DRM_MODE_ENCODER_DPMST, "DP MST" },
Dave Airlief453ba02008-11-07 14:05:41 -0800182};
183
Thierry Reding4dfd9092014-12-10 13:03:34 +0100184static const struct drm_prop_enum_list drm_subpixel_enum_list[] = {
Jesse Barnesac1bb362014-02-10 15:32:44 -0800185 { SubPixelUnknown, "Unknown" },
186 { SubPixelHorizontalRGB, "Horizontal RGB" },
187 { SubPixelHorizontalBGR, "Horizontal BGR" },
188 { SubPixelVerticalRGB, "Vertical RGB" },
189 { SubPixelVerticalBGR, "Vertical BGR" },
190 { SubPixelNone, "None" },
191};
192
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400193void drm_connector_ida_init(void)
194{
195 int i;
196
197 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
198 ida_init(&drm_connector_enum_list[i].ida);
199}
200
201void drm_connector_ida_destroy(void)
202{
203 int i;
204
205 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
206 ida_destroy(&drm_connector_enum_list[i].ida);
207}
208
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100209/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100210 * drm_get_connector_status_name - return a string for connector status
211 * @status: connector status to compute name of
212 *
213 * In contrast to the other drm_get_*_name functions this one here returns a
214 * const pointer and hence is threadsafe.
215 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000216const char *drm_get_connector_status_name(enum drm_connector_status status)
Dave Airlief453ba02008-11-07 14:05:41 -0800217{
218 if (status == connector_status_connected)
219 return "connected";
220 else if (status == connector_status_disconnected)
221 return "disconnected";
222 else
223 return "unknown";
224}
Lespiau, Damiened7951d2013-05-10 12:36:42 +0000225EXPORT_SYMBOL(drm_get_connector_status_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800226
Jesse Barnesac1bb362014-02-10 15:32:44 -0800227/**
228 * drm_get_subpixel_order_name - return a string for a given subpixel enum
229 * @order: enum of subpixel_order
230 *
231 * Note you could abuse this and return something out of bounds, but that
232 * would be a caller error. No unscrubbed user data should make it here.
233 */
234const char *drm_get_subpixel_order_name(enum subpixel_order order)
235{
236 return drm_subpixel_enum_list[order].name;
237}
238EXPORT_SYMBOL(drm_get_subpixel_order_name);
239
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300240static char printable_char(int c)
241{
242 return isascii(c) && isprint(c) ? c : '?';
243}
244
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100245/**
246 * drm_get_format_name - return a string for drm fourcc format
247 * @format: format to compute name of
248 *
249 * Note that the buffer used by this function is globally shared and owned by
250 * the function itself.
251 *
252 * FIXME: This isn't really multithreading safe.
253 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000254const char *drm_get_format_name(uint32_t format)
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300255{
256 static char buf[32];
257
258 snprintf(buf, sizeof(buf),
259 "%c%c%c%c %s-endian (0x%08x)",
260 printable_char(format & 0xff),
261 printable_char((format >> 8) & 0xff),
262 printable_char((format >> 16) & 0xff),
263 printable_char((format >> 24) & 0x7f),
264 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
265 format);
266
267 return buf;
268}
269EXPORT_SYMBOL(drm_get_format_name);
270
Dave Airlie2ee39452014-07-24 11:53:45 +1000271/*
272 * Internal function to assign a slot in the object idr and optionally
273 * register the object into the idr.
274 */
275static int drm_mode_object_get_reg(struct drm_device *dev,
276 struct drm_mode_object *obj,
277 uint32_t obj_type,
278 bool register_obj)
279{
280 int ret;
281
282 mutex_lock(&dev->mode_config.idr_mutex);
283 ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
284 if (ret >= 0) {
285 /*
286 * Set up the object linking under the protection of the idr
287 * lock so that other users can't see inconsistent state.
288 */
289 obj->id = ret;
290 obj->type = obj_type;
291 }
292 mutex_unlock(&dev->mode_config.idr_mutex);
293
294 return ret < 0 ? ret : 0;
295}
296
Dave Airlief453ba02008-11-07 14:05:41 -0800297/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100298 * drm_mode_object_get - allocate a new modeset identifier
Dave Airlief453ba02008-11-07 14:05:41 -0800299 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100300 * @obj: object pointer, used to generate unique ID
301 * @obj_type: object type
Dave Airlief453ba02008-11-07 14:05:41 -0800302 *
Dave Airlief453ba02008-11-07 14:05:41 -0800303 * Create a unique identifier based on @ptr in @dev's identifier space. Used
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100304 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
305 * modeset identifiers are _not_ reference counted. Hence don't use this for
306 * reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800307 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100308 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -0800309 * New unique (relative to other objects in @dev) integer identifier for the
310 * object.
311 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100312int drm_mode_object_get(struct drm_device *dev,
313 struct drm_mode_object *obj, uint32_t obj_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800314{
Dave Airlie2ee39452014-07-24 11:53:45 +1000315 return drm_mode_object_get_reg(dev, obj, obj_type, true);
316}
Dave Airlief453ba02008-11-07 14:05:41 -0800317
Dave Airlie2ee39452014-07-24 11:53:45 +1000318static void drm_mode_object_register(struct drm_device *dev,
319 struct drm_mode_object *obj)
320{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000321 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlie2ee39452014-07-24 11:53:45 +1000322 idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000323 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800324}
325
326/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100327 * drm_mode_object_put - free a modeset identifer
Dave Airlief453ba02008-11-07 14:05:41 -0800328 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100329 * @object: object to free
Dave Airlief453ba02008-11-07 14:05:41 -0800330 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100331 * Free @id from @dev's unique identifier pool. Note that despite the _get
332 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
333 * for reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800334 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100335void drm_mode_object_put(struct drm_device *dev,
336 struct drm_mode_object *object)
Dave Airlief453ba02008-11-07 14:05:41 -0800337{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000338 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800339 idr_remove(&dev->mode_config.crtc_idr, object->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000340 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800341}
342
Rob Clark98f75de2014-05-30 11:37:03 -0400343static struct drm_mode_object *_object_find(struct drm_device *dev,
344 uint32_t id, uint32_t type)
345{
346 struct drm_mode_object *obj = NULL;
347
348 mutex_lock(&dev->mode_config.idr_mutex);
349 obj = idr_find(&dev->mode_config.crtc_idr, id);
Daniel Vetter168c02e2014-07-24 12:12:45 +0200350 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
351 obj = NULL;
352 if (obj && obj->id != id)
353 obj = NULL;
354 /* don't leak out unref'd fb's */
Daniel Stone6bcacf52015-04-20 19:22:55 +0100355 if (obj &&
356 (obj->type == DRM_MODE_OBJECT_FB ||
357 obj->type == DRM_MODE_OBJECT_BLOB))
Rob Clark98f75de2014-05-30 11:37:03 -0400358 obj = NULL;
359 mutex_unlock(&dev->mode_config.idr_mutex);
360
361 return obj;
362}
363
Daniel Vetter786b99e2012-12-02 21:53:40 +0100364/**
365 * drm_mode_object_find - look up a drm object with static lifetime
366 * @dev: drm device
367 * @id: id of the mode object
368 * @type: type of the mode object
369 *
370 * Note that framebuffers cannot be looked up with this functions - since those
Rob Clark98f75de2014-05-30 11:37:03 -0400371 * are reference counted, they need special treatment. Even with
372 * DRM_MODE_OBJECT_ANY (although that will simply return NULL
373 * rather than WARN_ON()).
Daniel Vetter786b99e2012-12-02 21:53:40 +0100374 */
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200375struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
376 uint32_t id, uint32_t type)
Dave Airlief453ba02008-11-07 14:05:41 -0800377{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000378 struct drm_mode_object *obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800379
Daniel Vetter786b99e2012-12-02 21:53:40 +0100380 /* Framebuffers are reference counted and need their own lookup
381 * function.*/
Daniel Stone6bcacf52015-04-20 19:22:55 +0100382 WARN_ON(type == DRM_MODE_OBJECT_FB || type == DRM_MODE_OBJECT_BLOB);
Rob Clark98f75de2014-05-30 11:37:03 -0400383 obj = _object_find(dev, id, type);
Dave Airlief453ba02008-11-07 14:05:41 -0800384 return obj;
385}
386EXPORT_SYMBOL(drm_mode_object_find);
387
388/**
Dave Airlief453ba02008-11-07 14:05:41 -0800389 * drm_framebuffer_init - initialize a framebuffer
390 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100391 * @fb: framebuffer to be initialized
392 * @funcs: ... with these functions
Dave Airlief453ba02008-11-07 14:05:41 -0800393 *
Dave Airlief453ba02008-11-07 14:05:41 -0800394 * Allocates an ID for the framebuffer's parent mode object, sets its mode
395 * functions & device file and adds it to the master fd list.
396 *
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100397 * IMPORTANT:
398 * This functions publishes the fb and makes it available for concurrent access
399 * by other users. Which means by this point the fb _must_ be fully set up -
400 * since all the fb attributes are invariant over its lifetime, no further
401 * locking but only correct reference counting is required.
402 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100403 * Returns:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200404 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800405 */
406int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
407 const struct drm_framebuffer_funcs *funcs)
408{
409 int ret;
410
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100411 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000412 kref_init(&fb->refcount);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100413 INIT_LIST_HEAD(&fb->filp_head);
414 fb->dev = dev;
415 fb->funcs = funcs;
Rob Clarkf7eff602012-09-05 21:48:38 +0000416
Dave Airlief453ba02008-11-07 14:05:41 -0800417 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200418 if (ret)
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100419 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800420
Dave Airlief453ba02008-11-07 14:05:41 -0800421 dev->mode_config.num_fb++;
422 list_add(&fb->head, &dev->mode_config.fb_list);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100423out:
424 mutex_unlock(&dev->mode_config.fb_lock);
Dave Airlief453ba02008-11-07 14:05:41 -0800425
426 return 0;
427}
428EXPORT_SYMBOL(drm_framebuffer_init);
429
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200430/* dev->mode_config.fb_lock must be held! */
431static void __drm_framebuffer_unregister(struct drm_device *dev,
432 struct drm_framebuffer *fb)
433{
434 mutex_lock(&dev->mode_config.idr_mutex);
435 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
436 mutex_unlock(&dev->mode_config.idr_mutex);
437
438 fb->base.id = 0;
439}
440
Rob Clarkf7eff602012-09-05 21:48:38 +0000441static void drm_framebuffer_free(struct kref *kref)
442{
443 struct drm_framebuffer *fb =
444 container_of(kref, struct drm_framebuffer, refcount);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200445 struct drm_device *dev = fb->dev;
446
447 /*
448 * The lookup idr holds a weak reference, which has not necessarily been
449 * removed at this point. Check for that.
450 */
451 mutex_lock(&dev->mode_config.fb_lock);
452 if (fb->base.id) {
453 /* Mark fb as reaped and drop idr ref. */
454 __drm_framebuffer_unregister(dev, fb);
455 }
456 mutex_unlock(&dev->mode_config.fb_lock);
457
Rob Clarkf7eff602012-09-05 21:48:38 +0000458 fb->funcs->destroy(fb);
459}
460
Daniel Vetter2b677e82012-12-10 21:16:05 +0100461static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
462 uint32_t id)
463{
464 struct drm_mode_object *obj = NULL;
465 struct drm_framebuffer *fb;
466
467 mutex_lock(&dev->mode_config.idr_mutex);
468 obj = idr_find(&dev->mode_config.crtc_idr, id);
469 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
470 fb = NULL;
471 else
472 fb = obj_to_fb(obj);
473 mutex_unlock(&dev->mode_config.idr_mutex);
474
475 return fb;
476}
477
Rob Clarkf7eff602012-09-05 21:48:38 +0000478/**
Daniel Vetter786b99e2012-12-02 21:53:40 +0100479 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
480 * @dev: drm device
481 * @id: id of the fb object
482 *
483 * If successful, this grabs an additional reference to the framebuffer -
484 * callers need to make sure to eventually unreference the returned framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100485 * again, using @drm_framebuffer_unreference.
Daniel Vetter786b99e2012-12-02 21:53:40 +0100486 */
487struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
488 uint32_t id)
489{
Daniel Vetter786b99e2012-12-02 21:53:40 +0100490 struct drm_framebuffer *fb;
491
492 mutex_lock(&dev->mode_config.fb_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100493 fb = __drm_framebuffer_lookup(dev, id);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200494 if (fb) {
495 if (!kref_get_unless_zero(&fb->refcount))
496 fb = NULL;
497 }
Daniel Vetter786b99e2012-12-02 21:53:40 +0100498 mutex_unlock(&dev->mode_config.fb_lock);
499
500 return fb;
501}
502EXPORT_SYMBOL(drm_framebuffer_lookup);
503
504/**
Rob Clarkf7eff602012-09-05 21:48:38 +0000505 * drm_framebuffer_unreference - unref a framebuffer
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100506 * @fb: framebuffer to unref
507 *
508 * This functions decrements the fb's refcount and frees it if it drops to zero.
Rob Clarkf7eff602012-09-05 21:48:38 +0000509 */
510void drm_framebuffer_unreference(struct drm_framebuffer *fb)
511{
Rob Clark82912722014-03-18 10:07:08 -0400512 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000513 kref_put(&fb->refcount, drm_framebuffer_free);
514}
515EXPORT_SYMBOL(drm_framebuffer_unreference);
516
517/**
518 * drm_framebuffer_reference - incr the fb refcnt
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100519 * @fb: framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100520 *
521 * This functions increments the fb's refcount.
Rob Clarkf7eff602012-09-05 21:48:38 +0000522 */
523void drm_framebuffer_reference(struct drm_framebuffer *fb)
524{
Rob Clark82912722014-03-18 10:07:08 -0400525 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000526 kref_get(&fb->refcount);
527}
528EXPORT_SYMBOL(drm_framebuffer_reference);
529
Dave Airlief453ba02008-11-07 14:05:41 -0800530/**
Daniel Vetter36206362012-12-10 20:42:17 +0100531 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
532 * @fb: fb to unregister
533 *
534 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
535 * those used for fbdev. Note that the caller must hold a reference of it's own,
536 * i.e. the object may not be destroyed through this call (since it'll lead to a
537 * locking inversion).
538 */
539void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
540{
Daniel Vetter2b677e82012-12-10 21:16:05 +0100541 struct drm_device *dev = fb->dev;
542
543 mutex_lock(&dev->mode_config.fb_lock);
544 /* Mark fb as reaped and drop idr ref. */
545 __drm_framebuffer_unregister(dev, fb);
546 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100547}
548EXPORT_SYMBOL(drm_framebuffer_unregister_private);
549
550/**
Dave Airlief453ba02008-11-07 14:05:41 -0800551 * drm_framebuffer_cleanup - remove a framebuffer object
552 * @fb: framebuffer to remove
553 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100554 * Cleanup framebuffer. This function is intended to be used from the drivers
555 * ->destroy callback. It can also be used to clean up driver private
556 * framebuffers embedded into a larger structure.
Daniel Vetter36206362012-12-10 20:42:17 +0100557 *
558 * Note that this function does not remove the fb from active usuage - if it is
559 * still used anywhere, hilarity can ensue since userspace could call getfb on
560 * the id and get back -EINVAL. Obviously no concern at driver unload time.
561 *
562 * Also, the framebuffer will not be removed from the lookup idr - for
563 * user-created framebuffers this will happen in in the rmfb ioctl. For
564 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
565 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800566 */
567void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
568{
569 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100570
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100571 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000572 list_del(&fb->head);
573 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100574 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000575}
576EXPORT_SYMBOL(drm_framebuffer_cleanup);
577
578/**
579 * drm_framebuffer_remove - remove and unreference a framebuffer object
580 * @fb: framebuffer to remove
581 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000582 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100583 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100584 * passed-in framebuffer. Might take the modeset locks.
585 *
586 * Note that this function optimizes the cleanup away if the caller holds the
587 * last reference to the framebuffer. It is also guaranteed to not take the
588 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000589 */
590void drm_framebuffer_remove(struct drm_framebuffer *fb)
591{
592 struct drm_device *dev = fb->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800593 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800594 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000595 struct drm_mode_set set;
596 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800597
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100598 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100599
Daniel Vetterb62584e2012-12-11 16:51:35 +0100600 /*
601 * drm ABI mandates that we remove any deleted framebuffers from active
602 * useage. But since most sane clients only remove framebuffers they no
603 * longer need, try to optimize this away.
604 *
605 * Since we're holding a reference ourselves, observing a refcount of 1
606 * means that we're the last holder and can skip it. Also, the refcount
607 * can never increase from 1 again, so we don't need any barriers or
608 * locks.
609 *
610 * Note that userspace could try to race with use and instate a new
611 * usage _after_ we've cleared all current ones. End result will be an
612 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
613 * in this manner.
614 */
615 if (atomic_read(&fb->refcount.refcount) > 1) {
616 drm_modeset_lock_all(dev);
617 /* remove from any CRTC */
618 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -0700619 if (crtc->primary->fb == fb) {
Daniel Vetterb62584e2012-12-11 16:51:35 +0100620 /* should turn off the crtc */
621 memset(&set, 0, sizeof(struct drm_mode_set));
622 set.crtc = crtc;
623 set.fb = NULL;
624 ret = drm_mode_set_config_internal(&set);
625 if (ret)
626 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
627 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000628 }
Dave Airlief453ba02008-11-07 14:05:41 -0800629
Daniel Vetterb62584e2012-12-11 16:51:35 +0100630 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300631 if (plane->fb == fb)
632 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800633 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100634 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800635 }
636
Rob Clarkf7eff602012-09-05 21:48:38 +0000637 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800638}
Rob Clarkf7eff602012-09-05 21:48:38 +0000639EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800640
Rob Clark51fd3712013-11-19 12:10:12 -0500641DEFINE_WW_CLASS(crtc_ww_class);
642
Dave Airlief453ba02008-11-07 14:05:41 -0800643/**
Matt Ropere13161a2014-04-01 15:22:38 -0700644 * drm_crtc_init_with_planes - Initialise a new CRTC object with
645 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800646 * @dev: DRM device
647 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700648 * @primary: Primary plane for CRTC
649 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800650 * @funcs: callbacks for the new CRTC
651 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000652 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200653 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100654 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200655 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800656 */
Matt Ropere13161a2014-04-01 15:22:38 -0700657int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
658 struct drm_plane *primary,
Matt Roperfc1d3e42014-06-10 08:28:11 -0700659 struct drm_plane *cursor,
Matt Ropere13161a2014-04-01 15:22:38 -0700660 const struct drm_crtc_funcs *funcs)
Dave Airlief453ba02008-11-07 14:05:41 -0800661{
Rob Clark51fd3712013-11-19 12:10:12 -0500662 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200663 int ret;
664
Benjamin Gaignard522cf912015-03-17 12:05:29 +0100665 WARN_ON(primary && primary->type != DRM_PLANE_TYPE_PRIMARY);
666 WARN_ON(cursor && cursor->type != DRM_PLANE_TYPE_CURSOR);
667
Dave Airlief453ba02008-11-07 14:05:41 -0800668 crtc->dev = dev;
669 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000670 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800671
Rob Clark51fd3712013-11-19 12:10:12 -0500672 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200673 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
674 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100675 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800676
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300677 crtc->base.properties = &crtc->properties;
678
Rob Clark51fd3712013-11-19 12:10:12 -0500679 list_add_tail(&crtc->head, &config->crtc_list);
680 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200681
Matt Ropere13161a2014-04-01 15:22:38 -0700682 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700683 crtc->cursor = cursor;
Matt Ropere13161a2014-04-01 15:22:38 -0700684 if (primary)
685 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Roperfc1d3e42014-06-10 08:28:11 -0700686 if (cursor)
687 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700688
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100689 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
690 drm_object_attach_property(&crtc->base, config->prop_active, 0);
691 }
692
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100693 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800694}
Matt Ropere13161a2014-04-01 15:22:38 -0700695EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800696
697/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000698 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800699 * @crtc: CRTC to cleanup
700 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000701 * This function cleans up @crtc and removes it from the DRM mode setting
702 * core. Note that the function does *not* free the crtc structure itself,
703 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800704 */
705void drm_crtc_cleanup(struct drm_crtc *crtc)
706{
707 struct drm_device *dev = crtc->dev;
708
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000709 kfree(crtc->gamma_store);
710 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800711
Rob Clark51fd3712013-11-19 12:10:12 -0500712 drm_modeset_lock_fini(&crtc->mutex);
713
Dave Airlief453ba02008-11-07 14:05:41 -0800714 drm_mode_object_put(dev, &crtc->base);
715 list_del(&crtc->head);
716 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100717
718 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
719 if (crtc->state && crtc->funcs->atomic_destroy_state)
720 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100721
722 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800723}
724EXPORT_SYMBOL(drm_crtc_cleanup);
725
726/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000727 * drm_crtc_index - find the index of a registered CRTC
728 * @crtc: CRTC to find index for
729 *
730 * Given a registered CRTC, return the index of that CRTC within a DRM
731 * device's list of CRTCs.
732 */
733unsigned int drm_crtc_index(struct drm_crtc *crtc)
734{
735 unsigned int index = 0;
736 struct drm_crtc *tmp;
737
738 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
739 if (tmp == crtc)
740 return index;
741
742 index++;
743 }
744
745 BUG();
746}
747EXPORT_SYMBOL(drm_crtc_index);
748
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100749/*
Dave Airlief453ba02008-11-07 14:05:41 -0800750 * drm_mode_remove - remove and free a mode
751 * @connector: connector list to modify
752 * @mode: mode to remove
753 *
Dave Airlief453ba02008-11-07 14:05:41 -0800754 * Remove @mode from @connector's mode list, then free it.
755 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100756static void drm_mode_remove(struct drm_connector *connector,
757 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800758{
759 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100760 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800761}
Dave Airlief453ba02008-11-07 14:05:41 -0800762
763/**
Boris Brezillonb5571e92014-07-22 12:09:10 +0200764 * drm_display_info_set_bus_formats - set the supported bus formats
765 * @info: display info to store bus formats in
Boris Brezillone37bfa12015-01-23 21:09:30 +0100766 * @formats: array containing the supported bus formats
767 * @num_formats: the number of entries in the fmts array
Boris Brezillonb5571e92014-07-22 12:09:10 +0200768 *
769 * Store the supported bus formats in display info structure.
770 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
771 * a full list of available formats.
772 */
773int drm_display_info_set_bus_formats(struct drm_display_info *info,
774 const u32 *formats,
775 unsigned int num_formats)
776{
777 u32 *fmts = NULL;
778
779 if (!formats && num_formats)
780 return -EINVAL;
781
782 if (formats && num_formats) {
783 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
784 GFP_KERNEL);
Dan Carpenter944579c2015-01-28 09:43:35 +0300785 if (!fmts)
Boris Brezillonb5571e92014-07-22 12:09:10 +0200786 return -ENOMEM;
787 }
788
789 kfree(info->bus_formats);
790 info->bus_formats = fmts;
791 info->num_bus_formats = num_formats;
792
793 return 0;
794}
795EXPORT_SYMBOL(drm_display_info_set_bus_formats);
796
797/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200798 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
799 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200800 *
801 * The kernel supports per-connector configration of its consoles through
802 * use of the video= parameter. This function parses that option and
803 * extracts the user's specified mode (or enable/disable status) for a
804 * particular connector. This is typically only used during the early fbdev
805 * setup.
806 */
807static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
808{
809 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
810 char *option = NULL;
811
812 if (fb_get_options(connector->name, &option))
813 return;
814
815 if (!drm_mode_parse_command_line_for_connector(option,
816 connector,
817 mode))
818 return;
819
820 if (mode->force) {
821 const char *s;
822
823 switch (mode->force) {
824 case DRM_FORCE_OFF:
825 s = "OFF";
826 break;
827 case DRM_FORCE_ON_DIGITAL:
828 s = "ON - dig";
829 break;
830 default:
831 case DRM_FORCE_ON:
832 s = "ON";
833 break;
834 }
835
836 DRM_INFO("forcing %s connector %s\n", connector->name, s);
837 connector->force = mode->force;
838 }
839
840 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
841 connector->name,
842 mode->xres, mode->yres,
843 mode->refresh_specified ? mode->refresh : 60,
844 mode->rb ? " reduced blanking" : "",
845 mode->margins ? " with margins" : "",
846 mode->interlace ? " interlaced" : "");
847}
848
849/**
Dave Airlief453ba02008-11-07 14:05:41 -0800850 * drm_connector_init - Init a preallocated connector
851 * @dev: DRM device
852 * @connector: the connector to init
853 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100854 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800855 *
Dave Airlief453ba02008-11-07 14:05:41 -0800856 * Initialises a preallocated connector. Connectors should be
857 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200858 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100859 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200860 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800861 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200862int drm_connector_init(struct drm_device *dev,
863 struct drm_connector *connector,
864 const struct drm_connector_funcs *funcs,
865 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800866{
Rob Clarkae16c592014-12-18 16:01:54 -0500867 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200868 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400869 struct ida *connector_ida =
870 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200871
Daniel Vetter84849902012-12-02 00:28:11 +0100872 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800873
Dave Airlie2ee39452014-07-24 11:53:45 +1000874 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200875 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300876 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200877
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300878 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800879 connector->dev = dev;
880 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800881 connector->connector_type = connector_type;
882 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400883 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
884 if (connector->connector_type_id < 0) {
885 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300886 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400887 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300888 connector->name =
889 kasprintf(GFP_KERNEL, "%s-%d",
890 drm_connector_enum_list[connector_type].name,
891 connector->connector_type_id);
892 if (!connector->name) {
893 ret = -ENOMEM;
894 goto out_put;
895 }
896
Dave Airlief453ba02008-11-07 14:05:41 -0800897 INIT_LIST_HEAD(&connector->probed_modes);
898 INIT_LIST_HEAD(&connector->modes);
899 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000900 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800901
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200902 drm_connector_get_cmdline_mode(connector);
903
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100904 /* We should add connectors at the end to avoid upsetting the connector
905 * index too much. */
Rob Clarkae16c592014-12-18 16:01:54 -0500906 list_add_tail(&connector->head, &config->connector_list);
907 config->num_connector++;
Dave Airlief453ba02008-11-07 14:05:41 -0800908
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200909 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500910 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500911 config->edid_property,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200912 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800913
Rob Clark58495562012-10-11 20:50:56 -0500914 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500915 config->dpms_property, 0);
916
917 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
918 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
919 }
Dave Airlief453ba02008-11-07 14:05:41 -0800920
Thomas Wood30f65702014-06-18 17:52:32 +0100921 connector->debugfs_entry = NULL;
922
Jani Nikula2abdd312014-05-14 16:58:19 +0300923out_put:
924 if (ret)
925 drm_mode_object_put(dev, &connector->base);
926
927out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100928 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200929
930 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800931}
932EXPORT_SYMBOL(drm_connector_init);
933
934/**
935 * drm_connector_cleanup - cleans up an initialised connector
936 * @connector: connector to cleanup
937 *
Dave Airlief453ba02008-11-07 14:05:41 -0800938 * Cleans up the connector but doesn't free the object.
939 */
940void drm_connector_cleanup(struct drm_connector *connector)
941{
942 struct drm_device *dev = connector->dev;
943 struct drm_display_mode *mode, *t;
944
Dave Airlie40d9b042014-10-20 16:29:33 +1000945 if (connector->tile_group) {
946 drm_mode_put_tile_group(dev, connector->tile_group);
947 connector->tile_group = NULL;
948 }
949
Dave Airlief453ba02008-11-07 14:05:41 -0800950 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
951 drm_mode_remove(connector, mode);
952
953 list_for_each_entry_safe(mode, t, &connector->modes, head)
954 drm_mode_remove(connector, mode);
955
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400956 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
957 connector->connector_type_id);
958
Boris Brezillonb5571e92014-07-22 12:09:10 +0200959 kfree(connector->display_info.bus_formats);
Dave Airlief453ba02008-11-07 14:05:41 -0800960 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300961 kfree(connector->name);
962 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800963 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000964 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100965
966 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
967 if (connector->state && connector->funcs->atomic_destroy_state)
968 connector->funcs->atomic_destroy_state(connector,
969 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100970
971 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800972}
973EXPORT_SYMBOL(drm_connector_cleanup);
974
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100975/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200976 * drm_connector_index - find the index of a registered connector
977 * @connector: connector to find index for
978 *
979 * Given a registered connector, return the index of that connector within a DRM
980 * device's list of connectors.
981 */
982unsigned int drm_connector_index(struct drm_connector *connector)
983{
984 unsigned int index = 0;
985 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100986 struct drm_mode_config *config = &connector->dev->mode_config;
987
988 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +0200989
990 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
991 if (tmp == connector)
992 return index;
993
994 index++;
995 }
996
997 BUG();
998}
999EXPORT_SYMBOL(drm_connector_index);
1000
1001/**
Thomas Wood34ea3d32014-05-29 16:57:41 +01001002 * drm_connector_register - register a connector
1003 * @connector: the connector to register
1004 *
1005 * Register userspace interfaces for a connector
1006 *
1007 * Returns:
1008 * Zero on success, error code on failure.
1009 */
1010int drm_connector_register(struct drm_connector *connector)
1011{
Thomas Wood30f65702014-06-18 17:52:32 +01001012 int ret;
1013
Dave Airlie2ee39452014-07-24 11:53:45 +10001014 drm_mode_object_register(connector->dev, &connector->base);
1015
Thomas Wood30f65702014-06-18 17:52:32 +01001016 ret = drm_sysfs_connector_add(connector);
1017 if (ret)
1018 return ret;
1019
1020 ret = drm_debugfs_connector_add(connector);
1021 if (ret) {
1022 drm_sysfs_connector_remove(connector);
1023 return ret;
1024 }
1025
1026 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +01001027}
1028EXPORT_SYMBOL(drm_connector_register);
1029
1030/**
1031 * drm_connector_unregister - unregister a connector
1032 * @connector: the connector to unregister
1033 *
1034 * Unregister userspace interfaces for a connector
1035 */
1036void drm_connector_unregister(struct drm_connector *connector)
1037{
1038 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001039 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001040}
1041EXPORT_SYMBOL(drm_connector_unregister);
1042
1043
1044/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001045 * drm_connector_unplug_all - unregister connector userspace interfaces
1046 * @dev: drm device
1047 *
1048 * This function unregisters all connector userspace interfaces in sysfs. Should
1049 * be call when the device is disconnected, e.g. from an usb driver's
1050 * ->disconnect callback.
1051 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001052void drm_connector_unplug_all(struct drm_device *dev)
1053{
1054 struct drm_connector *connector;
1055
1056 /* taking the mode config mutex ends up in a clash with sysfs */
1057 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001058 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001059
1060}
1061EXPORT_SYMBOL(drm_connector_unplug_all);
1062
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001063/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001064 * drm_encoder_init - Init a preallocated encoder
1065 * @dev: drm device
1066 * @encoder: the encoder to init
1067 * @funcs: callbacks for this encoder
1068 * @encoder_type: user visible type of the encoder
1069 *
1070 * Initialises a preallocated encoder. Encoder should be
1071 * subclassed as part of driver encoder objects.
1072 *
1073 * Returns:
1074 * Zero on success, error code on failure.
1075 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001076int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001077 struct drm_encoder *encoder,
1078 const struct drm_encoder_funcs *funcs,
1079 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001080{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001081 int ret;
1082
Daniel Vetter84849902012-12-02 00:28:11 +01001083 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001084
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001085 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1086 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001087 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001088
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001089 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001090 encoder->encoder_type = encoder_type;
1091 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001092 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1093 drm_encoder_enum_list[encoder_type].name,
1094 encoder->base.id);
1095 if (!encoder->name) {
1096 ret = -ENOMEM;
1097 goto out_put;
1098 }
Dave Airlief453ba02008-11-07 14:05:41 -08001099
1100 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1101 dev->mode_config.num_encoder++;
1102
Jani Nikulae5748942014-05-14 16:58:20 +03001103out_put:
1104 if (ret)
1105 drm_mode_object_put(dev, &encoder->base);
1106
1107out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001108 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001109
1110 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001111}
1112EXPORT_SYMBOL(drm_encoder_init);
1113
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001114/**
1115 * drm_encoder_cleanup - cleans up an initialised encoder
1116 * @encoder: encoder to cleanup
1117 *
1118 * Cleans up the encoder but doesn't free the object.
1119 */
Dave Airlief453ba02008-11-07 14:05:41 -08001120void drm_encoder_cleanup(struct drm_encoder *encoder)
1121{
1122 struct drm_device *dev = encoder->dev;
Thierry Reding4dfd9092014-12-10 13:03:34 +01001123
Daniel Vetter84849902012-12-02 00:28:11 +01001124 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001125 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001126 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001127 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001128 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001129 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001130
1131 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001132}
1133EXPORT_SYMBOL(drm_encoder_cleanup);
1134
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001135/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001136 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001137 * @dev: DRM device
1138 * @plane: plane object to init
1139 * @possible_crtcs: bitmask of possible CRTCs
1140 * @funcs: callbacks for the new plane
1141 * @formats: array of supported formats (%DRM_FORMAT_*)
1142 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001143 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001144 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001145 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001146 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001147 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001148 * Zero on success, error code on failure.
1149 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001150int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1151 unsigned long possible_crtcs,
1152 const struct drm_plane_funcs *funcs,
1153 const uint32_t *formats, uint32_t format_count,
1154 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001155{
Rob Clark6b4959f2014-12-18 16:01:53 -05001156 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001157 int ret;
1158
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001159 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1160 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001161 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001162
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001163 drm_modeset_lock_init(&plane->mutex);
1164
Rob Clark4d939142012-05-17 02:23:27 -06001165 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001166 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001167 plane->funcs = funcs;
Thierry Reding2f6c5382014-12-10 13:03:36 +01001168 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1169 GFP_KERNEL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001170 if (!plane->format_types) {
1171 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1172 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001173 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001174 }
1175
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001176 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001177 plane->format_count = format_count;
1178 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001179 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001180
Rob Clark6b4959f2014-12-18 16:01:53 -05001181 list_add_tail(&plane->head, &config->plane_list);
1182 config->num_total_plane++;
Matt Roperdc415ff2014-04-01 15:22:36 -07001183 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Rob Clark6b4959f2014-12-18 16:01:53 -05001184 config->num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001185
Rob Clark9922ab52014-04-01 20:16:57 -04001186 drm_object_attach_property(&plane->base,
Rob Clark6b4959f2014-12-18 16:01:53 -05001187 config->plane_type_property,
Rob Clark9922ab52014-04-01 20:16:57 -04001188 plane->type);
1189
Rob Clark6b4959f2014-12-18 16:01:53 -05001190 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1191 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1192 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1193 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1194 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1195 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1196 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1197 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1198 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1199 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1200 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1201 }
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);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001265
1266 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001267}
1268EXPORT_SYMBOL(drm_plane_cleanup);
1269
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001270/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001271 * drm_plane_index - find the index of a registered plane
1272 * @plane: plane to find index for
1273 *
1274 * Given a registered plane, return the index of that CRTC within a DRM
1275 * device's list of planes.
1276 */
1277unsigned int drm_plane_index(struct drm_plane *plane)
1278{
1279 unsigned int index = 0;
1280 struct drm_plane *tmp;
1281
1282 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1283 if (tmp == plane)
1284 return index;
1285
1286 index++;
1287 }
1288
1289 BUG();
1290}
1291EXPORT_SYMBOL(drm_plane_index);
1292
1293/**
Chandra Konduruf81338a2015-04-09 17:36:21 -07001294 * drm_plane_from_index - find the registered plane at an index
1295 * @dev: DRM device
1296 * @idx: index of registered plane to find for
1297 *
1298 * Given a plane index, return the registered plane from DRM device's
1299 * list of planes with matching index.
1300 */
1301struct drm_plane *
1302drm_plane_from_index(struct drm_device *dev, int idx)
1303{
1304 struct drm_plane *plane;
1305 unsigned int i = 0;
1306
1307 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
1308 if (i == idx)
1309 return plane;
1310 i++;
1311 }
1312 return NULL;
1313}
1314EXPORT_SYMBOL(drm_plane_from_index);
1315
1316/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001317 * drm_plane_force_disable - Forcibly disable a plane
1318 * @plane: plane to disable
1319 *
1320 * Forces the plane to be disabled.
1321 *
1322 * Used when the plane's current framebuffer is destroyed,
1323 * and when restoring fbdev mode.
1324 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001325void drm_plane_force_disable(struct drm_plane *plane)
1326{
1327 int ret;
1328
Daniel Vetter3d30a592014-07-27 13:42:42 +02001329 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001330 return;
1331
Daniel Vetter3d30a592014-07-27 13:42:42 +02001332 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001333 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001334 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001335 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001336 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001337 return;
1338 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001339 /* disconnect the plane from the fb and crtc: */
Daniel Vetter220dd2b2015-02-27 12:58:13 +01001340 drm_framebuffer_unreference(plane->old_fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02001341 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001342 plane->fb = NULL;
1343 plane->crtc = NULL;
1344}
1345EXPORT_SYMBOL(drm_plane_force_disable);
1346
Rob Clark6b4959f2014-12-18 16:01:53 -05001347static int drm_mode_create_standard_properties(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -08001348{
Rob Clark356af0e2014-12-18 16:01:52 -05001349 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001350
1351 /*
1352 * Standard properties (apply to all connectors)
1353 */
Rob Clark356af0e2014-12-18 16:01:52 -05001354 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
Dave Airlief453ba02008-11-07 14:05:41 -08001355 DRM_MODE_PROP_IMMUTABLE,
1356 "EDID", 0);
Rob Clark356af0e2014-12-18 16:01:52 -05001357 if (!prop)
1358 return -ENOMEM;
1359 dev->mode_config.edid_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001360
Rob Clark356af0e2014-12-18 16:01:52 -05001361 prop = drm_property_create_enum(dev, 0,
Sascha Hauer4a67d392012-02-06 10:58:17 +01001362 "DPMS", drm_dpms_enum_list,
1363 ARRAY_SIZE(drm_dpms_enum_list));
Rob Clark356af0e2014-12-18 16:01:52 -05001364 if (!prop)
1365 return -ENOMEM;
1366 dev->mode_config.dpms_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001367
Rob Clark356af0e2014-12-18 16:01:52 -05001368 prop = drm_property_create(dev,
1369 DRM_MODE_PROP_BLOB |
1370 DRM_MODE_PROP_IMMUTABLE,
1371 "PATH", 0);
1372 if (!prop)
1373 return -ENOMEM;
1374 dev->mode_config.path_property = prop;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001375
Rob Clark356af0e2014-12-18 16:01:52 -05001376 prop = drm_property_create(dev,
1377 DRM_MODE_PROP_BLOB |
1378 DRM_MODE_PROP_IMMUTABLE,
1379 "TILE", 0);
1380 if (!prop)
1381 return -ENOMEM;
1382 dev->mode_config.tile_property = prop;
Dave Airlie6f134d72014-10-20 16:30:50 +10001383
Rob Clark6b4959f2014-12-18 16:01:53 -05001384 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Rob Clark9922ab52014-04-01 20:16:57 -04001385 "type", drm_plane_type_enum_list,
1386 ARRAY_SIZE(drm_plane_type_enum_list));
Rob Clark6b4959f2014-12-18 16:01:53 -05001387 if (!prop)
1388 return -ENOMEM;
1389 dev->mode_config.plane_type_property = prop;
1390
1391 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1392 "SRC_X", 0, UINT_MAX);
1393 if (!prop)
1394 return -ENOMEM;
1395 dev->mode_config.prop_src_x = prop;
1396
1397 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1398 "SRC_Y", 0, UINT_MAX);
1399 if (!prop)
1400 return -ENOMEM;
1401 dev->mode_config.prop_src_y = prop;
1402
1403 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1404 "SRC_W", 0, UINT_MAX);
1405 if (!prop)
1406 return -ENOMEM;
1407 dev->mode_config.prop_src_w = prop;
1408
1409 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1410 "SRC_H", 0, UINT_MAX);
1411 if (!prop)
1412 return -ENOMEM;
1413 dev->mode_config.prop_src_h = prop;
1414
1415 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1416 "CRTC_X", INT_MIN, INT_MAX);
1417 if (!prop)
1418 return -ENOMEM;
1419 dev->mode_config.prop_crtc_x = prop;
1420
1421 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1422 "CRTC_Y", INT_MIN, INT_MAX);
1423 if (!prop)
1424 return -ENOMEM;
1425 dev->mode_config.prop_crtc_y = prop;
1426
1427 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1428 "CRTC_W", 0, INT_MAX);
1429 if (!prop)
1430 return -ENOMEM;
1431 dev->mode_config.prop_crtc_w = prop;
1432
1433 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1434 "CRTC_H", 0, INT_MAX);
1435 if (!prop)
1436 return -ENOMEM;
1437 dev->mode_config.prop_crtc_h = prop;
1438
1439 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1440 "FB_ID", DRM_MODE_OBJECT_FB);
1441 if (!prop)
1442 return -ENOMEM;
1443 dev->mode_config.prop_fb_id = prop;
1444
1445 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1446 "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1447 if (!prop)
1448 return -ENOMEM;
1449 dev->mode_config.prop_crtc_id = prop;
Rob Clark9922ab52014-04-01 20:16:57 -04001450
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001451 prop = drm_property_create_bool(dev, DRM_MODE_PROP_ATOMIC,
1452 "ACTIVE");
1453 if (!prop)
1454 return -ENOMEM;
1455 dev->mode_config.prop_active = prop;
1456
Rob Clark9922ab52014-04-01 20:16:57 -04001457 return 0;
1458}
1459
Dave Airlief453ba02008-11-07 14:05:41 -08001460/**
1461 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1462 * @dev: DRM device
1463 *
1464 * Called by a driver the first time a DVI-I connector is made.
1465 */
1466int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1467{
1468 struct drm_property *dvi_i_selector;
1469 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001470
1471 if (dev->mode_config.dvi_i_select_subconnector_property)
1472 return 0;
1473
1474 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001475 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001476 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001477 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001478 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001479 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1480
Sascha Hauer4a67d392012-02-06 10:58:17 +01001481 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001482 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001483 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001484 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001485 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1486
1487 return 0;
1488}
1489EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1490
1491/**
1492 * drm_create_tv_properties - create TV specific connector properties
1493 * @dev: DRM device
1494 * @num_modes: number of different TV formats (modes) supported
1495 * @modes: array of pointers to strings containing name of each format
1496 *
1497 * Called by a driver's TV initialization routine, this function creates
1498 * the TV specific connector properties for a given device. Caller is
1499 * responsible for allocating a list of format names and passing them to
1500 * this routine.
1501 */
Thierry Reding2f763312014-10-13 12:45:57 +02001502int drm_mode_create_tv_properties(struct drm_device *dev,
1503 unsigned int num_modes,
Dave Airlief453ba02008-11-07 14:05:41 -08001504 char *modes[])
1505{
1506 struct drm_property *tv_selector;
1507 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001508 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001509
1510 if (dev->mode_config.tv_select_subconnector_property)
1511 return 0;
1512
1513 /*
1514 * Basic connector properties
1515 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001516 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001517 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001518 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001519 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001520 dev->mode_config.tv_select_subconnector_property = tv_selector;
1521
1522 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001523 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1524 "subconnector",
1525 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001526 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001527 dev->mode_config.tv_subconnector_property = tv_subconnector;
1528
1529 /*
1530 * Other, TV specific properties: margins & TV modes.
1531 */
1532 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001533 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001534
1535 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001536 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001537
1538 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001539 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001540
1541 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001542 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001543
1544 dev->mode_config.tv_mode_property =
1545 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1546 "mode", num_modes);
1547 for (i = 0; i < num_modes; i++)
1548 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1549 i, modes[i]);
1550
Francisco Jerezb6b79022009-08-02 04:19:20 +02001551 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001552 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001553
1554 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001555 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001556
1557 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001558 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001559
Francisco Jereza75f0232009-08-12 02:30:10 +02001560 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001561 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001562
1563 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001564 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001565
1566 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001567 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001568
Dave Airlief453ba02008-11-07 14:05:41 -08001569 return 0;
1570}
1571EXPORT_SYMBOL(drm_mode_create_tv_properties);
1572
1573/**
1574 * drm_mode_create_scaling_mode_property - create scaling mode property
1575 * @dev: DRM device
1576 *
1577 * Called by a driver the first time it's needed, must be attached to desired
1578 * connectors.
1579 */
1580int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1581{
1582 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001583
1584 if (dev->mode_config.scaling_mode_property)
1585 return 0;
1586
1587 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001588 drm_property_create_enum(dev, 0, "scaling mode",
1589 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001590 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001591
1592 dev->mode_config.scaling_mode_property = scaling_mode;
1593
1594 return 0;
1595}
1596EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1597
1598/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301599 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1600 * @dev: DRM device
1601 *
1602 * Called by a driver the first time it's needed, must be attached to desired
1603 * connectors.
1604 *
1605 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001606 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301607 */
1608int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1609{
1610 if (dev->mode_config.aspect_ratio_property)
1611 return 0;
1612
1613 dev->mode_config.aspect_ratio_property =
1614 drm_property_create_enum(dev, 0, "aspect ratio",
1615 drm_aspect_ratio_enum_list,
1616 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1617
1618 if (dev->mode_config.aspect_ratio_property == NULL)
1619 return -ENOMEM;
1620
1621 return 0;
1622}
1623EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1624
1625/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001626 * drm_mode_create_dirty_property - create dirty property
1627 * @dev: DRM device
1628 *
1629 * Called by a driver the first time it's needed, must be attached to desired
1630 * connectors.
1631 */
1632int drm_mode_create_dirty_info_property(struct drm_device *dev)
1633{
1634 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001635
1636 if (dev->mode_config.dirty_info_property)
1637 return 0;
1638
1639 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001640 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001641 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001642 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001643 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001644 dev->mode_config.dirty_info_property = dirty_info;
1645
1646 return 0;
1647}
1648EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1649
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001650/**
1651 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1652 * @dev: DRM device
1653 *
1654 * Create the the suggested x/y offset property for connectors.
1655 */
1656int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1657{
1658 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1659 return 0;
1660
1661 dev->mode_config.suggested_x_property =
1662 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1663
1664 dev->mode_config.suggested_y_property =
1665 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1666
1667 if (dev->mode_config.suggested_x_property == NULL ||
1668 dev->mode_config.suggested_y_property == NULL)
1669 return -ENOMEM;
1670 return 0;
1671}
1672EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1673
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001674static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001675{
1676 uint32_t total_objects = 0;
1677
1678 total_objects += dev->mode_config.num_crtc;
1679 total_objects += dev->mode_config.num_connector;
1680 total_objects += dev->mode_config.num_encoder;
1681
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01001682 group->id_list = kcalloc(total_objects, sizeof(uint32_t), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08001683 if (!group->id_list)
1684 return -ENOMEM;
1685
1686 group->num_crtcs = 0;
1687 group->num_connectors = 0;
1688 group->num_encoders = 0;
1689 return 0;
1690}
1691
Dave Airliead222792014-05-02 13:22:19 +10001692void drm_mode_group_destroy(struct drm_mode_group *group)
1693{
1694 kfree(group->id_list);
1695 group->id_list = NULL;
1696}
1697
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001698/*
1699 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1700 * the drm core's responsibility to set up mode control groups.
1701 */
Dave Airlief453ba02008-11-07 14:05:41 -08001702int drm_mode_group_init_legacy_group(struct drm_device *dev,
1703 struct drm_mode_group *group)
1704{
1705 struct drm_crtc *crtc;
1706 struct drm_encoder *encoder;
1707 struct drm_connector *connector;
1708 int ret;
1709
Thierry Reding0cc0b222014-12-10 13:03:37 +01001710 ret = drm_mode_group_init(dev, group);
1711 if (ret)
Dave Airlief453ba02008-11-07 14:05:41 -08001712 return ret;
1713
1714 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1715 group->id_list[group->num_crtcs++] = crtc->base.id;
1716
1717 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1718 group->id_list[group->num_crtcs + group->num_encoders++] =
1719 encoder->base.id;
1720
1721 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1722 group->id_list[group->num_crtcs + group->num_encoders +
1723 group->num_connectors++] = connector->base.id;
1724
1725 return 0;
1726}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001727EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001728
Dave Airlie2390cd12014-06-05 14:01:29 +10001729void drm_reinit_primary_mode_group(struct drm_device *dev)
1730{
1731 drm_modeset_lock_all(dev);
1732 drm_mode_group_destroy(&dev->primary->mode_group);
1733 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1734 drm_modeset_unlock_all(dev);
1735}
1736EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1737
Dave Airlief453ba02008-11-07 14:05:41 -08001738/**
Dave Airlief453ba02008-11-07 14:05:41 -08001739 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001740 * @dev: drm device for the ioctl
1741 * @data: data pointer for the ioctl
1742 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001743 *
Dave Airlief453ba02008-11-07 14:05:41 -08001744 * Construct a set of configuration description structures and return
1745 * them to the user, including CRTC, connector and framebuffer configuration.
1746 *
1747 * Called by the user via ioctl.
1748 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001749 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001750 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001751 */
1752int drm_mode_getresources(struct drm_device *dev, void *data,
1753 struct drm_file *file_priv)
1754{
1755 struct drm_mode_card_res *card_res = data;
1756 struct list_head *lh;
1757 struct drm_framebuffer *fb;
1758 struct drm_connector *connector;
1759 struct drm_crtc *crtc;
1760 struct drm_encoder *encoder;
1761 int ret = 0;
1762 int connector_count = 0;
1763 int crtc_count = 0;
1764 int fb_count = 0;
1765 int encoder_count = 0;
1766 int copied = 0, i;
1767 uint32_t __user *fb_id;
1768 uint32_t __user *crtc_id;
1769 uint32_t __user *connector_id;
1770 uint32_t __user *encoder_id;
1771 struct drm_mode_group *mode_group;
1772
Dave Airliefb3b06c2011-02-08 13:55:21 +10001773 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1774 return -EINVAL;
1775
Dave Airlief453ba02008-11-07 14:05:41 -08001776
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001777 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001778 /*
1779 * For the non-control nodes we need to limit the list of resources
1780 * by IDs in the group list for this node
1781 */
1782 list_for_each(lh, &file_priv->fbs)
1783 fb_count++;
1784
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001785 /* handle this in 4 parts */
1786 /* FBs */
1787 if (card_res->count_fbs >= fb_count) {
1788 copied = 0;
1789 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1790 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1791 if (put_user(fb->base.id, fb_id + copied)) {
1792 mutex_unlock(&file_priv->fbs_lock);
1793 return -EFAULT;
1794 }
1795 copied++;
1796 }
1797 }
1798 card_res->count_fbs = fb_count;
1799 mutex_unlock(&file_priv->fbs_lock);
1800
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001801 /* mode_config.mutex protects the connector list against e.g. DP MST
1802 * connector hot-adding. CRTC/Plane lists are invariant. */
1803 mutex_lock(&dev->mode_config.mutex);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001804 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001805
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001806 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001807 list_for_each(lh, &dev->mode_config.crtc_list)
1808 crtc_count++;
1809
1810 list_for_each(lh, &dev->mode_config.connector_list)
1811 connector_count++;
1812
1813 list_for_each(lh, &dev->mode_config.encoder_list)
1814 encoder_count++;
1815 } else {
1816
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001817 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001818 crtc_count = mode_group->num_crtcs;
1819 connector_count = mode_group->num_connectors;
1820 encoder_count = mode_group->num_encoders;
1821 }
1822
1823 card_res->max_height = dev->mode_config.max_height;
1824 card_res->min_height = dev->mode_config.min_height;
1825 card_res->max_width = dev->mode_config.max_width;
1826 card_res->min_width = dev->mode_config.min_width;
1827
Dave Airlief453ba02008-11-07 14:05:41 -08001828 /* CRTCs */
1829 if (card_res->count_crtcs >= crtc_count) {
1830 copied = 0;
1831 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001832 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001833 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1834 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001835 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001836 if (put_user(crtc->base.id, crtc_id + copied)) {
1837 ret = -EFAULT;
1838 goto out;
1839 }
1840 copied++;
1841 }
1842 } else {
1843 for (i = 0; i < mode_group->num_crtcs; i++) {
1844 if (put_user(mode_group->id_list[i],
1845 crtc_id + copied)) {
1846 ret = -EFAULT;
1847 goto out;
1848 }
1849 copied++;
1850 }
1851 }
1852 }
1853 card_res->count_crtcs = crtc_count;
1854
1855 /* Encoders */
1856 if (card_res->count_encoders >= encoder_count) {
1857 copied = 0;
1858 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001859 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001860 list_for_each_entry(encoder,
1861 &dev->mode_config.encoder_list,
1862 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001863 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001864 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001865 if (put_user(encoder->base.id, encoder_id +
1866 copied)) {
1867 ret = -EFAULT;
1868 goto out;
1869 }
1870 copied++;
1871 }
1872 } else {
1873 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1874 if (put_user(mode_group->id_list[i],
1875 encoder_id + copied)) {
1876 ret = -EFAULT;
1877 goto out;
1878 }
1879 copied++;
1880 }
1881
1882 }
1883 }
1884 card_res->count_encoders = encoder_count;
1885
1886 /* Connectors */
1887 if (card_res->count_connectors >= connector_count) {
1888 copied = 0;
1889 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001890 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001891 list_for_each_entry(connector,
1892 &dev->mode_config.connector_list,
1893 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001894 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1895 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001896 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001897 if (put_user(connector->base.id,
1898 connector_id + copied)) {
1899 ret = -EFAULT;
1900 goto out;
1901 }
1902 copied++;
1903 }
1904 } else {
1905 int start = mode_group->num_crtcs +
1906 mode_group->num_encoders;
1907 for (i = start; i < start + mode_group->num_connectors; i++) {
1908 if (put_user(mode_group->id_list[i],
1909 connector_id + copied)) {
1910 ret = -EFAULT;
1911 goto out;
1912 }
1913 copied++;
1914 }
1915 }
1916 }
1917 card_res->count_connectors = connector_count;
1918
Jerome Glisse94401062010-07-15 15:43:25 -04001919 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001920 card_res->count_connectors, card_res->count_encoders);
1921
1922out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001923 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001924 return ret;
1925}
1926
1927/**
1928 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001929 * @dev: drm device for the ioctl
1930 * @data: data pointer for the ioctl
1931 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001932 *
Dave Airlief453ba02008-11-07 14:05:41 -08001933 * Construct a CRTC configuration structure to return to the user.
1934 *
1935 * Called by the user via ioctl.
1936 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001937 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001938 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001939 */
1940int drm_mode_getcrtc(struct drm_device *dev,
1941 void *data, struct drm_file *file_priv)
1942{
1943 struct drm_mode_crtc *crtc_resp = data;
1944 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001945
Dave Airliefb3b06c2011-02-08 13:55:21 +10001946 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1947 return -EINVAL;
1948
Rob Clarka2b34e22013-10-05 16:36:52 -04001949 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001950 if (!crtc)
1951 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001952
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001953 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08001954 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07001955 if (crtc->primary->fb)
1956 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08001957 else
1958 crtc_resp->fb_id = 0;
1959
Daniel Vetter31c946e2015-02-22 12:24:17 +01001960 if (crtc->state) {
1961 crtc_resp->x = crtc->primary->state->src_x >> 16;
1962 crtc_resp->y = crtc->primary->state->src_y >> 16;
1963 if (crtc->state->enable) {
Daniel Stone934a8a82015-05-22 13:34:48 +01001964 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->state->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +01001965 crtc_resp->mode_valid = 1;
Dave Airlief453ba02008-11-07 14:05:41 -08001966
Daniel Vetter31c946e2015-02-22 12:24:17 +01001967 } else {
1968 crtc_resp->mode_valid = 0;
1969 }
Dave Airlief453ba02008-11-07 14:05:41 -08001970 } else {
Daniel Vetter31c946e2015-02-22 12:24:17 +01001971 crtc_resp->x = crtc->x;
1972 crtc_resp->y = crtc->y;
1973 if (crtc->enabled) {
Daniel Stone934a8a82015-05-22 13:34:48 +01001974 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +01001975 crtc_resp->mode_valid = 1;
1976
1977 } else {
1978 crtc_resp->mode_valid = 0;
1979 }
Dave Airlief453ba02008-11-07 14:05:41 -08001980 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001981 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08001982
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001983 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001984}
1985
Damien Lespiau61d8e322013-09-25 16:45:22 +01001986static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1987 const struct drm_file *file_priv)
1988{
1989 /*
1990 * If user-space hasn't configured the driver to expose the stereo 3D
1991 * modes, don't expose them.
1992 */
1993 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1994 return false;
1995
1996 return true;
1997}
1998
Daniel Vetterabd69c52014-11-25 23:50:05 +01001999static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
2000{
2001 /* For atomic drivers only state objects are synchronously updated and
2002 * protected by modeset locks, so check those first. */
2003 if (connector->state)
2004 return connector->state->best_encoder;
2005 return connector->encoder;
2006}
2007
Rob Clark95cbf112014-12-18 16:01:49 -05002008/* helper for getconnector and getproperties ioctls */
Rob Clark88a48e22014-12-18 16:01:50 -05002009static int get_properties(struct drm_mode_object *obj, bool atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002010 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
2011 uint32_t *arg_count_props)
2012{
Rob Clark88a48e22014-12-18 16:01:50 -05002013 int props_count;
2014 int i, ret, copied;
2015
2016 props_count = obj->properties->count;
2017 if (!atomic)
2018 props_count -= obj->properties->atomic_count;
Rob Clark95cbf112014-12-18 16:01:49 -05002019
2020 if ((*arg_count_props >= props_count) && props_count) {
Rob Clark88a48e22014-12-18 16:01:50 -05002021 for (i = 0, copied = 0; copied < props_count; i++) {
Rob Clark95cbf112014-12-18 16:01:49 -05002022 struct drm_property *prop = obj->properties->properties[i];
2023 uint64_t val;
2024
Rob Clark88a48e22014-12-18 16:01:50 -05002025 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
2026 continue;
2027
Rob Clark95cbf112014-12-18 16:01:49 -05002028 ret = drm_object_property_get_value(obj, prop, &val);
2029 if (ret)
2030 return ret;
2031
2032 if (put_user(prop->base.id, prop_ptr + copied))
2033 return -EFAULT;
2034
2035 if (put_user(val, prop_values + copied))
2036 return -EFAULT;
2037
2038 copied++;
2039 }
2040 }
2041 *arg_count_props = props_count;
2042
2043 return 0;
2044}
2045
Dave Airlief453ba02008-11-07 14:05:41 -08002046/**
2047 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002048 * @dev: drm device for the ioctl
2049 * @data: data pointer for the ioctl
2050 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002051 *
Dave Airlief453ba02008-11-07 14:05:41 -08002052 * Construct a connector configuration structure to return to the user.
2053 *
2054 * Called by the user via ioctl.
2055 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002056 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002057 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002058 */
2059int drm_mode_getconnector(struct drm_device *dev, void *data,
2060 struct drm_file *file_priv)
2061{
2062 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002063 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002064 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08002065 struct drm_display_mode *mode;
2066 int mode_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002067 int encoders_count = 0;
2068 int ret = 0;
2069 int copied = 0;
2070 int i;
2071 struct drm_mode_modeinfo u_mode;
2072 struct drm_mode_modeinfo __user *mode_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002073 uint32_t __user *encoder_ptr;
2074
Dave Airliefb3b06c2011-02-08 13:55:21 +10002075 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2076 return -EINVAL;
2077
Dave Airlief453ba02008-11-07 14:05:41 -08002078 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2079
Jerome Glisse94401062010-07-15 15:43:25 -04002080 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002081
Daniel Vetter7b240562012-12-12 00:35:33 +01002082 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002083
Rob Clarka2b34e22013-10-05 16:36:52 -04002084 connector = drm_connector_find(dev, out_resp->connector_id);
2085 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002086 ret = -ENOENT;
Tommi Rantala04bdf442015-04-03 10:45:29 +03002087 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08002088 }
Dave Airlief453ba02008-11-07 14:05:41 -08002089
Thierry Reding01073b02014-12-10 13:03:38 +01002090 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
2091 if (connector->encoder_ids[i] != 0)
Dave Airlief453ba02008-11-07 14:05:41 -08002092 encoders_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002093
2094 if (out_resp->count_modes == 0) {
2095 connector->funcs->fill_modes(connector,
2096 dev->mode_config.max_width,
2097 dev->mode_config.max_height);
2098 }
2099
2100 /* delayed so we get modes regardless of pre-fill_modes state */
2101 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002102 if (drm_mode_expose_to_userspace(mode, file_priv))
2103 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002104
2105 out_resp->connector_id = connector->base.id;
2106 out_resp->connector_type = connector->connector_type;
2107 out_resp->connector_type_id = connector->connector_type_id;
2108 out_resp->mm_width = connector->display_info.width_mm;
2109 out_resp->mm_height = connector->display_info.height_mm;
2110 out_resp->subpixel = connector->display_info.subpixel_order;
2111 out_resp->connection = connector->status;
Daniel Vetter2caa80e2015-02-22 11:38:36 +01002112
2113 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002114 encoder = drm_connector_get_encoder(connector);
2115 if (encoder)
2116 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002117 else
2118 out_resp->encoder_id = 0;
2119
2120 /*
2121 * This ioctl is called twice, once to determine how much space is
2122 * needed, and the 2nd time to fill it.
2123 */
2124 if ((out_resp->count_modes >= mode_count) && mode_count) {
2125 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002126 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002127 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002128 if (!drm_mode_expose_to_userspace(mode, file_priv))
2129 continue;
2130
Daniel Stone934a8a82015-05-22 13:34:48 +01002131 drm_mode_convert_to_umode(&u_mode, mode);
Dave Airlief453ba02008-11-07 14:05:41 -08002132 if (copy_to_user(mode_ptr + copied,
2133 &u_mode, sizeof(u_mode))) {
2134 ret = -EFAULT;
2135 goto out;
2136 }
2137 copied++;
2138 }
2139 }
2140 out_resp->count_modes = mode_count;
2141
Rob Clark88a48e22014-12-18 16:01:50 -05002142 ret = get_properties(&connector->base, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002143 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2144 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2145 &out_resp->count_props);
2146 if (ret)
2147 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002148
2149 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2150 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002151 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002152 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2153 if (connector->encoder_ids[i] != 0) {
2154 if (put_user(connector->encoder_ids[i],
2155 encoder_ptr + copied)) {
2156 ret = -EFAULT;
2157 goto out;
2158 }
2159 copied++;
2160 }
2161 }
2162 }
2163 out_resp->count_encoders = encoders_count;
2164
2165out:
Rob Clarkccfc0862014-12-18 16:01:48 -05002166 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Tommi Rantala04bdf442015-04-03 10:45:29 +03002167
2168out_unlock:
Daniel Vetter7b240562012-12-12 00:35:33 +01002169 mutex_unlock(&dev->mode_config.mutex);
2170
Dave Airlief453ba02008-11-07 14:05:41 -08002171 return ret;
2172}
2173
Daniel Vetterabd69c52014-11-25 23:50:05 +01002174static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2175{
2176 struct drm_connector *connector;
2177 struct drm_device *dev = encoder->dev;
2178 bool uses_atomic = false;
2179
2180 /* For atomic drivers only state objects are synchronously updated and
2181 * protected by modeset locks, so check those first. */
2182 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2183 if (!connector->state)
2184 continue;
2185
2186 uses_atomic = true;
2187
2188 if (connector->state->best_encoder != encoder)
2189 continue;
2190
2191 return connector->state->crtc;
2192 }
2193
2194 /* Don't return stale data (e.g. pending async disable). */
2195 if (uses_atomic)
2196 return NULL;
2197
2198 return encoder->crtc;
2199}
2200
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002201/**
2202 * drm_mode_getencoder - get encoder configuration
2203 * @dev: drm device for the ioctl
2204 * @data: data pointer for the ioctl
2205 * @file_priv: drm file for the ioctl call
2206 *
2207 * Construct a encoder configuration structure to return to the user.
2208 *
2209 * Called by the user via ioctl.
2210 *
2211 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002212 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002213 */
Dave Airlief453ba02008-11-07 14:05:41 -08002214int drm_mode_getencoder(struct drm_device *dev, void *data,
2215 struct drm_file *file_priv)
2216{
2217 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002218 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002219 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002220
Dave Airliefb3b06c2011-02-08 13:55:21 +10002221 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2222 return -EINVAL;
2223
Rob Clarka2b34e22013-10-05 16:36:52 -04002224 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002225 if (!encoder)
2226 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002227
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002228 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002229 crtc = drm_encoder_get_crtc(encoder);
2230 if (crtc)
2231 enc_resp->crtc_id = crtc->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002232 else
2233 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002234 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2235
Dave Airlief453ba02008-11-07 14:05:41 -08002236 enc_resp->encoder_type = encoder->encoder_type;
2237 enc_resp->encoder_id = encoder->base.id;
2238 enc_resp->possible_crtcs = encoder->possible_crtcs;
2239 enc_resp->possible_clones = encoder->possible_clones;
2240
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002241 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002242}
2243
2244/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002245 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002246 * @dev: DRM device
2247 * @data: ioctl data
2248 * @file_priv: DRM file info
2249 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002250 * Construct a list of plane ids to return to the user.
2251 *
2252 * Called by the user via ioctl.
2253 *
2254 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002255 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002256 */
2257int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002258 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002259{
2260 struct drm_mode_get_plane_res *plane_resp = data;
2261 struct drm_mode_config *config;
2262 struct drm_plane *plane;
2263 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002264 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002265 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002266
2267 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2268 return -EINVAL;
2269
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002270 config = &dev->mode_config;
2271
Matt Roper681e7ec2014-04-01 15:22:42 -07002272 if (file_priv->universal_planes)
2273 num_planes = config->num_total_plane;
2274 else
2275 num_planes = config->num_overlay_plane;
2276
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002277 /*
2278 * This ioctl is called twice, once to determine how much space is
2279 * needed, and the 2nd time to fill it.
2280 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002281 if (num_planes &&
2282 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002283 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002284
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002285 /* Plane lists are invariant, no locking needed. */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002286 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002287 /*
2288 * Unless userspace set the 'universal planes'
2289 * capability bit, only advertise overlays.
2290 */
2291 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2292 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002293 continue;
2294
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002295 if (put_user(plane->base.id, plane_ptr + copied))
2296 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002297 copied++;
2298 }
2299 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002300 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002301
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002302 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002303}
2304
2305/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002306 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002307 * @dev: DRM device
2308 * @data: ioctl data
2309 * @file_priv: DRM file info
2310 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002311 * Construct a plane configuration structure to return to the user.
2312 *
2313 * Called by the user via ioctl.
2314 *
2315 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002316 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002317 */
2318int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002319 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002320{
2321 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002322 struct drm_plane *plane;
2323 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002324
2325 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2326 return -EINVAL;
2327
Rob Clarka2b34e22013-10-05 16:36:52 -04002328 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002329 if (!plane)
2330 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002331
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002332 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002333 if (plane->crtc)
2334 plane_resp->crtc_id = plane->crtc->base.id;
2335 else
2336 plane_resp->crtc_id = 0;
2337
2338 if (plane->fb)
2339 plane_resp->fb_id = plane->fb->base.id;
2340 else
2341 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002342 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002343
2344 plane_resp->plane_id = plane->base.id;
2345 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002346 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002347
2348 /*
2349 * This ioctl is called twice, once to determine how much space is
2350 * needed, and the 2nd time to fill it.
2351 */
2352 if (plane->format_count &&
2353 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002354 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002355 if (copy_to_user(format_ptr,
2356 plane->format_types,
2357 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002358 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002359 }
2360 }
2361 plane_resp->count_format_types = plane->format_count;
2362
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002363 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002364}
2365
Laurent Pinchartead86102015-03-05 02:25:43 +02002366/**
2367 * drm_plane_check_pixel_format - Check if the plane supports the pixel format
2368 * @plane: plane to check for format support
2369 * @format: the pixel format
2370 *
2371 * Returns:
2372 * Zero of @plane has @format in its list of supported pixel formats, -EINVAL
2373 * otherwise.
2374 */
2375int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
2376{
2377 unsigned int i;
2378
2379 for (i = 0; i < plane->format_count; i++) {
2380 if (format == plane->format_types[i])
2381 return 0;
2382 }
2383
2384 return -EINVAL;
2385}
2386
Matt Roperb36552b2014-06-10 08:28:09 -07002387/*
2388 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002389 *
Matt Roperb36552b2014-06-10 08:28:09 -07002390 * Note that we assume an extra reference has already been taken on fb. If the
2391 * update fails, this reference will be dropped before return; if it succeeds,
2392 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002393 *
Matt Roperb36552b2014-06-10 08:28:09 -07002394 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002395 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002396static int __setplane_internal(struct drm_plane *plane,
2397 struct drm_crtc *crtc,
2398 struct drm_framebuffer *fb,
2399 int32_t crtc_x, int32_t crtc_y,
2400 uint32_t crtc_w, uint32_t crtc_h,
2401 /* src_{x,y,w,h} values are 16.16 fixed point */
2402 uint32_t src_x, uint32_t src_y,
2403 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002404{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002405 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002406 unsigned int fb_width, fb_height;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002407
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002408 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002409 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002410 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002411 ret = plane->funcs->disable_plane(plane);
2412 if (!ret) {
2413 plane->crtc = NULL;
2414 plane->fb = NULL;
2415 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002416 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002417 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002418 goto out;
2419 }
2420
Matt Roper7f994f32014-05-29 08:06:51 -07002421 /* Check whether this plane is usable on this CRTC */
2422 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2423 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2424 ret = -EINVAL;
2425 goto out;
2426 }
2427
Ville Syrjälä62443be2011-12-20 00:06:47 +02002428 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +02002429 ret = drm_plane_check_pixel_format(plane, fb->pixel_format);
2430 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002431 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2432 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002433 goto out;
2434 }
2435
Matt Roper3968be92015-04-13 11:06:13 -07002436 /* Give drivers some help against integer overflows */
2437 if (crtc_w > INT_MAX ||
2438 crtc_x > INT_MAX - (int32_t) crtc_w ||
2439 crtc_h > INT_MAX ||
2440 crtc_y > INT_MAX - (int32_t) crtc_h) {
2441 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2442 crtc_w, crtc_h, crtc_x, crtc_y);
2443 return -ERANGE;
2444 }
2445
2446
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002447 fb_width = fb->width << 16;
2448 fb_height = fb->height << 16;
2449
2450 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002451 if (src_w > fb_width ||
2452 src_x > fb_width - src_w ||
2453 src_h > fb_height ||
2454 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002455 DRM_DEBUG_KMS("Invalid source coordinates "
2456 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002457 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2458 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2459 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2460 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002461 ret = -ENOSPC;
2462 goto out;
2463 }
2464
Daniel Vetter3d30a592014-07-27 13:42:42 +02002465 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002466 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002467 crtc_x, crtc_y, crtc_w, crtc_h,
2468 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002469 if (!ret) {
2470 plane->crtc = crtc;
2471 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002472 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002473 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002474 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002475 }
2476
2477out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002478 if (fb)
2479 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002480 if (plane->old_fb)
2481 drm_framebuffer_unreference(plane->old_fb);
2482 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002483
2484 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002485}
Matt Roperb36552b2014-06-10 08:28:09 -07002486
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002487static int setplane_internal(struct drm_plane *plane,
2488 struct drm_crtc *crtc,
2489 struct drm_framebuffer *fb,
2490 int32_t crtc_x, int32_t crtc_y,
2491 uint32_t crtc_w, uint32_t crtc_h,
2492 /* src_{x,y,w,h} values are 16.16 fixed point */
2493 uint32_t src_x, uint32_t src_y,
2494 uint32_t src_w, uint32_t src_h)
2495{
2496 int ret;
2497
2498 drm_modeset_lock_all(plane->dev);
2499 ret = __setplane_internal(plane, crtc, fb,
2500 crtc_x, crtc_y, crtc_w, crtc_h,
2501 src_x, src_y, src_w, src_h);
2502 drm_modeset_unlock_all(plane->dev);
2503
2504 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002505}
2506
2507/**
2508 * drm_mode_setplane - configure a plane's configuration
2509 * @dev: DRM device
2510 * @data: ioctl data*
2511 * @file_priv: DRM file info
2512 *
2513 * Set plane configuration, including placement, fb, scaling, and other factors.
2514 * Or pass a NULL fb to disable (planes may be disabled without providing a
2515 * valid crtc).
2516 *
2517 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002518 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002519 */
2520int drm_mode_setplane(struct drm_device *dev, void *data,
2521 struct drm_file *file_priv)
2522{
2523 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002524 struct drm_plane *plane;
2525 struct drm_crtc *crtc = NULL;
2526 struct drm_framebuffer *fb = NULL;
2527
2528 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2529 return -EINVAL;
2530
Matt Roperb36552b2014-06-10 08:28:09 -07002531 /*
2532 * First, find the plane, crtc, and fb objects. If not available,
2533 * we don't bother to call the driver.
2534 */
Rob Clark933f6222014-11-25 20:33:11 -05002535 plane = drm_plane_find(dev, plane_req->plane_id);
2536 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002537 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2538 plane_req->plane_id);
2539 return -ENOENT;
2540 }
Matt Roperb36552b2014-06-10 08:28:09 -07002541
2542 if (plane_req->fb_id) {
2543 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2544 if (!fb) {
2545 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2546 plane_req->fb_id);
2547 return -ENOENT;
2548 }
2549
Rob Clark933f6222014-11-25 20:33:11 -05002550 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2551 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002552 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2553 plane_req->crtc_id);
2554 return -ENOENT;
2555 }
Matt Roperb36552b2014-06-10 08:28:09 -07002556 }
2557
Matt Roper161d0dc2014-06-10 08:28:10 -07002558 /*
2559 * setplane_internal will take care of deref'ing either the old or new
2560 * framebuffer depending on success.
2561 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002562 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002563 plane_req->crtc_x, plane_req->crtc_y,
2564 plane_req->crtc_w, plane_req->crtc_h,
2565 plane_req->src_x, plane_req->src_y,
2566 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002567}
2568
2569/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002570 * drm_mode_set_config_internal - helper to call ->set_config
2571 * @set: modeset config to set
2572 *
2573 * This is a little helper to wrap internal calls to the ->set_config driver
2574 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +01002575 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002576 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002577 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002578 */
2579int drm_mode_set_config_internal(struct drm_mode_set *set)
2580{
2581 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002582 struct drm_framebuffer *fb;
2583 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002584 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002585
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002586 /*
2587 * NOTE: ->set_config can also disable other crtcs (if we steal all
2588 * connectors from it), hence we need to refcount the fbs across all
2589 * crtcs. Atomic modeset will have saner semantics ...
2590 */
2591 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002592 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002593
Daniel Vetterb0d12322012-12-11 01:07:12 +01002594 fb = set->fb;
2595
2596 ret = crtc->funcs->set_config(set);
2597 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002598 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002599 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002600 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002601
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002602 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002603 if (tmp->primary->fb)
2604 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002605 if (tmp->primary->old_fb)
2606 drm_framebuffer_unreference(tmp->primary->old_fb);
2607 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002608 }
2609
2610 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002611}
2612EXPORT_SYMBOL(drm_mode_set_config_internal);
2613
Matt Roperaf936292014-04-01 15:22:34 -07002614/**
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002615 * drm_crtc_get_hv_timing - Fetches hdisplay/vdisplay for given mode
2616 * @mode: mode to query
2617 * @hdisplay: hdisplay value to fill in
2618 * @vdisplay: vdisplay value to fill in
2619 *
2620 * The vdisplay value will be doubled if the specified mode is a stereo mode of
2621 * the appropriate layout.
2622 */
2623void drm_crtc_get_hv_timing(const struct drm_display_mode *mode,
2624 int *hdisplay, int *vdisplay)
2625{
2626 struct drm_display_mode adjusted;
2627
2628 drm_mode_copy(&adjusted, mode);
2629 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY);
2630 *hdisplay = adjusted.crtc_hdisplay;
2631 *vdisplay = adjusted.crtc_vdisplay;
2632}
2633EXPORT_SYMBOL(drm_crtc_get_hv_timing);
2634
2635/**
Matt Roperaf936292014-04-01 15:22:34 -07002636 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2637 * CRTC viewport
2638 * @crtc: CRTC that framebuffer will be displayed on
2639 * @x: x panning
2640 * @y: y panning
2641 * @mode: mode that framebuffer will be displayed under
2642 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002643 */
Matt Roperaf936292014-04-01 15:22:34 -07002644int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2645 int x, int y,
2646 const struct drm_display_mode *mode,
2647 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002648
2649{
2650 int hdisplay, vdisplay;
2651
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002652 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002653
Damien Lespiauc11e9282013-09-25 16:45:30 +01002654 if (crtc->invert_dimensions)
2655 swap(hdisplay, vdisplay);
2656
2657 if (hdisplay > fb->width ||
2658 vdisplay > fb->height ||
2659 x > fb->width - hdisplay ||
2660 y > fb->height - vdisplay) {
2661 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2662 fb->width, fb->height, hdisplay, vdisplay, x, y,
2663 crtc->invert_dimensions ? " (inverted)" : "");
2664 return -ENOSPC;
2665 }
2666
2667 return 0;
2668}
Matt Roperaf936292014-04-01 15:22:34 -07002669EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002670
Daniel Vetter2d13b672012-12-11 13:47:23 +01002671/**
Dave Airlief453ba02008-11-07 14:05:41 -08002672 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002673 * @dev: drm device for the ioctl
2674 * @data: data pointer for the ioctl
2675 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002676 *
Dave Airlief453ba02008-11-07 14:05:41 -08002677 * Build a new CRTC configuration based on user request.
2678 *
2679 * Called by the user via ioctl.
2680 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002681 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002682 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002683 */
2684int drm_mode_setcrtc(struct drm_device *dev, void *data,
2685 struct drm_file *file_priv)
2686{
2687 struct drm_mode_config *config = &dev->mode_config;
2688 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002689 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002690 struct drm_connector **connector_set = NULL, *connector;
2691 struct drm_framebuffer *fb = NULL;
2692 struct drm_display_mode *mode = NULL;
2693 struct drm_mode_set set;
2694 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002695 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002696 int i;
2697
Dave Airliefb3b06c2011-02-08 13:55:21 +10002698 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2699 return -EINVAL;
2700
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002701 /* For some reason crtc x/y offsets are signed internally. */
2702 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2703 return -ERANGE;
2704
Daniel Vetter84849902012-12-02 00:28:11 +01002705 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002706 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2707 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002708 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002709 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002710 goto out;
2711 }
Jerome Glisse94401062010-07-15 15:43:25 -04002712 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002713
2714 if (crtc_req->mode_valid) {
2715 /* If we have a mode we need a framebuffer. */
2716 /* If we pass -1, set the mode with the currently bound fb */
2717 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002718 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002719 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2720 ret = -EINVAL;
2721 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002722 }
Matt Roperf4510a22014-04-01 15:22:40 -07002723 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002724 /* Make refcounting symmetric with the lookup path. */
2725 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002726 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002727 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2728 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002729 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2730 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002731 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002732 goto out;
2733 }
Dave Airlief453ba02008-11-07 14:05:41 -08002734 }
2735
2736 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002737 if (!mode) {
2738 ret = -ENOMEM;
2739 goto out;
2740 }
2741
Daniel Stone934a8a82015-05-22 13:34:48 +01002742 ret = drm_mode_convert_umode(mode, &crtc_req->mode);
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002743 if (ret) {
2744 DRM_DEBUG_KMS("Invalid mode\n");
2745 goto out;
2746 }
2747
Dave Airlief453ba02008-11-07 14:05:41 -08002748 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002749
Laurent Pinchart7eb5f302015-03-09 10:41:07 +02002750 /*
2751 * Check whether the primary plane supports the fb pixel format.
2752 * Drivers not implementing the universal planes API use a
2753 * default formats list provided by the DRM core which doesn't
2754 * match real hardware capabilities. Skip the check in that
2755 * case.
2756 */
2757 if (!crtc->primary->format_default) {
2758 ret = drm_plane_check_pixel_format(crtc->primary,
2759 fb->pixel_format);
2760 if (ret) {
2761 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2762 drm_get_format_name(fb->pixel_format));
2763 goto out;
2764 }
2765 }
2766
Damien Lespiauc11e9282013-09-25 16:45:30 +01002767 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2768 mode, fb);
2769 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002770 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002771
Dave Airlief453ba02008-11-07 14:05:41 -08002772 }
2773
2774 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002775 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002776 ret = -EINVAL;
2777 goto out;
2778 }
2779
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002780 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002781 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002782 crtc_req->count_connectors);
2783 ret = -EINVAL;
2784 goto out;
2785 }
2786
2787 if (crtc_req->count_connectors > 0) {
2788 u32 out_id;
2789
2790 /* Avoid unbounded kernel memory allocation */
2791 if (crtc_req->count_connectors > config->num_connector) {
2792 ret = -EINVAL;
2793 goto out;
2794 }
2795
Thierry Reding2f6c5382014-12-10 13:03:36 +01002796 connector_set = kmalloc_array(crtc_req->count_connectors,
2797 sizeof(struct drm_connector *),
2798 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08002799 if (!connector_set) {
2800 ret = -ENOMEM;
2801 goto out;
2802 }
2803
2804 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002805 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002806 if (get_user(out_id, &set_connectors_ptr[i])) {
2807 ret = -EFAULT;
2808 goto out;
2809 }
2810
Rob Clarka2b34e22013-10-05 16:36:52 -04002811 connector = drm_connector_find(dev, out_id);
2812 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002813 DRM_DEBUG_KMS("Connector id %d unknown\n",
2814 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002815 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002816 goto out;
2817 }
Jerome Glisse94401062010-07-15 15:43:25 -04002818 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2819 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002820 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002821
2822 connector_set[i] = connector;
2823 }
2824 }
2825
2826 set.crtc = crtc;
2827 set.x = crtc_req->x;
2828 set.y = crtc_req->y;
2829 set.mode = mode;
2830 set.connectors = connector_set;
2831 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002832 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002833 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002834
2835out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002836 if (fb)
2837 drm_framebuffer_unreference(fb);
2838
Dave Airlief453ba02008-11-07 14:05:41 -08002839 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002840 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002841 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002842 return ret;
2843}
2844
Matt Roper161d0dc2014-06-10 08:28:10 -07002845/**
2846 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2847 * universal plane handler call
2848 * @crtc: crtc to update cursor for
2849 * @req: data pointer for the ioctl
2850 * @file_priv: drm file for the ioctl call
2851 *
2852 * Legacy cursor ioctl's work directly with driver buffer handles. To
2853 * translate legacy ioctl calls into universal plane handler calls, we need to
2854 * wrap the native buffer handle in a drm_framebuffer.
2855 *
2856 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2857 * buffer with a pitch of 4*width; the universal plane interface should be used
2858 * directly in cases where the hardware can support other buffer settings and
2859 * userspace wants to make use of these capabilities.
2860 *
2861 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002862 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002863 */
2864static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2865 struct drm_mode_cursor2 *req,
2866 struct drm_file *file_priv)
2867{
2868 struct drm_device *dev = crtc->dev;
2869 struct drm_framebuffer *fb = NULL;
2870 struct drm_mode_fb_cmd2 fbreq = {
2871 .width = req->width,
2872 .height = req->height,
2873 .pixel_format = DRM_FORMAT_ARGB8888,
2874 .pitches = { req->width * 4 },
2875 .handles = { req->handle },
2876 };
2877 int32_t crtc_x, crtc_y;
2878 uint32_t crtc_w = 0, crtc_h = 0;
2879 uint32_t src_w = 0, src_h = 0;
2880 int ret = 0;
2881
2882 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002883 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002884
2885 /*
2886 * Obtain fb we'll be using (either new or existing) and take an extra
2887 * reference to it if fb != null. setplane will take care of dropping
2888 * the reference if the plane update fails.
2889 */
2890 if (req->flags & DRM_MODE_CURSOR_BO) {
2891 if (req->handle) {
Chris Wilson9a6f5132015-02-25 13:45:26 +00002892 fb = internal_framebuffer_create(dev, &fbreq, file_priv);
Matt Roper161d0dc2014-06-10 08:28:10 -07002893 if (IS_ERR(fb)) {
2894 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2895 return PTR_ERR(fb);
2896 }
Matt Roper161d0dc2014-06-10 08:28:10 -07002897 } else {
2898 fb = NULL;
2899 }
2900 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002901 fb = crtc->cursor->fb;
2902 if (fb)
2903 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002904 }
2905
2906 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2907 crtc_x = req->x;
2908 crtc_y = req->y;
2909 } else {
2910 crtc_x = crtc->cursor_x;
2911 crtc_y = crtc->cursor_y;
2912 }
2913
2914 if (fb) {
2915 crtc_w = fb->width;
2916 crtc_h = fb->height;
2917 src_w = fb->width << 16;
2918 src_h = fb->height << 16;
2919 }
2920
2921 /*
2922 * setplane_internal will take care of deref'ing either the old or new
2923 * framebuffer depending on success.
2924 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002925 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002926 crtc_x, crtc_y, crtc_w, crtc_h,
2927 0, 0, src_w, src_h);
2928
2929 /* Update successful; save new cursor position, if necessary */
2930 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2931 crtc->cursor_x = req->x;
2932 crtc->cursor_y = req->y;
2933 }
2934
2935 return ret;
2936}
2937
Dave Airlie4c813d42013-06-20 11:48:52 +10002938static int drm_mode_cursor_common(struct drm_device *dev,
2939 struct drm_mode_cursor2 *req,
2940 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002941{
Dave Airlief453ba02008-11-07 14:05:41 -08002942 struct drm_crtc *crtc;
2943 int ret = 0;
2944
Dave Airliefb3b06c2011-02-08 13:55:21 +10002945 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2946 return -EINVAL;
2947
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002948 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002949 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002950
Rob Clarka2b34e22013-10-05 16:36:52 -04002951 crtc = drm_crtc_find(dev, req->crtc_id);
2952 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002953 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002954 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002955 }
Dave Airlief453ba02008-11-07 14:05:41 -08002956
Matt Roper161d0dc2014-06-10 08:28:10 -07002957 /*
2958 * If this crtc has a universal cursor plane, call that plane's update
2959 * handler rather than using legacy cursor handlers.
2960 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01002961 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002962 if (crtc->cursor) {
2963 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2964 goto out;
2965 }
2966
Dave Airlief453ba02008-11-07 14:05:41 -08002967 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002968 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002969 ret = -ENXIO;
2970 goto out;
2971 }
2972 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002973 if (crtc->funcs->cursor_set2)
2974 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2975 req->width, req->height, req->hot_x, req->hot_y);
2976 else
2977 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2978 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002979 }
2980
2981 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2982 if (crtc->funcs->cursor_move) {
2983 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2984 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002985 ret = -EFAULT;
2986 goto out;
2987 }
2988 }
2989out:
Daniel Vetterd059f652014-07-25 18:07:40 +02002990 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01002991
Dave Airlief453ba02008-11-07 14:05:41 -08002992 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10002993
2994}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002995
2996
2997/**
2998 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2999 * @dev: drm device for the ioctl
3000 * @data: data pointer for the ioctl
3001 * @file_priv: drm file for the ioctl call
3002 *
3003 * Set the cursor configuration based on user request.
3004 *
3005 * Called by the user via ioctl.
3006 *
3007 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003008 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003009 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003010int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003011 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10003012{
3013 struct drm_mode_cursor *req = data;
3014 struct drm_mode_cursor2 new_req;
3015
3016 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
3017 new_req.hot_x = new_req.hot_y = 0;
3018
3019 return drm_mode_cursor_common(dev, &new_req, file_priv);
3020}
3021
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003022/**
3023 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
3024 * @dev: drm device for the ioctl
3025 * @data: data pointer for the ioctl
3026 * @file_priv: drm file for the ioctl call
3027 *
3028 * Set the cursor configuration based on user request. This implements the 2nd
3029 * version of the cursor ioctl, which allows userspace to additionally specify
3030 * the hotspot of the pointer.
3031 *
3032 * Called by the user via ioctl.
3033 *
3034 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003035 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003036 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003037int drm_mode_cursor2_ioctl(struct drm_device *dev,
3038 void *data, struct drm_file *file_priv)
3039{
3040 struct drm_mode_cursor2 *req = data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01003041
Dave Airlie4c813d42013-06-20 11:48:52 +10003042 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003043}
3044
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003045/**
3046 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
3047 * @bpp: bits per pixels
3048 * @depth: bit depth per pixel
3049 *
3050 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
3051 * Useful in fbdev emulation code, since that deals in those values.
3052 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003053uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
3054{
3055 uint32_t fmt;
3056
3057 switch (bpp) {
3058 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02003059 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003060 break;
3061 case 16:
3062 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003063 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003064 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003065 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003066 break;
3067 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003068 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003069 break;
3070 case 32:
3071 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003072 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003073 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003074 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003075 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003076 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003077 break;
3078 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003079 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3080 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003081 break;
3082 }
3083
3084 return fmt;
3085}
3086EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3087
Dave Airlief453ba02008-11-07 14:05:41 -08003088/**
3089 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003090 * @dev: drm device for the ioctl
3091 * @data: data pointer for the ioctl
3092 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003093 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003094 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003095 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003096 *
3097 * Called by the user via ioctl.
3098 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003099 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003100 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003101 */
3102int drm_mode_addfb(struct drm_device *dev,
3103 void *data, struct drm_file *file_priv)
3104{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003105 struct drm_mode_fb_cmd *or = data;
3106 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003107 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003108
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003109 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003110 r.fb_id = or->fb_id;
3111 r.width = or->width;
3112 r.height = or->height;
3113 r.pitches[0] = or->pitch;
3114 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3115 r.handles[0] = or->handle;
3116
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003117 ret = drm_mode_addfb2(dev, &r, file_priv);
3118 if (ret)
3119 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003120
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003121 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003122
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003123 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003124}
3125
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003126static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003127{
3128 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3129
3130 switch (format) {
3131 case DRM_FORMAT_C8:
3132 case DRM_FORMAT_RGB332:
3133 case DRM_FORMAT_BGR233:
3134 case DRM_FORMAT_XRGB4444:
3135 case DRM_FORMAT_XBGR4444:
3136 case DRM_FORMAT_RGBX4444:
3137 case DRM_FORMAT_BGRX4444:
3138 case DRM_FORMAT_ARGB4444:
3139 case DRM_FORMAT_ABGR4444:
3140 case DRM_FORMAT_RGBA4444:
3141 case DRM_FORMAT_BGRA4444:
3142 case DRM_FORMAT_XRGB1555:
3143 case DRM_FORMAT_XBGR1555:
3144 case DRM_FORMAT_RGBX5551:
3145 case DRM_FORMAT_BGRX5551:
3146 case DRM_FORMAT_ARGB1555:
3147 case DRM_FORMAT_ABGR1555:
3148 case DRM_FORMAT_RGBA5551:
3149 case DRM_FORMAT_BGRA5551:
3150 case DRM_FORMAT_RGB565:
3151 case DRM_FORMAT_BGR565:
3152 case DRM_FORMAT_RGB888:
3153 case DRM_FORMAT_BGR888:
3154 case DRM_FORMAT_XRGB8888:
3155 case DRM_FORMAT_XBGR8888:
3156 case DRM_FORMAT_RGBX8888:
3157 case DRM_FORMAT_BGRX8888:
3158 case DRM_FORMAT_ARGB8888:
3159 case DRM_FORMAT_ABGR8888:
3160 case DRM_FORMAT_RGBA8888:
3161 case DRM_FORMAT_BGRA8888:
3162 case DRM_FORMAT_XRGB2101010:
3163 case DRM_FORMAT_XBGR2101010:
3164 case DRM_FORMAT_RGBX1010102:
3165 case DRM_FORMAT_BGRX1010102:
3166 case DRM_FORMAT_ARGB2101010:
3167 case DRM_FORMAT_ABGR2101010:
3168 case DRM_FORMAT_RGBA1010102:
3169 case DRM_FORMAT_BGRA1010102:
3170 case DRM_FORMAT_YUYV:
3171 case DRM_FORMAT_YVYU:
3172 case DRM_FORMAT_UYVY:
3173 case DRM_FORMAT_VYUY:
3174 case DRM_FORMAT_AYUV:
3175 case DRM_FORMAT_NV12:
3176 case DRM_FORMAT_NV21:
3177 case DRM_FORMAT_NV16:
3178 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003179 case DRM_FORMAT_NV24:
3180 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003181 case DRM_FORMAT_YUV410:
3182 case DRM_FORMAT_YVU410:
3183 case DRM_FORMAT_YUV411:
3184 case DRM_FORMAT_YVU411:
3185 case DRM_FORMAT_YUV420:
3186 case DRM_FORMAT_YVU420:
3187 case DRM_FORMAT_YUV422:
3188 case DRM_FORMAT_YVU422:
3189 case DRM_FORMAT_YUV444:
3190 case DRM_FORMAT_YVU444:
3191 return 0;
3192 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003193 DRM_DEBUG_KMS("invalid pixel format %s\n",
3194 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003195 return -EINVAL;
3196 }
3197}
3198
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003199static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003200{
3201 int ret, hsub, vsub, num_planes, i;
3202
3203 ret = format_check(r);
3204 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003205 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3206 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003207 return ret;
3208 }
3209
3210 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3211 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3212 num_planes = drm_format_num_planes(r->pixel_format);
3213
3214 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003215 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003216 return -EINVAL;
3217 }
3218
3219 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003220 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003221 return -EINVAL;
3222 }
3223
3224 for (i = 0; i < num_planes; i++) {
3225 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003226 unsigned int height = r->height / (i != 0 ? vsub : 1);
3227 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003228
3229 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003230 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003231 return -EINVAL;
3232 }
3233
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003234 if ((uint64_t) width * cpp > UINT_MAX)
3235 return -ERANGE;
3236
3237 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3238 return -ERANGE;
3239
3240 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003241 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003242 return -EINVAL;
3243 }
Rob Clarke3eb3252015-02-05 14:41:52 +00003244
3245 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
3246 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
3247 r->modifier[i], i);
3248 return -EINVAL;
3249 }
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003250 }
3251
Daniel Vetterbbe16a42015-05-20 16:53:53 +02003252 for (i = num_planes; i < 4; i++) {
3253 if (r->modifier[i]) {
3254 DRM_DEBUG_KMS("non-zero modifier for unused plane %d\n", i);
3255 return -EINVAL;
3256 }
3257
3258 /* Pre-FB_MODIFIERS userspace didn't clear the structs properly. */
3259 if (!(r->flags & DRM_MODE_FB_MODIFIERS))
3260 continue;
3261
3262 if (r->handles[i]) {
3263 DRM_DEBUG_KMS("buffer object handle for unused plane %d\n", i);
3264 return -EINVAL;
3265 }
3266
3267 if (r->pitches[i]) {
3268 DRM_DEBUG_KMS("non-zero pitch for unused plane %d\n", i);
3269 return -EINVAL;
3270 }
3271
3272 if (r->offsets[i]) {
3273 DRM_DEBUG_KMS("non-zero offset for unused plane %d\n", i);
3274 return -EINVAL;
3275 }
3276 }
3277
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003278 return 0;
3279}
3280
Chris Wilson9a6f5132015-02-25 13:45:26 +00003281static struct drm_framebuffer *
3282internal_framebuffer_create(struct drm_device *dev,
3283 struct drm_mode_fb_cmd2 *r,
3284 struct drm_file *file_priv)
Matt Roperc394c2b2014-06-10 08:28:08 -07003285{
3286 struct drm_mode_config *config = &dev->mode_config;
3287 struct drm_framebuffer *fb;
3288 int ret;
3289
Rob Clarke3eb3252015-02-05 14:41:52 +00003290 if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
Matt Roperc394c2b2014-06-10 08:28:08 -07003291 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3292 return ERR_PTR(-EINVAL);
3293 }
3294
3295 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3296 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3297 r->width, config->min_width, config->max_width);
3298 return ERR_PTR(-EINVAL);
3299 }
3300 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3301 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3302 r->height, config->min_height, config->max_height);
3303 return ERR_PTR(-EINVAL);
3304 }
3305
Rob Clarke3eb3252015-02-05 14:41:52 +00003306 if (r->flags & DRM_MODE_FB_MODIFIERS &&
3307 !dev->mode_config.allow_fb_modifiers) {
3308 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
3309 return ERR_PTR(-EINVAL);
3310 }
3311
Matt Roperc394c2b2014-06-10 08:28:08 -07003312 ret = framebuffer_check(r);
3313 if (ret)
3314 return ERR_PTR(ret);
3315
3316 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3317 if (IS_ERR(fb)) {
3318 DRM_DEBUG_KMS("could not create framebuffer\n");
3319 return fb;
3320 }
3321
Matt Roperc394c2b2014-06-10 08:28:08 -07003322 return fb;
3323}
3324
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003325/**
3326 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003327 * @dev: drm device for the ioctl
3328 * @data: data pointer for the ioctl
3329 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003330 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003331 * Add a new FB to the specified CRTC, given a user request with format. This is
3332 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3333 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003334 *
3335 * Called by the user via ioctl.
3336 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003337 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003338 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003339 */
3340int drm_mode_addfb2(struct drm_device *dev,
3341 void *data, struct drm_file *file_priv)
3342{
Chris Wilson9a6f5132015-02-25 13:45:26 +00003343 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003344 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003345
Dave Airliefb3b06c2011-02-08 13:55:21 +10003346 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3347 return -EINVAL;
3348
Chris Wilson9a6f5132015-02-25 13:45:26 +00003349 fb = internal_framebuffer_create(dev, r, file_priv);
Matt Roperc394c2b2014-06-10 08:28:08 -07003350 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003351 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003352
Chris Wilson9a6f5132015-02-25 13:45:26 +00003353 /* Transfer ownership to the filp for reaping on close */
3354
3355 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3356 mutex_lock(&file_priv->fbs_lock);
3357 r->fb_id = fb->base.id;
3358 list_add(&fb->filp_head, &file_priv->fbs);
3359 mutex_unlock(&file_priv->fbs_lock);
3360
Matt Roperc394c2b2014-06-10 08:28:08 -07003361 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003362}
3363
3364/**
3365 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003366 * @dev: drm device for the ioctl
3367 * @data: data pointer for the ioctl
3368 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003369 *
Dave Airlief453ba02008-11-07 14:05:41 -08003370 * Remove the FB specified by the user.
3371 *
3372 * Called by the user via ioctl.
3373 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003374 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003375 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003376 */
3377int drm_mode_rmfb(struct drm_device *dev,
3378 void *data, struct drm_file *file_priv)
3379{
Dave Airlief453ba02008-11-07 14:05:41 -08003380 struct drm_framebuffer *fb = NULL;
3381 struct drm_framebuffer *fbl = NULL;
3382 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003383 int found = 0;
3384
Dave Airliefb3b06c2011-02-08 13:55:21 +10003385 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3386 return -EINVAL;
3387
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003388 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003389 mutex_lock(&dev->mode_config.fb_lock);
3390 fb = __drm_framebuffer_lookup(dev, *id);
3391 if (!fb)
3392 goto fail_lookup;
3393
Dave Airlief453ba02008-11-07 14:05:41 -08003394 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3395 if (fb == fbl)
3396 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003397 if (!found)
3398 goto fail_lookup;
3399
3400 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3401 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003402
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003403 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003404 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003405 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003406
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003407 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003408
Daniel Vetter2b677e82012-12-10 21:16:05 +01003409 return 0;
3410
3411fail_lookup:
3412 mutex_unlock(&dev->mode_config.fb_lock);
3413 mutex_unlock(&file_priv->fbs_lock);
3414
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003415 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003416}
3417
3418/**
3419 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003420 * @dev: drm device for the ioctl
3421 * @data: data pointer for the ioctl
3422 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003423 *
Dave Airlief453ba02008-11-07 14:05:41 -08003424 * Lookup the FB given its ID and return info about it.
3425 *
3426 * Called by the user via ioctl.
3427 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003428 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003429 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003430 */
3431int drm_mode_getfb(struct drm_device *dev,
3432 void *data, struct drm_file *file_priv)
3433{
3434 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003435 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003436 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003437
Dave Airliefb3b06c2011-02-08 13:55:21 +10003438 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3439 return -EINVAL;
3440
Daniel Vetter786b99e2012-12-02 21:53:40 +01003441 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003442 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003443 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003444
3445 r->height = fb->height;
3446 r->width = fb->width;
3447 r->depth = fb->depth;
3448 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003449 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003450 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003451 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003452 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003453 ret = fb->funcs->create_handle(fb, file_priv,
3454 &r->handle);
3455 } else {
3456 /* GET_FB() is an unprivileged ioctl so we must not
3457 * return a buffer-handle to non-master processes! For
3458 * backwards-compatibility reasons, we cannot make
3459 * GET_FB() privileged, so just return an invalid handle
3460 * for non-masters. */
3461 r->handle = 0;
3462 ret = 0;
3463 }
3464 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003465 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003466 }
Dave Airlief453ba02008-11-07 14:05:41 -08003467
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003468 drm_framebuffer_unreference(fb);
3469
Dave Airlief453ba02008-11-07 14:05:41 -08003470 return ret;
3471}
3472
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003473/**
3474 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3475 * @dev: drm device for the ioctl
3476 * @data: data pointer for the ioctl
3477 * @file_priv: drm file for the ioctl call
3478 *
3479 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3480 * rectangle list. Generic userspace which does frontbuffer rendering must call
3481 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3482 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3483 *
3484 * Modesetting drivers which always update the frontbuffer do not need to
3485 * implement the corresponding ->dirty framebuffer callback.
3486 *
3487 * Called by the user via ioctl.
3488 *
3489 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003490 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003491 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003492int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3493 void *data, struct drm_file *file_priv)
3494{
3495 struct drm_clip_rect __user *clips_ptr;
3496 struct drm_clip_rect *clips = NULL;
3497 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003498 struct drm_framebuffer *fb;
3499 unsigned flags;
3500 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003501 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003502
Dave Airliefb3b06c2011-02-08 13:55:21 +10003503 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3504 return -EINVAL;
3505
Daniel Vetter786b99e2012-12-02 21:53:40 +01003506 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003507 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003508 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003509
3510 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003511 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003512
3513 if (!num_clips != !clips_ptr) {
3514 ret = -EINVAL;
3515 goto out_err1;
3516 }
3517
3518 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3519
3520 /* If userspace annotates copy, clips must come in pairs */
3521 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3522 ret = -EINVAL;
3523 goto out_err1;
3524 }
3525
3526 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003527 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3528 ret = -EINVAL;
3529 goto out_err1;
3530 }
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003531 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003532 if (!clips) {
3533 ret = -ENOMEM;
3534 goto out_err1;
3535 }
3536
3537 ret = copy_from_user(clips, clips_ptr,
3538 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003539 if (ret) {
3540 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003541 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003542 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003543 }
3544
3545 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003546 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3547 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003548 } else {
3549 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003550 }
3551
3552out_err2:
3553 kfree(clips);
3554out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003555 drm_framebuffer_unreference(fb);
3556
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003557 return ret;
3558}
3559
3560
Dave Airlief453ba02008-11-07 14:05:41 -08003561/**
3562 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003563 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003564 *
Dave Airlief453ba02008-11-07 14:05:41 -08003565 * Destroy all the FBs associated with @filp.
3566 *
3567 * Called by the user via ioctl.
3568 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003569 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003570 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003571 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003572void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003573{
Dave Airlief453ba02008-11-07 14:05:41 -08003574 struct drm_device *dev = priv->minor->dev;
3575 struct drm_framebuffer *fb, *tfb;
3576
Daniel Vetter1b116292014-09-24 21:51:06 +02003577 /*
3578 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003579 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003580 * avoid upsetting lockdep since the universal cursor code adds a
3581 * framebuffer while holding mutex locks.
3582 *
3583 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3584 * locks is impossible here since no one else but this function can get
3585 * at it any more.
3586 */
Dave Airlief453ba02008-11-07 14:05:41 -08003587 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003588
3589 mutex_lock(&dev->mode_config.fb_lock);
3590 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3591 __drm_framebuffer_unregister(dev, fb);
3592 mutex_unlock(&dev->mode_config.fb_lock);
3593
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003594 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003595
3596 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003597 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003598 }
Dave Airlief453ba02008-11-07 14:05:41 -08003599}
3600
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003601/**
3602 * drm_property_create - create a new property type
3603 * @dev: drm device
3604 * @flags: flags specifying the property type
3605 * @name: name of the property
3606 * @num_values: number of pre-defined values
3607 *
3608 * This creates a new generic drm property which can then be attached to a drm
3609 * object with drm_object_attach_property. The returned property object must be
3610 * freed with drm_property_destroy.
3611 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003612 * Note that the DRM core keeps a per-device list of properties and that, if
3613 * drm_mode_config_cleanup() is called, it will destroy all properties created
3614 * by the driver.
3615 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003616 * Returns:
3617 * A pointer to the newly created property on success, NULL on failure.
3618 */
Dave Airlief453ba02008-11-07 14:05:41 -08003619struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3620 const char *name, int num_values)
3621{
3622 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003623 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003624
3625 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3626 if (!property)
3627 return NULL;
3628
Rob Clark98f75de2014-05-30 11:37:03 -04003629 property->dev = dev;
3630
Dave Airlief453ba02008-11-07 14:05:41 -08003631 if (num_values) {
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003632 property->values = kcalloc(num_values, sizeof(uint64_t),
3633 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08003634 if (!property->values)
3635 goto fail;
3636 }
3637
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003638 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3639 if (ret)
3640 goto fail;
3641
Dave Airlief453ba02008-11-07 14:05:41 -08003642 property->flags = flags;
3643 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003644 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003645
Vinson Lee471dd2e2011-11-10 11:55:40 -08003646 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003647 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003648 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3649 }
Dave Airlief453ba02008-11-07 14:05:41 -08003650
3651 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003652
3653 WARN_ON(!drm_property_type_valid(property));
3654
Dave Airlief453ba02008-11-07 14:05:41 -08003655 return property;
3656fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003657 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003658 kfree(property);
3659 return NULL;
3660}
3661EXPORT_SYMBOL(drm_property_create);
3662
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003663/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003664 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003665 * @dev: drm device
3666 * @flags: flags specifying the property type
3667 * @name: name of the property
3668 * @props: enumeration lists with property values
3669 * @num_values: number of pre-defined values
3670 *
3671 * This creates a new generic drm property which can then be attached to a drm
3672 * object with drm_object_attach_property. The returned property object must be
3673 * freed with drm_property_destroy.
3674 *
3675 * Userspace is only allowed to set one of the predefined values for enumeration
3676 * properties.
3677 *
3678 * Returns:
3679 * A pointer to the newly created property on success, NULL on failure.
3680 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003681struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3682 const char *name,
3683 const struct drm_prop_enum_list *props,
3684 int num_values)
3685{
3686 struct drm_property *property;
3687 int i, ret;
3688
3689 flags |= DRM_MODE_PROP_ENUM;
3690
3691 property = drm_property_create(dev, flags, name, num_values);
3692 if (!property)
3693 return NULL;
3694
3695 for (i = 0; i < num_values; i++) {
3696 ret = drm_property_add_enum(property, i,
3697 props[i].type,
3698 props[i].name);
3699 if (ret) {
3700 drm_property_destroy(dev, property);
3701 return NULL;
3702 }
3703 }
3704
3705 return property;
3706}
3707EXPORT_SYMBOL(drm_property_create_enum);
3708
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003709/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003710 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003711 * @dev: drm device
3712 * @flags: flags specifying the property type
3713 * @name: name of the property
3714 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003715 * @num_props: size of the @props array
3716 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003717 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003718 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003719 * object with drm_object_attach_property. The returned property object must be
3720 * freed with drm_property_destroy.
3721 *
3722 * Compared to plain enumeration properties userspace is allowed to set any
3723 * or'ed together combination of the predefined property bitflag values
3724 *
3725 * Returns:
3726 * A pointer to the newly created property on success, NULL on failure.
3727 */
Rob Clark49e27542012-05-17 02:23:26 -06003728struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3729 int flags, const char *name,
3730 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303731 int num_props,
3732 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003733{
3734 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303735 int i, ret, index = 0;
3736 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003737
3738 flags |= DRM_MODE_PROP_BITMASK;
3739
3740 property = drm_property_create(dev, flags, name, num_values);
3741 if (!property)
3742 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303743 for (i = 0; i < num_props; i++) {
3744 if (!(supported_bits & (1ULL << props[i].type)))
3745 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003746
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303747 if (WARN_ON(index >= num_values)) {
3748 drm_property_destroy(dev, property);
3749 return NULL;
3750 }
3751
3752 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003753 props[i].type,
3754 props[i].name);
3755 if (ret) {
3756 drm_property_destroy(dev, property);
3757 return NULL;
3758 }
3759 }
3760
3761 return property;
3762}
3763EXPORT_SYMBOL(drm_property_create_bitmask);
3764
Rob Clarkebc44cf2012-09-12 22:22:31 -05003765static struct drm_property *property_create_range(struct drm_device *dev,
3766 int flags, const char *name,
3767 uint64_t min, uint64_t max)
3768{
3769 struct drm_property *property;
3770
3771 property = drm_property_create(dev, flags, name, 2);
3772 if (!property)
3773 return NULL;
3774
3775 property->values[0] = min;
3776 property->values[1] = max;
3777
3778 return property;
3779}
3780
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003781/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003782 * drm_property_create_range - create a new unsigned ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003783 * @dev: drm device
3784 * @flags: flags specifying the property type
3785 * @name: name of the property
3786 * @min: minimum value of the property
3787 * @max: maximum value of the property
3788 *
3789 * This creates a new generic drm property which can then be attached to a drm
3790 * object with drm_object_attach_property. The returned property object must be
3791 * freed with drm_property_destroy.
3792 *
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003793 * Userspace is allowed to set any unsigned integer value in the (min, max)
3794 * range inclusive.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003795 *
3796 * Returns:
3797 * A pointer to the newly created property on success, NULL on failure.
3798 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003799struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3800 const char *name,
3801 uint64_t min, uint64_t max)
3802{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003803 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3804 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003805}
3806EXPORT_SYMBOL(drm_property_create_range);
3807
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003808/**
3809 * drm_property_create_signed_range - create a new signed ranged property type
3810 * @dev: drm device
3811 * @flags: flags specifying the property type
3812 * @name: name of the property
3813 * @min: minimum value of the property
3814 * @max: maximum value of the property
3815 *
3816 * This creates a new generic drm property which can then be attached to a drm
3817 * object with drm_object_attach_property. The returned property object must be
3818 * freed with drm_property_destroy.
3819 *
3820 * Userspace is allowed to set any signed integer value in the (min, max)
3821 * range inclusive.
3822 *
3823 * Returns:
3824 * A pointer to the newly created property on success, NULL on failure.
3825 */
Rob Clarkebc44cf2012-09-12 22:22:31 -05003826struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3827 int flags, const char *name,
3828 int64_t min, int64_t max)
3829{
3830 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3831 name, I642U64(min), I642U64(max));
3832}
3833EXPORT_SYMBOL(drm_property_create_signed_range);
3834
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003835/**
3836 * drm_property_create_object - create a new object property type
3837 * @dev: drm device
3838 * @flags: flags specifying the property type
3839 * @name: name of the property
3840 * @type: object type from DRM_MODE_OBJECT_* defines
3841 *
3842 * This creates a new generic drm property which can then be attached to a drm
3843 * object with drm_object_attach_property. The returned property object must be
3844 * freed with drm_property_destroy.
3845 *
3846 * Userspace is only allowed to set this to any property value of the given
3847 * @type. Only useful for atomic properties, which is enforced.
3848 *
3849 * Returns:
3850 * A pointer to the newly created property on success, NULL on failure.
3851 */
Rob Clark98f75de2014-05-30 11:37:03 -04003852struct drm_property *drm_property_create_object(struct drm_device *dev,
3853 int flags, const char *name, uint32_t type)
3854{
3855 struct drm_property *property;
3856
3857 flags |= DRM_MODE_PROP_OBJECT;
3858
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003859 if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
3860 return NULL;
3861
Rob Clark98f75de2014-05-30 11:37:03 -04003862 property = drm_property_create(dev, flags, name, 1);
3863 if (!property)
3864 return NULL;
3865
3866 property->values[0] = type;
3867
3868 return property;
3869}
3870EXPORT_SYMBOL(drm_property_create_object);
3871
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003872/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003873 * drm_property_create_bool - create a new boolean property type
3874 * @dev: drm device
3875 * @flags: flags specifying the property type
3876 * @name: name of the property
3877 *
3878 * This creates a new generic drm property which can then be attached to a drm
3879 * object with drm_object_attach_property. The returned property object must be
3880 * freed with drm_property_destroy.
3881 *
3882 * This is implemented as a ranged property with only {0, 1} as valid values.
3883 *
3884 * Returns:
3885 * A pointer to the newly created property on success, NULL on failure.
3886 */
3887struct drm_property *drm_property_create_bool(struct drm_device *dev, int flags,
3888 const char *name)
3889{
3890 return drm_property_create_range(dev, flags, name, 0, 1);
3891}
3892EXPORT_SYMBOL(drm_property_create_bool);
3893
3894/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003895 * drm_property_add_enum - add a possible value to an enumeration property
3896 * @property: enumeration property to change
3897 * @index: index of the new enumeration
3898 * @value: value of the new enumeration
3899 * @name: symbolic name of the new enumeration
3900 *
3901 * This functions adds enumerations to a property.
3902 *
3903 * It's use is deprecated, drivers should use one of the more specific helpers
3904 * to directly create the property with all enumerations already attached.
3905 *
3906 * Returns:
3907 * Zero on success, error code on failure.
3908 */
Dave Airlief453ba02008-11-07 14:05:41 -08003909int drm_property_add_enum(struct drm_property *property, int index,
3910 uint64_t value, const char *name)
3911{
3912 struct drm_property_enum *prop_enum;
3913
Rob Clark5ea22f22014-05-30 11:34:01 -04003914 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3915 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003916 return -EINVAL;
3917
3918 /*
3919 * Bitmask enum properties have the additional constraint of values
3920 * from 0 to 63
3921 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003922 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3923 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003924 return -EINVAL;
3925
Daniel Vetter3758b342014-11-19 18:38:10 +01003926 if (!list_empty(&property->enum_list)) {
3927 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003928 if (prop_enum->value == value) {
3929 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3930 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3931 return 0;
3932 }
3933 }
3934 }
3935
3936 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3937 if (!prop_enum)
3938 return -ENOMEM;
3939
3940 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3941 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3942 prop_enum->value = value;
3943
3944 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003945 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003946 return 0;
3947}
3948EXPORT_SYMBOL(drm_property_add_enum);
3949
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003950/**
3951 * drm_property_destroy - destroy a drm property
3952 * @dev: drm device
3953 * @property: property to destry
3954 *
3955 * This function frees a property including any attached resources like
3956 * enumeration values.
3957 */
Dave Airlief453ba02008-11-07 14:05:41 -08003958void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3959{
3960 struct drm_property_enum *prop_enum, *pt;
3961
Daniel Vetter3758b342014-11-19 18:38:10 +01003962 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003963 list_del(&prop_enum->head);
3964 kfree(prop_enum);
3965 }
3966
3967 if (property->num_values)
3968 kfree(property->values);
3969 drm_mode_object_put(dev, &property->base);
3970 list_del(&property->head);
3971 kfree(property);
3972}
3973EXPORT_SYMBOL(drm_property_destroy);
3974
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003975/**
3976 * drm_object_attach_property - attach a property to a modeset object
3977 * @obj: drm modeset object
3978 * @property: property to attach
3979 * @init_val: initial value of the property
3980 *
3981 * This attaches the given property to the modeset object with the given initial
3982 * value. Currently this function cannot fail since the properties are stored in
3983 * a statically sized array.
3984 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003985void drm_object_attach_property(struct drm_mode_object *obj,
3986 struct drm_property *property,
3987 uint64_t init_val)
3988{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003989 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003990
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003991 if (count == DRM_OBJECT_MAX_PROPERTY) {
3992 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3993 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3994 "you see this message on the same object type.\n",
3995 obj->type);
3996 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03003997 }
3998
Rob Clarkb17cd752014-12-16 18:05:30 -05003999 obj->properties->properties[count] = property;
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004000 obj->properties->values[count] = init_val;
4001 obj->properties->count++;
Rob Clark88a48e22014-12-18 16:01:50 -05004002 if (property->flags & DRM_MODE_PROP_ATOMIC)
4003 obj->properties->atomic_count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03004004}
4005EXPORT_SYMBOL(drm_object_attach_property);
4006
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004007/**
4008 * drm_object_property_set_value - set the value of a property
4009 * @obj: drm mode object to set property value for
4010 * @property: property to set
4011 * @val: value the property should be set to
4012 *
4013 * This functions sets a given property on a given object. This function only
4014 * changes the software state of the property, it does not call into the
4015 * driver's ->set_property callback.
4016 *
4017 * Returns:
4018 * Zero on success, error code on failure.
4019 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004020int drm_object_property_set_value(struct drm_mode_object *obj,
4021 struct drm_property *property, uint64_t val)
4022{
4023 int i;
4024
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004025 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004026 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004027 obj->properties->values[i] = val;
4028 return 0;
4029 }
4030 }
4031
4032 return -EINVAL;
4033}
4034EXPORT_SYMBOL(drm_object_property_set_value);
4035
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004036/**
4037 * drm_object_property_get_value - retrieve the value of a property
4038 * @obj: drm mode object to get property value from
4039 * @property: property to retrieve
4040 * @val: storage for the property value
4041 *
4042 * This function retrieves the softare state of the given property for the given
4043 * property. Since there is no driver callback to retrieve the current property
4044 * value this might be out of sync with the hardware, depending upon the driver
4045 * and property.
4046 *
4047 * Returns:
4048 * Zero on success, error code on failure.
4049 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004050int drm_object_property_get_value(struct drm_mode_object *obj,
4051 struct drm_property *property, uint64_t *val)
4052{
4053 int i;
4054
Rob Clark88a48e22014-12-18 16:01:50 -05004055 /* read-only properties bypass atomic mechanism and still store
4056 * their value in obj->properties->values[].. mostly to avoid
4057 * having to deal w/ EDID and similar props in atomic paths:
4058 */
4059 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
4060 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
4061 return drm_atomic_get_property(obj, property, val);
4062
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004063 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004064 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004065 *val = obj->properties->values[i];
4066 return 0;
4067 }
4068 }
4069
4070 return -EINVAL;
4071}
4072EXPORT_SYMBOL(drm_object_property_get_value);
4073
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004074/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004075 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004076 * @dev: DRM device
4077 * @data: ioctl data
4078 * @file_priv: DRM file info
4079 *
Daniel Vetter1a498632014-11-19 18:38:09 +01004080 * This function retrieves the metadata for a given property, like the different
4081 * possible values for an enum property or the limits for a range property.
4082 *
4083 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004084 *
4085 * Called by the user via ioctl.
4086 *
4087 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004088 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004089 */
Dave Airlief453ba02008-11-07 14:05:41 -08004090int drm_mode_getproperty_ioctl(struct drm_device *dev,
4091 void *data, struct drm_file *file_priv)
4092{
Dave Airlief453ba02008-11-07 14:05:41 -08004093 struct drm_mode_get_property *out_resp = data;
4094 struct drm_property *property;
4095 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004096 int value_count = 0;
4097 int ret = 0, i;
4098 int copied;
4099 struct drm_property_enum *prop_enum;
4100 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004101 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004102
Dave Airliefb3b06c2011-02-08 13:55:21 +10004103 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4104 return -EINVAL;
4105
Daniel Vetter84849902012-12-02 00:28:11 +01004106 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004107 property = drm_property_find(dev, out_resp->prop_id);
4108 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004109 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004110 goto done;
4111 }
Dave Airlief453ba02008-11-07 14:05:41 -08004112
Rob Clark5ea22f22014-05-30 11:34:01 -04004113 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4114 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01004115 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08004116 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08004117 }
4118
4119 value_count = property->num_values;
4120
4121 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4122 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4123 out_resp->flags = property->flags;
4124
4125 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004126 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004127 for (i = 0; i < value_count; i++) {
4128 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4129 ret = -EFAULT;
4130 goto done;
4131 }
4132 }
4133 }
4134 out_resp->count_values = value_count;
4135
Rob Clark5ea22f22014-05-30 11:34:01 -04004136 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4137 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004138 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4139 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004140 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01004141 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004142
4143 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4144 ret = -EFAULT;
4145 goto done;
4146 }
4147
4148 if (copy_to_user(&enum_ptr[copied].name,
4149 &prop_enum->name, DRM_PROP_NAME_LEN)) {
4150 ret = -EFAULT;
4151 goto done;
4152 }
4153 copied++;
4154 }
4155 }
4156 out_resp->count_enum_blobs = enum_count;
4157 }
4158
Daniel Vetter3758b342014-11-19 18:38:10 +01004159 /*
4160 * NOTE: The idea seems to have been to use this to read all the blob
4161 * property values. But nothing ever added them to the corresponding
4162 * list, userspace always used the special-purpose get_blob ioctl to
4163 * read the value for a blob property. It also doesn't make a lot of
4164 * sense to return values here when everything else is just metadata for
4165 * the property itself.
4166 */
4167 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4168 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004169done:
Daniel Vetter84849902012-12-02 00:28:11 +01004170 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004171 return ret;
4172}
4173
Daniel Stone99531d92015-05-22 13:34:49 +01004174/**
4175 * drm_property_create_blob - Create new blob property
4176 *
4177 * Creates a new blob property for a specified DRM device, optionally
4178 * copying data.
4179 *
4180 * @dev: DRM device to create property for
4181 * @length: Length to allocate for blob data
4182 * @data: If specified, copies data into blob
Daniel Stone10e8cb72015-05-22 13:34:50 +01004183 *
4184 * Returns:
4185 * New blob property with a single reference on success, or an ERR_PTR
4186 * value on failure.
Daniel Stone99531d92015-05-22 13:34:49 +01004187 */
Daniel Stone6bcacf52015-04-20 19:22:55 +01004188struct drm_property_blob *
Thierry Redingecbbe592014-05-13 11:36:13 +02004189drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004190 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08004191{
4192 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004193 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004194
Daniel Stone99531d92015-05-22 13:34:49 +01004195 if (!length)
Daniel Stone10e8cb72015-05-22 13:34:50 +01004196 return ERR_PTR(-EINVAL);
Dave Airlief453ba02008-11-07 14:05:41 -08004197
4198 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4199 if (!blob)
Daniel Stone10e8cb72015-05-22 13:34:50 +01004200 return ERR_PTR(-ENOMEM);
Dave Airlief453ba02008-11-07 14:05:41 -08004201
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004202 /* This must be explicitly initialised, so we can safely call list_del
4203 * on it in the removal handler, even if it isn't in a file list. */
4204 INIT_LIST_HEAD(&blob->head_file);
Dave Airlief453ba02008-11-07 14:05:41 -08004205 blob->length = length;
Daniel Stone6bcacf52015-04-20 19:22:55 +01004206 blob->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08004207
Daniel Stone99531d92015-05-22 13:34:49 +01004208 if (data)
4209 memcpy(blob->data, data, length);
Dave Airlief453ba02008-11-07 14:05:41 -08004210
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004211 mutex_lock(&dev->mode_config.blob_lock);
4212
4213 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4214 if (ret) {
4215 kfree(blob);
4216 mutex_unlock(&dev->mode_config.blob_lock);
Daniel Stone10e8cb72015-05-22 13:34:50 +01004217 return ERR_PTR(-EINVAL);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004218 }
4219
Daniel Stone6bcacf52015-04-20 19:22:55 +01004220 kref_init(&blob->refcount);
4221
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004222 list_add_tail(&blob->head_global,
4223 &dev->mode_config.property_blob_list);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004224
4225 mutex_unlock(&dev->mode_config.blob_lock);
4226
Dave Airlief453ba02008-11-07 14:05:41 -08004227 return blob;
4228}
Daniel Stone6bcacf52015-04-20 19:22:55 +01004229EXPORT_SYMBOL(drm_property_create_blob);
Dave Airlief453ba02008-11-07 14:05:41 -08004230
Daniel Stone6bcacf52015-04-20 19:22:55 +01004231/**
4232 * drm_property_free_blob - Blob property destructor
4233 *
4234 * Internal free function for blob properties; must not be used directly.
4235 *
Daniel Stonef102c162015-05-22 13:34:44 +01004236 * @kref: Reference
Daniel Stone6bcacf52015-04-20 19:22:55 +01004237 */
4238static void drm_property_free_blob(struct kref *kref)
Dave Airlief453ba02008-11-07 14:05:41 -08004239{
Daniel Stone6bcacf52015-04-20 19:22:55 +01004240 struct drm_property_blob *blob =
4241 container_of(kref, struct drm_property_blob, refcount);
4242
4243 WARN_ON(!mutex_is_locked(&blob->dev->mode_config.blob_lock));
4244
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004245 list_del(&blob->head_global);
4246 list_del(&blob->head_file);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004247 drm_mode_object_put(blob->dev, &blob->base);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004248
Dave Airlief453ba02008-11-07 14:05:41 -08004249 kfree(blob);
4250}
4251
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004252/**
Daniel Stone6bcacf52015-04-20 19:22:55 +01004253 * drm_property_unreference_blob - Unreference a blob property
4254 *
4255 * Drop a reference on a blob property. May free the object.
4256 *
Daniel Stonef102c162015-05-22 13:34:44 +01004257 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004258 */
4259void drm_property_unreference_blob(struct drm_property_blob *blob)
4260{
4261 struct drm_device *dev;
4262
4263 if (!blob)
4264 return;
4265
4266 dev = blob->dev;
4267
4268 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4269
4270 if (kref_put_mutex(&blob->refcount, drm_property_free_blob,
4271 &dev->mode_config.blob_lock))
4272 mutex_unlock(&dev->mode_config.blob_lock);
4273 else
4274 might_lock(&dev->mode_config.blob_lock);
4275
4276}
4277EXPORT_SYMBOL(drm_property_unreference_blob);
4278
4279/**
4280 * drm_property_unreference_blob_locked - Unreference a blob property with blob_lock held
4281 *
4282 * Drop a reference on a blob property. May free the object. This must be
4283 * called with blob_lock held.
4284 *
Daniel Stonef102c162015-05-22 13:34:44 +01004285 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004286 */
4287static void drm_property_unreference_blob_locked(struct drm_property_blob *blob)
4288{
4289 if (!blob)
4290 return;
4291
4292 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4293
4294 kref_put(&blob->refcount, drm_property_free_blob);
4295}
4296
4297/**
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004298 * drm_property_destroy_user_blobs - destroy all blobs created by this client
4299 * @dev: DRM device
4300 * @file_priv: destroy all blobs owned by this file handle
4301 */
4302void drm_property_destroy_user_blobs(struct drm_device *dev,
4303 struct drm_file *file_priv)
4304{
4305 struct drm_property_blob *blob, *bt;
4306
4307 mutex_lock(&dev->mode_config.blob_lock);
4308
4309 list_for_each_entry_safe(blob, bt, &file_priv->blobs, head_file) {
4310 list_del_init(&blob->head_file);
4311 drm_property_unreference_blob_locked(blob);
4312 }
4313
4314 mutex_unlock(&dev->mode_config.blob_lock);
4315}
4316
4317/**
Daniel Stone6bcacf52015-04-20 19:22:55 +01004318 * drm_property_reference_blob - Take a reference on an existing property
4319 *
4320 * Take a new reference on an existing blob property.
4321 *
Daniel Stonef102c162015-05-22 13:34:44 +01004322 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004323 */
4324struct drm_property_blob *drm_property_reference_blob(struct drm_property_blob *blob)
4325{
4326 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4327 kref_get(&blob->refcount);
4328 return blob;
4329}
4330EXPORT_SYMBOL(drm_property_reference_blob);
4331
4332/*
4333 * Like drm_property_lookup_blob, but does not return an additional reference.
4334 * Must be called with blob_lock held.
4335 */
4336static struct drm_property_blob *__drm_property_lookup_blob(struct drm_device *dev,
4337 uint32_t id)
4338{
4339 struct drm_mode_object *obj = NULL;
4340 struct drm_property_blob *blob;
4341
4342 WARN_ON(!mutex_is_locked(&dev->mode_config.blob_lock));
4343
4344 mutex_lock(&dev->mode_config.idr_mutex);
4345 obj = idr_find(&dev->mode_config.crtc_idr, id);
4346 if (!obj || (obj->type != DRM_MODE_OBJECT_BLOB) || (obj->id != id))
4347 blob = NULL;
4348 else
4349 blob = obj_to_blob(obj);
4350 mutex_unlock(&dev->mode_config.idr_mutex);
4351
Dave Airlief453ba02008-11-07 14:05:41 -08004352 return blob;
4353}
4354
Daniel Stone6bcacf52015-04-20 19:22:55 +01004355/**
4356 * drm_property_lookup_blob - look up a blob property and take a reference
4357 * @dev: drm device
4358 * @id: id of the blob property
4359 *
4360 * If successful, this takes an additional reference to the blob property.
4361 * callers need to make sure to eventually unreference the returned property
4362 * again, using @drm_property_unreference_blob.
4363 */
4364struct drm_property_blob *drm_property_lookup_blob(struct drm_device *dev,
4365 uint32_t id)
Dave Airlief453ba02008-11-07 14:05:41 -08004366{
Daniel Stone6bcacf52015-04-20 19:22:55 +01004367 struct drm_property_blob *blob;
4368
4369 mutex_lock(&dev->mode_config.blob_lock);
4370 blob = __drm_property_lookup_blob(dev, id);
4371 if (blob) {
4372 if (!kref_get_unless_zero(&blob->refcount))
4373 blob = NULL;
4374 }
4375 mutex_unlock(&dev->mode_config.blob_lock);
4376
4377 return blob;
4378}
4379EXPORT_SYMBOL(drm_property_lookup_blob);
4380
4381/**
Daniel Stoned2ed3432015-04-20 19:22:53 +01004382 * drm_property_replace_global_blob - atomically replace existing blob property
4383 * @dev: drm device
4384 * @replace: location of blob property pointer to be replaced
4385 * @length: length of data for new blob, or 0 for no data
4386 * @data: content for new blob, or NULL for no data
4387 * @obj_holds_id: optional object for property holding blob ID
4388 * @prop_holds_id: optional property holding blob ID
4389 * @return 0 on success or error on failure
4390 *
4391 * This function will atomically replace a global property in the blob list,
4392 * optionally updating a property which holds the ID of that property. It is
4393 * guaranteed to be atomic: no caller will be allowed to see intermediate
4394 * results, and either the entire operation will succeed and clean up the
4395 * previous property, or it will fail and the state will be unchanged.
4396 *
4397 * If length is 0 or data is NULL, no new blob will be created, and the holding
4398 * property, if specified, will be set to 0.
4399 *
4400 * Access to the replace pointer is assumed to be protected by the caller, e.g.
4401 * by holding the relevant modesetting object lock for its parent.
4402 *
4403 * For example, a drm_connector has a 'PATH' property, which contains the ID
4404 * of a blob property with the value of the MST path information. Calling this
4405 * function with replace pointing to the connector's path_blob_ptr, length and
4406 * data set for the new path information, obj_holds_id set to the connector's
4407 * base object, and prop_holds_id set to the path property name, will perform
4408 * a completely atomic update. The access to path_blob_ptr is protected by the
4409 * caller holding a lock on the connector.
4410 */
4411static int drm_property_replace_global_blob(struct drm_device *dev,
4412 struct drm_property_blob **replace,
4413 size_t length,
4414 const void *data,
4415 struct drm_mode_object *obj_holds_id,
4416 struct drm_property *prop_holds_id)
4417{
4418 struct drm_property_blob *new_blob = NULL;
4419 struct drm_property_blob *old_blob = NULL;
4420 int ret;
4421
4422 WARN_ON(replace == NULL);
4423
4424 old_blob = *replace;
4425
4426 if (length && data) {
4427 new_blob = drm_property_create_blob(dev, length, data);
Daniel Stone10e8cb72015-05-22 13:34:50 +01004428 if (IS_ERR(new_blob))
4429 return PTR_ERR(new_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004430 }
4431
4432 /* This does not need to be synchronised with blob_lock, as the
4433 * get_properties ioctl locks all modesetting objects, and
4434 * obj_holds_id must be locked before calling here, so we cannot
4435 * have its value out of sync with the list membership modified
4436 * below under blob_lock. */
4437 if (obj_holds_id) {
4438 ret = drm_object_property_set_value(obj_holds_id,
4439 prop_holds_id,
4440 new_blob ?
4441 new_blob->base.id : 0);
4442 if (ret != 0)
4443 goto err_created;
4444 }
4445
4446 if (old_blob)
Daniel Stone6bcacf52015-04-20 19:22:55 +01004447 drm_property_unreference_blob(old_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004448
4449 *replace = new_blob;
4450
4451 return 0;
4452
4453err_created:
Daniel Stone6bcacf52015-04-20 19:22:55 +01004454 drm_property_unreference_blob(new_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004455 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004456}
4457
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004458/**
4459 * drm_mode_getblob_ioctl - get the contents of a blob property value
4460 * @dev: DRM device
4461 * @data: ioctl data
4462 * @file_priv: DRM file info
4463 *
4464 * This function retrieves the contents of a blob property. The value stored in
4465 * an object's blob property is just a normal modeset object id.
4466 *
4467 * Called by the user via ioctl.
4468 *
4469 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004470 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004471 */
Dave Airlief453ba02008-11-07 14:05:41 -08004472int drm_mode_getblob_ioctl(struct drm_device *dev,
4473 void *data, struct drm_file *file_priv)
4474{
Dave Airlief453ba02008-11-07 14:05:41 -08004475 struct drm_mode_get_blob *out_resp = data;
4476 struct drm_property_blob *blob;
4477 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004478 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004479
Dave Airliefb3b06c2011-02-08 13:55:21 +10004480 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4481 return -EINVAL;
4482
Daniel Vetter84849902012-12-02 00:28:11 +01004483 drm_modeset_lock_all(dev);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004484 mutex_lock(&dev->mode_config.blob_lock);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004485 blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
Rob Clarka2b34e22013-10-05 16:36:52 -04004486 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004487 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004488 goto done;
4489 }
Dave Airlief453ba02008-11-07 14:05:41 -08004490
4491 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004492 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004493 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004494 ret = -EFAULT;
4495 goto done;
4496 }
4497 }
4498 out_resp->length = blob->length;
4499
4500done:
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004501 mutex_unlock(&dev->mode_config.blob_lock);
Daniel Vetter84849902012-12-02 00:28:11 +01004502 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004503 return ret;
4504}
4505
Dave Airliecc7096f2014-10-22 12:03:04 +10004506/**
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004507 * drm_mode_createblob_ioctl - create a new blob property
4508 * @dev: DRM device
4509 * @data: ioctl data
4510 * @file_priv: DRM file info
4511 *
4512 * This function creates a new blob property with user-defined values. In order
4513 * to give us sensible validation and checking when creating, rather than at
4514 * every potential use, we also require a type to be provided upfront.
4515 *
4516 * Called by the user via ioctl.
4517 *
4518 * Returns:
4519 * Zero on success, negative errno on failure.
4520 */
4521int drm_mode_createblob_ioctl(struct drm_device *dev,
4522 void *data, struct drm_file *file_priv)
4523{
4524 struct drm_mode_create_blob *out_resp = data;
4525 struct drm_property_blob *blob;
4526 void __user *blob_ptr;
4527 int ret = 0;
4528
4529 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4530 return -EINVAL;
4531
4532 blob = drm_property_create_blob(dev, out_resp->length, NULL);
4533 if (IS_ERR(blob))
4534 return PTR_ERR(blob);
4535
4536 blob_ptr = (void __user *)(unsigned long)out_resp->data;
4537 if (copy_from_user(blob->data, blob_ptr, out_resp->length)) {
4538 ret = -EFAULT;
4539 goto out_blob;
4540 }
4541
4542 /* Dropping the lock between create_blob and our access here is safe
4543 * as only the same file_priv can remove the blob; at this point, it is
4544 * not associated with any file_priv. */
4545 mutex_lock(&dev->mode_config.blob_lock);
4546 out_resp->blob_id = blob->base.id;
4547 list_add_tail(&file_priv->blobs, &blob->head_file);
4548 mutex_unlock(&dev->mode_config.blob_lock);
4549
4550 return 0;
4551
4552out_blob:
4553 drm_property_unreference_blob(blob);
4554 return ret;
4555}
4556
4557/**
4558 * drm_mode_destroyblob_ioctl - destroy a user blob property
4559 * @dev: DRM device
4560 * @data: ioctl data
4561 * @file_priv: DRM file info
4562 *
4563 * Destroy an existing user-defined blob property.
4564 *
4565 * Called by the user via ioctl.
4566 *
4567 * Returns:
4568 * Zero on success, negative errno on failure.
4569 */
4570int drm_mode_destroyblob_ioctl(struct drm_device *dev,
4571 void *data, struct drm_file *file_priv)
4572{
4573 struct drm_mode_destroy_blob *out_resp = data;
4574 struct drm_property_blob *blob = NULL, *bt;
4575 bool found = false;
4576 int ret = 0;
4577
4578 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4579 return -EINVAL;
4580
4581 mutex_lock(&dev->mode_config.blob_lock);
4582 blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
4583 if (!blob) {
4584 ret = -ENOENT;
4585 goto err;
4586 }
4587
4588 /* Ensure the property was actually created by this user. */
4589 list_for_each_entry(bt, &file_priv->blobs, head_file) {
4590 if (bt == blob) {
4591 found = true;
4592 break;
4593 }
4594 }
4595
4596 if (!found) {
4597 ret = -EPERM;
4598 goto err;
4599 }
4600
4601 /* We must drop head_file here, because we may not be the last
4602 * reference on the blob. */
4603 list_del_init(&blob->head_file);
4604 drm_property_unreference_blob_locked(blob);
4605 mutex_unlock(&dev->mode_config.blob_lock);
4606
4607 return 0;
4608
4609err:
4610 mutex_unlock(&dev->mode_config.blob_lock);
4611 return ret;
4612}
4613
4614/**
Dave Airliecc7096f2014-10-22 12:03:04 +10004615 * drm_mode_connector_set_path_property - set tile property on connector
4616 * @connector: connector to set property on.
Daniel Stoned2ed3432015-04-20 19:22:53 +01004617 * @path: path to use for property; must not be NULL.
Dave Airliecc7096f2014-10-22 12:03:04 +10004618 *
4619 * This creates a property to expose to userspace to specify a
4620 * connector path. This is mainly used for DisplayPort MST where
4621 * connectors have a topology and we want to allow userspace to give
4622 * them more meaningful names.
4623 *
4624 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004625 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004626 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004627int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004628 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004629{
4630 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004631 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004632
Daniel Stoned2ed3432015-04-20 19:22:53 +01004633 ret = drm_property_replace_global_blob(dev,
4634 &connector->path_blob_ptr,
4635 strlen(path) + 1,
4636 path,
4637 &connector->base,
4638 dev->mode_config.path_property);
Dave Airlie43aba7e2014-06-05 14:01:31 +10004639 return ret;
4640}
4641EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4642
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004643/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004644 * drm_mode_connector_set_tile_property - set tile property on connector
4645 * @connector: connector to set property on.
4646 *
4647 * This looks up the tile information for a connector, and creates a
4648 * property for userspace to parse if it exists. The property is of
4649 * the form of 8 integers using ':' as a separator.
4650 *
4651 * Returns:
4652 * Zero on success, errno on failure.
4653 */
4654int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4655{
4656 struct drm_device *dev = connector->dev;
Dave Airlie6f134d72014-10-20 16:30:50 +10004657 char tile[256];
Daniel Stoned2ed3432015-04-20 19:22:53 +01004658 int ret;
Dave Airlie6f134d72014-10-20 16:30:50 +10004659
4660 if (!connector->has_tile) {
Daniel Stoned2ed3432015-04-20 19:22:53 +01004661 ret = drm_property_replace_global_blob(dev,
4662 &connector->tile_blob_ptr,
4663 0,
4664 NULL,
4665 &connector->base,
4666 dev->mode_config.tile_property);
Dave Airlie6f134d72014-10-20 16:30:50 +10004667 return ret;
4668 }
4669
4670 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4671 connector->tile_group->id, connector->tile_is_single_monitor,
4672 connector->num_h_tile, connector->num_v_tile,
4673 connector->tile_h_loc, connector->tile_v_loc,
4674 connector->tile_h_size, connector->tile_v_size);
Dave Airlie6f134d72014-10-20 16:30:50 +10004675
Daniel Stoned2ed3432015-04-20 19:22:53 +01004676 ret = drm_property_replace_global_blob(dev,
4677 &connector->tile_blob_ptr,
4678 strlen(tile) + 1,
4679 tile,
4680 &connector->base,
4681 dev->mode_config.tile_property);
Dave Airlie6f134d72014-10-20 16:30:50 +10004682 return ret;
4683}
4684EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4685
4686/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004687 * drm_mode_connector_update_edid_property - update the edid property of a connector
4688 * @connector: drm connector
4689 * @edid: new value of the edid property
4690 *
4691 * This function creates a new blob modeset object and assigns its id to the
4692 * connector's edid property.
4693 *
4694 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004695 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004696 */
Dave Airlief453ba02008-11-07 14:05:41 -08004697int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004698 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004699{
4700 struct drm_device *dev = connector->dev;
Daniel Stoned2ed3432015-04-20 19:22:53 +01004701 size_t size = 0;
Thierry Redingecbbe592014-05-13 11:36:13 +02004702 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004703
Thomas Wood4cf2b282014-06-18 17:52:33 +01004704 /* ignore requests to set edid when overridden */
4705 if (connector->override_edid)
4706 return 0;
4707
Daniel Stoned2ed3432015-04-20 19:22:53 +01004708 if (edid)
4709 size = EDID_LENGTH + (1 + edid->extensions);
Dave Airlief453ba02008-11-07 14:05:41 -08004710
Daniel Stoned2ed3432015-04-20 19:22:53 +01004711 ret = drm_property_replace_global_blob(dev,
4712 &connector->edid_blob_ptr,
4713 size,
4714 edid,
4715 &connector->base,
4716 dev->mode_config.edid_property);
Dave Airlief453ba02008-11-07 14:05:41 -08004717 return ret;
4718}
4719EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4720
Rob Clark3843e712014-12-16 18:05:29 -05004721/* Some properties could refer to dynamic refcnt'd objects, or things that
4722 * need special locking to handle lifetime issues (ie. to ensure the prop
4723 * value doesn't become invalid part way through the property update due to
4724 * race). The value returned by reference via 'obj' should be passed back
4725 * to drm_property_change_valid_put() after the property is set (and the
4726 * object to which the property is attached has a chance to take it's own
4727 * reference).
4728 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05004729bool drm_property_change_valid_get(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004730 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004731{
Thierry Reding2ca651d2014-12-10 13:03:39 +01004732 int i;
4733
Paulo Zanoni26a34812012-05-15 18:08:59 -03004734 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4735 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004736
Rob Clark3843e712014-12-16 18:05:29 -05004737 *ref = NULL;
4738
Rob Clark5ea22f22014-05-30 11:34:01 -04004739 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004740 if (value < property->values[0] || value > property->values[1])
4741 return false;
4742 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004743 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4744 int64_t svalue = U642I64(value);
Thierry Reding4dfd9092014-12-10 13:03:34 +01004745
Rob Clarkebc44cf2012-09-12 22:22:31 -05004746 if (svalue < U642I64(property->values[0]) ||
4747 svalue > U642I64(property->values[1]))
4748 return false;
4749 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004750 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004751 uint64_t valid_mask = 0;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004752
Rob Clark49e27542012-05-17 02:23:26 -06004753 for (i = 0; i < property->num_values; i++)
4754 valid_mask |= (1ULL << property->values[i]);
4755 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004756 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Daniel Stone6bcacf52015-04-20 19:22:55 +01004757 struct drm_property_blob *blob;
4758
4759 if (value == 0)
4760 return true;
4761
4762 blob = drm_property_lookup_blob(property->dev, value);
4763 if (blob) {
4764 *ref = &blob->base;
4765 return true;
4766 } else {
4767 return false;
4768 }
Rob Clark98f75de2014-05-30 11:37:03 -04004769 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004770 /* a zero value for an object property translates to null: */
4771 if (value == 0)
4772 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004773
4774 /* handle refcnt'd objects specially: */
4775 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4776 struct drm_framebuffer *fb;
4777 fb = drm_framebuffer_lookup(property->dev, value);
4778 if (fb) {
4779 *ref = &fb->base;
4780 return true;
4781 } else {
4782 return false;
4783 }
4784 } else {
4785 return _object_find(property->dev, value, property->values[0]) != NULL;
4786 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004787 }
Thierry Reding2ca651d2014-12-10 13:03:39 +01004788
4789 for (i = 0; i < property->num_values; i++)
4790 if (property->values[i] == value)
4791 return true;
4792 return false;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004793}
4794
Rob Clarkd34f20d2014-12-18 16:01:56 -05004795void drm_property_change_valid_put(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004796 struct drm_mode_object *ref)
4797{
4798 if (!ref)
4799 return;
4800
4801 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4802 if (property->values[0] == DRM_MODE_OBJECT_FB)
4803 drm_framebuffer_unreference(obj_to_fb(ref));
Daniel Stoneda9b2a32015-05-25 19:11:49 +01004804 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4805 drm_property_unreference_blob(obj_to_blob(ref));
Rob Clark3843e712014-12-16 18:05:29 -05004806}
4807
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004808/**
4809 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4810 * @dev: DRM device
4811 * @data: ioctl data
4812 * @file_priv: DRM file info
4813 *
4814 * This function sets the current value for a connectors's property. It also
4815 * calls into a driver's ->set_property callback to update the hardware state
4816 *
4817 * Called by the user via ioctl.
4818 *
4819 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004820 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004821 */
Dave Airlief453ba02008-11-07 14:05:41 -08004822int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4823 void *data, struct drm_file *file_priv)
4824{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004825 struct drm_mode_connector_set_property *conn_set_prop = data;
4826 struct drm_mode_obj_set_property obj_set_prop = {
4827 .value = conn_set_prop->value,
4828 .prop_id = conn_set_prop->prop_id,
4829 .obj_id = conn_set_prop->connector_id,
4830 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4831 };
Dave Airlief453ba02008-11-07 14:05:41 -08004832
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004833 /* It does all the locking and checking we need */
4834 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004835}
4836
Paulo Zanonic5431882012-05-15 18:09:02 -03004837static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4838 struct drm_property *property,
4839 uint64_t value)
4840{
4841 int ret = -EINVAL;
4842 struct drm_connector *connector = obj_to_connector(obj);
4843
4844 /* Do DPMS ourselves */
4845 if (property == connector->dev->mode_config.dpms_property) {
4846 if (connector->funcs->dpms)
4847 (*connector->funcs->dpms)(connector, (int)value);
4848 ret = 0;
4849 } else if (connector->funcs->set_property)
4850 ret = connector->funcs->set_property(connector, property, value);
4851
4852 /* store the property value if successful */
4853 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004854 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004855 return ret;
4856}
4857
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004858static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4859 struct drm_property *property,
4860 uint64_t value)
4861{
4862 int ret = -EINVAL;
4863 struct drm_crtc *crtc = obj_to_crtc(obj);
4864
4865 if (crtc->funcs->set_property)
4866 ret = crtc->funcs->set_property(crtc, property, value);
4867 if (!ret)
4868 drm_object_property_set_value(obj, property, value);
4869
4870 return ret;
4871}
4872
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004873/**
4874 * drm_mode_plane_set_obj_prop - set the value of a property
4875 * @plane: drm plane object to set property value for
4876 * @property: property to set
4877 * @value: value the property should be set to
4878 *
4879 * This functions sets a given property on a given plane object. This function
4880 * calls the driver's ->set_property callback and changes the software state of
4881 * the property if the callback succeeds.
4882 *
4883 * Returns:
4884 * Zero on success, error code on failure.
4885 */
4886int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4887 struct drm_property *property,
4888 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004889{
4890 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004891 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004892
4893 if (plane->funcs->set_property)
4894 ret = plane->funcs->set_property(plane, property, value);
4895 if (!ret)
4896 drm_object_property_set_value(obj, property, value);
4897
4898 return ret;
4899}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004900EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004901
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004902/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004903 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004904 * @dev: DRM device
4905 * @data: ioctl data
4906 * @file_priv: DRM file info
4907 *
4908 * This function retrieves the current value for an object's property. Compared
4909 * to the connector specific ioctl this one is extended to also work on crtc and
4910 * plane objects.
4911 *
4912 * Called by the user via ioctl.
4913 *
4914 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004915 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004916 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004917int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4918 struct drm_file *file_priv)
4919{
4920 struct drm_mode_obj_get_properties *arg = data;
4921 struct drm_mode_object *obj;
4922 int ret = 0;
Paulo Zanonic5431882012-05-15 18:09:02 -03004923
4924 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4925 return -EINVAL;
4926
Daniel Vetter84849902012-12-02 00:28:11 +01004927 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004928
4929 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4930 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004931 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004932 goto out;
4933 }
4934 if (!obj->properties) {
4935 ret = -EINVAL;
4936 goto out;
4937 }
4938
Rob Clark88a48e22014-12-18 16:01:50 -05004939 ret = get_properties(obj, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05004940 (uint32_t __user *)(unsigned long)(arg->props_ptr),
4941 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
4942 &arg->count_props);
Paulo Zanonic5431882012-05-15 18:09:02 -03004943
Paulo Zanonic5431882012-05-15 18:09:02 -03004944out:
Daniel Vetter84849902012-12-02 00:28:11 +01004945 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004946 return ret;
4947}
4948
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004949/**
4950 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4951 * @dev: DRM device
4952 * @data: ioctl data
4953 * @file_priv: DRM file info
4954 *
4955 * This function sets the current value for an object's property. It also calls
4956 * into a driver's ->set_property callback to update the hardware state.
4957 * Compared to the connector specific ioctl this one is extended to also work on
4958 * crtc and plane objects.
4959 *
4960 * Called by the user via ioctl.
4961 *
4962 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004963 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004964 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004965int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4966 struct drm_file *file_priv)
4967{
4968 struct drm_mode_obj_set_property *arg = data;
4969 struct drm_mode_object *arg_obj;
4970 struct drm_mode_object *prop_obj;
4971 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05004972 int i, ret = -EINVAL;
4973 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03004974
4975 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4976 return -EINVAL;
4977
Daniel Vetter84849902012-12-02 00:28:11 +01004978 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004979
4980 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004981 if (!arg_obj) {
4982 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004983 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004984 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004985 if (!arg_obj->properties)
4986 goto out;
4987
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004988 for (i = 0; i < arg_obj->properties->count; i++)
Rob Clarkb17cd752014-12-16 18:05:30 -05004989 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
Paulo Zanonic5431882012-05-15 18:09:02 -03004990 break;
4991
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004992 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004993 goto out;
4994
4995 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4996 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004997 if (!prop_obj) {
4998 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004999 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005000 }
Paulo Zanonic5431882012-05-15 18:09:02 -03005001 property = obj_to_property(prop_obj);
5002
Rob Clark3843e712014-12-16 18:05:29 -05005003 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03005004 goto out;
5005
5006 switch (arg_obj->type) {
5007 case DRM_MODE_OBJECT_CONNECTOR:
5008 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
5009 arg->value);
5010 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03005011 case DRM_MODE_OBJECT_CRTC:
5012 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
5013 break;
Rob Clark4d939142012-05-17 02:23:27 -06005014 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01005015 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
5016 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06005017 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03005018 }
5019
Rob Clark3843e712014-12-16 18:05:29 -05005020 drm_property_change_valid_put(property, ref);
5021
Paulo Zanonic5431882012-05-15 18:09:02 -03005022out:
Daniel Vetter84849902012-12-02 00:28:11 +01005023 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03005024 return ret;
5025}
5026
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005027/**
5028 * drm_mode_connector_attach_encoder - attach a connector to an encoder
5029 * @connector: connector to attach
5030 * @encoder: encoder to attach @connector to
5031 *
5032 * This function links up a connector to an encoder. Note that the routing
5033 * restrictions between encoders and crtcs are exposed to userspace through the
5034 * possible_clones and possible_crtcs bitmasks.
5035 *
5036 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005037 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005038 */
Dave Airlief453ba02008-11-07 14:05:41 -08005039int drm_mode_connector_attach_encoder(struct drm_connector *connector,
5040 struct drm_encoder *encoder)
5041{
5042 int i;
5043
5044 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
5045 if (connector->encoder_ids[i] == 0) {
5046 connector->encoder_ids[i] = encoder->base.id;
5047 return 0;
5048 }
5049 }
5050 return -ENOMEM;
5051}
5052EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
5053
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005054/**
5055 * drm_mode_crtc_set_gamma_size - set the gamma table size
5056 * @crtc: CRTC to set the gamma table size for
5057 * @gamma_size: size of the gamma table
5058 *
5059 * Drivers which support gamma tables should set this to the supported gamma
5060 * table size when initializing the CRTC. Currently the drm core only supports a
5061 * fixed gamma table size.
5062 *
5063 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005064 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005065 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01005066int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005067 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08005068{
5069 crtc->gamma_size = gamma_size;
5070
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01005071 crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
5072 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08005073 if (!crtc->gamma_store) {
5074 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01005075 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08005076 }
5077
Sascha Hauer4cae5b82012-02-01 11:38:23 +01005078 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08005079}
5080EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
5081
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005082/**
5083 * drm_mode_gamma_set_ioctl - set the gamma table
5084 * @dev: DRM device
5085 * @data: ioctl data
5086 * @file_priv: DRM file info
5087 *
5088 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
5089 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
5090 *
5091 * Called by the user via ioctl.
5092 *
5093 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005094 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005095 */
Dave Airlief453ba02008-11-07 14:05:41 -08005096int drm_mode_gamma_set_ioctl(struct drm_device *dev,
5097 void *data, struct drm_file *file_priv)
5098{
5099 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08005100 struct drm_crtc *crtc;
5101 void *r_base, *g_base, *b_base;
5102 int size;
5103 int ret = 0;
5104
Dave Airliefb3b06c2011-02-08 13:55:21 +10005105 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5106 return -EINVAL;
5107
Daniel Vetter84849902012-12-02 00:28:11 +01005108 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04005109 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5110 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005111 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08005112 goto out;
5113 }
Dave Airlief453ba02008-11-07 14:05:41 -08005114
Laurent Pinchartebe0f242012-05-17 13:27:24 +02005115 if (crtc->funcs->gamma_set == NULL) {
5116 ret = -ENOSYS;
5117 goto out;
5118 }
5119
Dave Airlief453ba02008-11-07 14:05:41 -08005120 /* memcpy into gamma store */
5121 if (crtc_lut->gamma_size != crtc->gamma_size) {
5122 ret = -EINVAL;
5123 goto out;
5124 }
5125
5126 size = crtc_lut->gamma_size * (sizeof(uint16_t));
5127 r_base = crtc->gamma_store;
5128 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
5129 ret = -EFAULT;
5130 goto out;
5131 }
5132
5133 g_base = r_base + size;
5134 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
5135 ret = -EFAULT;
5136 goto out;
5137 }
5138
5139 b_base = g_base + size;
5140 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
5141 ret = -EFAULT;
5142 goto out;
5143 }
5144
James Simmons72034252010-08-03 01:33:19 +01005145 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08005146
5147out:
Daniel Vetter84849902012-12-02 00:28:11 +01005148 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08005149 return ret;
5150
5151}
5152
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005153/**
5154 * drm_mode_gamma_get_ioctl - get the gamma table
5155 * @dev: DRM device
5156 * @data: ioctl data
5157 * @file_priv: DRM file info
5158 *
5159 * Copy the current gamma table into the storage provided. This also provides
5160 * the gamma table size the driver expects, which can be used to size the
5161 * allocated storage.
5162 *
5163 * Called by the user via ioctl.
5164 *
5165 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005166 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005167 */
Dave Airlief453ba02008-11-07 14:05:41 -08005168int drm_mode_gamma_get_ioctl(struct drm_device *dev,
5169 void *data, struct drm_file *file_priv)
5170{
5171 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08005172 struct drm_crtc *crtc;
5173 void *r_base, *g_base, *b_base;
5174 int size;
5175 int ret = 0;
5176
Dave Airliefb3b06c2011-02-08 13:55:21 +10005177 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5178 return -EINVAL;
5179
Daniel Vetter84849902012-12-02 00:28:11 +01005180 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04005181 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5182 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005183 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08005184 goto out;
5185 }
Dave Airlief453ba02008-11-07 14:05:41 -08005186
5187 /* memcpy into gamma store */
5188 if (crtc_lut->gamma_size != crtc->gamma_size) {
5189 ret = -EINVAL;
5190 goto out;
5191 }
5192
5193 size = crtc_lut->gamma_size * (sizeof(uint16_t));
5194 r_base = crtc->gamma_store;
5195 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
5196 ret = -EFAULT;
5197 goto out;
5198 }
5199
5200 g_base = r_base + size;
5201 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
5202 ret = -EFAULT;
5203 goto out;
5204 }
5205
5206 b_base = g_base + size;
5207 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
5208 ret = -EFAULT;
5209 goto out;
5210 }
5211out:
Daniel Vetter84849902012-12-02 00:28:11 +01005212 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08005213 return ret;
5214}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005215
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005216/**
5217 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
5218 * @dev: DRM device
5219 * @data: ioctl data
5220 * @file_priv: DRM file info
5221 *
5222 * This schedules an asynchronous update on a given CRTC, called page flip.
5223 * Optionally a drm event is generated to signal the completion of the event.
5224 * Generic drivers cannot assume that a pageflip with changed framebuffer
5225 * properties (including driver specific metadata like tiling layout) will work,
5226 * but some drivers support e.g. pixel format changes through the pageflip
5227 * ioctl.
5228 *
5229 * Called by the user via ioctl.
5230 *
5231 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005232 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005233 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005234int drm_mode_page_flip_ioctl(struct drm_device *dev,
5235 void *data, struct drm_file *file_priv)
5236{
5237 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005238 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02005239 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005240 struct drm_pending_vblank_event *e = NULL;
5241 unsigned long flags;
5242 int ret = -EINVAL;
5243
5244 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
5245 page_flip->reserved != 0)
5246 return -EINVAL;
5247
Keith Packard62f21042013-07-22 18:50:00 -07005248 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
5249 return -EINVAL;
5250
Rob Clarka2b34e22013-10-05 16:36:52 -04005251 crtc = drm_crtc_find(dev, page_flip->crtc_id);
5252 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005253 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005254
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01005255 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07005256 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01005257 /* The framebuffer is currently unbound, presumably
5258 * due to a hotplug event, that userspace has not
5259 * yet discovered.
5260 */
5261 ret = -EBUSY;
5262 goto out;
5263 }
5264
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005265 if (crtc->funcs->page_flip == NULL)
5266 goto out;
5267
Daniel Vetter786b99e2012-12-02 21:53:40 +01005268 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03005269 if (!fb) {
5270 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005271 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03005272 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005273
Damien Lespiauc11e9282013-09-25 16:45:30 +01005274 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
5275 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02005276 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02005277
Matt Roperf4510a22014-04-01 15:22:40 -07005278 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02005279 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
5280 ret = -EINVAL;
5281 goto out;
5282 }
5283
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005284 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5285 ret = -ENOMEM;
5286 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005287 if (file_priv->event_space < sizeof(e->event)) {
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005288 spin_unlock_irqrestore(&dev->event_lock, flags);
5289 goto out;
5290 }
Thierry Redingf76511b2014-12-10 13:03:40 +01005291 file_priv->event_space -= sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005292 spin_unlock_irqrestore(&dev->event_lock, flags);
5293
Thierry Redingf76511b2014-12-10 13:03:40 +01005294 e = kzalloc(sizeof(*e), GFP_KERNEL);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005295 if (e == NULL) {
5296 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005297 file_priv->event_space += sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005298 spin_unlock_irqrestore(&dev->event_lock, flags);
5299 goto out;
5300 }
5301
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08005302 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Thierry Redingf76511b2014-12-10 13:03:40 +01005303 e->event.base.length = sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005304 e->event.user_data = page_flip->user_data;
5305 e->base.event = &e->event.base;
5306 e->base.file_priv = file_priv;
5307 e->base.destroy =
5308 (void (*) (struct drm_pending_event *)) kfree;
5309 }
5310
Daniel Vetter3d30a592014-07-27 13:42:42 +02005311 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07005312 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005313 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005314 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5315 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005316 file_priv->event_space += sizeof(e->event);
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005317 spin_unlock_irqrestore(&dev->event_lock, flags);
5318 kfree(e);
5319 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01005320 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02005321 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01005322 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01005323 /*
5324 * Warn if the driver hasn't properly updated the crtc->fb
5325 * field to reflect that the new framebuffer is now used.
5326 * Failing to do so will screw with the reference counting
5327 * on framebuffers.
5328 */
Matt Roperf4510a22014-04-01 15:22:40 -07005329 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01005330 /* Unref only the old framebuffer. */
5331 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005332 }
5333
5334out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01005335 if (fb)
5336 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02005337 if (crtc->primary->old_fb)
5338 drm_framebuffer_unreference(crtc->primary->old_fb);
5339 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02005340 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01005341
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005342 return ret;
5343}
Chris Wilsoneb033552011-01-24 15:11:08 +00005344
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005345/**
5346 * drm_mode_config_reset - call ->reset callbacks
5347 * @dev: drm device
5348 *
5349 * This functions calls all the crtc's, encoder's and connector's ->reset
5350 * callback. Drivers can use this in e.g. their driver load or resume code to
5351 * reset hardware and software state.
5352 */
Chris Wilsoneb033552011-01-24 15:11:08 +00005353void drm_mode_config_reset(struct drm_device *dev)
5354{
5355 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005356 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00005357 struct drm_encoder *encoder;
5358 struct drm_connector *connector;
5359
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005360 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
5361 if (plane->funcs->reset)
5362 plane->funcs->reset(plane);
5363
Chris Wilsoneb033552011-01-24 15:11:08 +00005364 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
5365 if (crtc->funcs->reset)
5366 crtc->funcs->reset(crtc);
5367
5368 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
5369 if (encoder->funcs->reset)
5370 encoder->funcs->reset(encoder);
5371
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00005372 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
5373 connector->status = connector_status_unknown;
5374
Chris Wilsoneb033552011-01-24 15:11:08 +00005375 if (connector->funcs->reset)
5376 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00005377 }
Chris Wilsoneb033552011-01-24 15:11:08 +00005378}
5379EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10005380
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005381/**
5382 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
5383 * @dev: DRM device
5384 * @data: ioctl data
5385 * @file_priv: DRM file info
5386 *
5387 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
5388 * TTM or something else entirely) and returns the resulting buffer handle. This
5389 * handle can then be wrapped up into a framebuffer modeset object.
5390 *
5391 * Note that userspace is not allowed to use such objects for render
5392 * acceleration - drivers must create their own private ioctls for such a use
5393 * case.
5394 *
5395 * Called by the user via ioctl.
5396 *
5397 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005398 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005399 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005400int drm_mode_create_dumb_ioctl(struct drm_device *dev,
5401 void *data, struct drm_file *file_priv)
5402{
5403 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01005404 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10005405
5406 if (!dev->driver->dumb_create)
5407 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01005408 if (!args->width || !args->height || !args->bpp)
5409 return -EINVAL;
5410
5411 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02005412 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01005413 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02005414 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01005415 return -EINVAL;
5416 stride = cpp * args->width;
5417 if (args->height > 0xffffffffU / stride)
5418 return -EINVAL;
5419
5420 /* test for wrap-around */
5421 size = args->height * stride;
5422 if (PAGE_ALIGN(size) == 0)
5423 return -EINVAL;
5424
Thierry Redingf6085952014-11-03 11:14:14 +01005425 /*
5426 * handle, pitch and size are output parameters. Zero them out to
5427 * prevent drivers from accidentally using uninitialized data. Since
5428 * not all existing userspace is clearing these fields properly we
5429 * cannot reject IOCTL with garbage in them.
5430 */
5431 args->handle = 0;
5432 args->pitch = 0;
5433 args->size = 0;
5434
Dave Airlieff72145b2011-02-07 12:16:14 +10005435 return dev->driver->dumb_create(file_priv, dev, args);
5436}
5437
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005438/**
5439 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5440 * @dev: DRM device
5441 * @data: ioctl data
5442 * @file_priv: DRM file info
5443 *
5444 * Allocate an offset in the drm device node's address space to be able to
5445 * memory map a dumb buffer.
5446 *
5447 * Called by the user via ioctl.
5448 *
5449 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005450 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005451 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005452int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5453 void *data, struct drm_file *file_priv)
5454{
5455 struct drm_mode_map_dumb *args = data;
5456
5457 /* call driver ioctl to get mmap offset */
5458 if (!dev->driver->dumb_map_offset)
5459 return -ENOSYS;
5460
5461 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5462}
5463
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005464/**
5465 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5466 * @dev: DRM device
5467 * @data: ioctl data
5468 * @file_priv: DRM file info
5469 *
5470 * This destroys the userspace handle for the given dumb backing storage buffer.
5471 * Since buffer objects must be reference counted in the kernel a buffer object
5472 * won't be immediately freed if a framebuffer modeset object still uses it.
5473 *
5474 * Called by the user via ioctl.
5475 *
5476 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005477 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005478 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005479int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5480 void *data, struct drm_file *file_priv)
5481{
5482 struct drm_mode_destroy_dumb *args = data;
5483
5484 if (!dev->driver->dumb_destroy)
5485 return -ENOSYS;
5486
5487 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5488}
Dave Airlie248dbc22011-11-29 20:02:54 +00005489
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005490/**
5491 * drm_fb_get_bpp_depth - get the bpp/depth values for format
5492 * @format: pixel format (DRM_FORMAT_*)
5493 * @depth: storage for the depth value
5494 * @bpp: storage for the bpp value
5495 *
5496 * This only supports RGB formats here for compat with code that doesn't use
5497 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00005498 */
5499void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5500 int *bpp)
5501{
5502 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02005503 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02005504 case DRM_FORMAT_RGB332:
5505 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00005506 *depth = 8;
5507 *bpp = 8;
5508 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005509 case DRM_FORMAT_XRGB1555:
5510 case DRM_FORMAT_XBGR1555:
5511 case DRM_FORMAT_RGBX5551:
5512 case DRM_FORMAT_BGRX5551:
5513 case DRM_FORMAT_ARGB1555:
5514 case DRM_FORMAT_ABGR1555:
5515 case DRM_FORMAT_RGBA5551:
5516 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005517 *depth = 15;
5518 *bpp = 16;
5519 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005520 case DRM_FORMAT_RGB565:
5521 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005522 *depth = 16;
5523 *bpp = 16;
5524 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005525 case DRM_FORMAT_RGB888:
5526 case DRM_FORMAT_BGR888:
5527 *depth = 24;
5528 *bpp = 24;
5529 break;
5530 case DRM_FORMAT_XRGB8888:
5531 case DRM_FORMAT_XBGR8888:
5532 case DRM_FORMAT_RGBX8888:
5533 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005534 *depth = 24;
5535 *bpp = 32;
5536 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005537 case DRM_FORMAT_XRGB2101010:
5538 case DRM_FORMAT_XBGR2101010:
5539 case DRM_FORMAT_RGBX1010102:
5540 case DRM_FORMAT_BGRX1010102:
5541 case DRM_FORMAT_ARGB2101010:
5542 case DRM_FORMAT_ABGR2101010:
5543 case DRM_FORMAT_RGBA1010102:
5544 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005545 *depth = 30;
5546 *bpp = 32;
5547 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005548 case DRM_FORMAT_ARGB8888:
5549 case DRM_FORMAT_ABGR8888:
5550 case DRM_FORMAT_RGBA8888:
5551 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005552 *depth = 32;
5553 *bpp = 32;
5554 break;
5555 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005556 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5557 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005558 *depth = 0;
5559 *bpp = 0;
5560 break;
5561 }
5562}
5563EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005564
5565/**
5566 * drm_format_num_planes - get the number of planes for format
5567 * @format: pixel format (DRM_FORMAT_*)
5568 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005569 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005570 * The number of planes used by the specified pixel format.
5571 */
5572int drm_format_num_planes(uint32_t format)
5573{
5574 switch (format) {
5575 case DRM_FORMAT_YUV410:
5576 case DRM_FORMAT_YVU410:
5577 case DRM_FORMAT_YUV411:
5578 case DRM_FORMAT_YVU411:
5579 case DRM_FORMAT_YUV420:
5580 case DRM_FORMAT_YVU420:
5581 case DRM_FORMAT_YUV422:
5582 case DRM_FORMAT_YVU422:
5583 case DRM_FORMAT_YUV444:
5584 case DRM_FORMAT_YVU444:
5585 return 3;
5586 case DRM_FORMAT_NV12:
5587 case DRM_FORMAT_NV21:
5588 case DRM_FORMAT_NV16:
5589 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005590 case DRM_FORMAT_NV24:
5591 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005592 return 2;
5593 default:
5594 return 1;
5595 }
5596}
5597EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005598
5599/**
5600 * drm_format_plane_cpp - determine the bytes per pixel value
5601 * @format: pixel format (DRM_FORMAT_*)
5602 * @plane: plane index
5603 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005604 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005605 * The bytes per pixel value for the specified plane.
5606 */
5607int drm_format_plane_cpp(uint32_t format, int plane)
5608{
5609 unsigned int depth;
5610 int bpp;
5611
5612 if (plane >= drm_format_num_planes(format))
5613 return 0;
5614
5615 switch (format) {
5616 case DRM_FORMAT_YUYV:
5617 case DRM_FORMAT_YVYU:
5618 case DRM_FORMAT_UYVY:
5619 case DRM_FORMAT_VYUY:
5620 return 2;
5621 case DRM_FORMAT_NV12:
5622 case DRM_FORMAT_NV21:
5623 case DRM_FORMAT_NV16:
5624 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005625 case DRM_FORMAT_NV24:
5626 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005627 return plane ? 2 : 1;
5628 case DRM_FORMAT_YUV410:
5629 case DRM_FORMAT_YVU410:
5630 case DRM_FORMAT_YUV411:
5631 case DRM_FORMAT_YVU411:
5632 case DRM_FORMAT_YUV420:
5633 case DRM_FORMAT_YVU420:
5634 case DRM_FORMAT_YUV422:
5635 case DRM_FORMAT_YVU422:
5636 case DRM_FORMAT_YUV444:
5637 case DRM_FORMAT_YVU444:
5638 return 1;
5639 default:
5640 drm_fb_get_bpp_depth(format, &depth, &bpp);
5641 return bpp >> 3;
5642 }
5643}
5644EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005645
5646/**
5647 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5648 * @format: pixel format (DRM_FORMAT_*)
5649 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005650 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005651 * The horizontal chroma subsampling factor for the
5652 * specified pixel format.
5653 */
5654int drm_format_horz_chroma_subsampling(uint32_t format)
5655{
5656 switch (format) {
5657 case DRM_FORMAT_YUV411:
5658 case DRM_FORMAT_YVU411:
5659 case DRM_FORMAT_YUV410:
5660 case DRM_FORMAT_YVU410:
5661 return 4;
5662 case DRM_FORMAT_YUYV:
5663 case DRM_FORMAT_YVYU:
5664 case DRM_FORMAT_UYVY:
5665 case DRM_FORMAT_VYUY:
5666 case DRM_FORMAT_NV12:
5667 case DRM_FORMAT_NV21:
5668 case DRM_FORMAT_NV16:
5669 case DRM_FORMAT_NV61:
5670 case DRM_FORMAT_YUV422:
5671 case DRM_FORMAT_YVU422:
5672 case DRM_FORMAT_YUV420:
5673 case DRM_FORMAT_YVU420:
5674 return 2;
5675 default:
5676 return 1;
5677 }
5678}
5679EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5680
5681/**
5682 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5683 * @format: pixel format (DRM_FORMAT_*)
5684 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005685 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005686 * The vertical chroma subsampling factor for the
5687 * specified pixel format.
5688 */
5689int drm_format_vert_chroma_subsampling(uint32_t format)
5690{
5691 switch (format) {
5692 case DRM_FORMAT_YUV410:
5693 case DRM_FORMAT_YVU410:
5694 return 4;
5695 case DRM_FORMAT_YUV420:
5696 case DRM_FORMAT_YVU420:
5697 case DRM_FORMAT_NV12:
5698 case DRM_FORMAT_NV21:
5699 return 2;
5700 default:
5701 return 1;
5702 }
5703}
5704EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005705
5706/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305707 * drm_rotation_simplify() - Try to simplify the rotation
5708 * @rotation: Rotation to be simplified
5709 * @supported_rotations: Supported rotations
5710 *
5711 * Attempt to simplify the rotation to a form that is supported.
5712 * Eg. if the hardware supports everything except DRM_REFLECT_X
5713 * one could call this function like this:
5714 *
5715 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5716 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5717 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5718 *
5719 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5720 * transforms the hardware supports, this function may not
5721 * be able to produce a supported transform, so the caller should
5722 * check the result afterwards.
5723 */
5724unsigned int drm_rotation_simplify(unsigned int rotation,
5725 unsigned int supported_rotations)
5726{
5727 if (rotation & ~supported_rotations) {
5728 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5729 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5730 }
5731
5732 return rotation;
5733}
5734EXPORT_SYMBOL(drm_rotation_simplify);
5735
5736/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005737 * drm_mode_config_init - initialize DRM mode_configuration structure
5738 * @dev: DRM device
5739 *
5740 * Initialize @dev's mode_config structure, used for tracking the graphics
5741 * configuration of @dev.
5742 *
5743 * Since this initializes the modeset locks, no locking is possible. Which is no
5744 * problem, since this should happen single threaded at init time. It is the
5745 * driver's problem to ensure this guarantee.
5746 *
5747 */
5748void drm_mode_config_init(struct drm_device *dev)
5749{
5750 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005751 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005752 mutex_init(&dev->mode_config.idr_mutex);
5753 mutex_init(&dev->mode_config.fb_lock);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01005754 mutex_init(&dev->mode_config.blob_lock);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005755 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5756 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5757 INIT_LIST_HEAD(&dev->mode_config.connector_list);
5758 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5759 INIT_LIST_HEAD(&dev->mode_config.property_list);
5760 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5761 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5762 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005763 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005764
5765 drm_modeset_lock_all(dev);
Rob Clark6b4959f2014-12-18 16:01:53 -05005766 drm_mode_create_standard_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005767 drm_modeset_unlock_all(dev);
5768
5769 /* Just to be sure */
5770 dev->mode_config.num_fb = 0;
5771 dev->mode_config.num_connector = 0;
5772 dev->mode_config.num_crtc = 0;
5773 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005774 dev->mode_config.num_overlay_plane = 0;
5775 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005776}
5777EXPORT_SYMBOL(drm_mode_config_init);
5778
5779/**
5780 * drm_mode_config_cleanup - free up DRM mode_config info
5781 * @dev: DRM device
5782 *
5783 * Free up all the connectors and CRTCs associated with this DRM device, then
5784 * free up the framebuffers and associated buffer objects.
5785 *
5786 * Note that since this /should/ happen single-threaded at driver/device
5787 * teardown time, no locking is required. It's the driver's job to ensure that
5788 * this guarantee actually holds true.
5789 *
5790 * FIXME: cleanup any dangling user buffer objects too
5791 */
5792void drm_mode_config_cleanup(struct drm_device *dev)
5793{
5794 struct drm_connector *connector, *ot;
5795 struct drm_crtc *crtc, *ct;
5796 struct drm_encoder *encoder, *enct;
5797 struct drm_framebuffer *fb, *fbt;
5798 struct drm_property *property, *pt;
5799 struct drm_property_blob *blob, *bt;
5800 struct drm_plane *plane, *plt;
5801
5802 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5803 head) {
5804 encoder->funcs->destroy(encoder);
5805 }
5806
5807 list_for_each_entry_safe(connector, ot,
5808 &dev->mode_config.connector_list, head) {
5809 connector->funcs->destroy(connector);
5810 }
5811
5812 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5813 head) {
5814 drm_property_destroy(dev, property);
5815 }
5816
5817 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01005818 head_global) {
Daniel Stone6bcacf52015-04-20 19:22:55 +01005819 drm_property_unreference_blob(blob);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005820 }
5821
5822 /*
5823 * Single-threaded teardown context, so it's not required to grab the
5824 * fb_lock to protect against concurrent fb_list access. Contrary, it
5825 * would actually deadlock with the drm_framebuffer_cleanup function.
5826 *
5827 * Also, if there are any framebuffers left, that's a driver leak now,
5828 * so politely WARN about this.
5829 */
5830 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5831 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5832 drm_framebuffer_remove(fb);
5833 }
5834
5835 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5836 head) {
5837 plane->funcs->destroy(plane);
5838 }
5839
5840 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5841 crtc->funcs->destroy(crtc);
5842 }
5843
Dave Airlie138f9eb2014-10-20 16:17:17 +10005844 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005845 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005846 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005847}
5848EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305849
5850struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5851 unsigned int supported_rotations)
5852{
5853 static const struct drm_prop_enum_list props[] = {
5854 { DRM_ROTATE_0, "rotate-0" },
5855 { DRM_ROTATE_90, "rotate-90" },
5856 { DRM_ROTATE_180, "rotate-180" },
5857 { DRM_ROTATE_270, "rotate-270" },
5858 { DRM_REFLECT_X, "reflect-x" },
5859 { DRM_REFLECT_Y, "reflect-y" },
5860 };
5861
5862 return drm_property_create_bitmask(dev, 0, "rotation",
5863 props, ARRAY_SIZE(props),
5864 supported_rotations);
5865}
5866EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005867
5868/**
5869 * DOC: Tile group
5870 *
5871 * Tile groups are used to represent tiled monitors with a unique
5872 * integer identifier. Tiled monitors using DisplayID v1.3 have
5873 * a unique 8-byte handle, we store this in a tile group, so we
5874 * have a common identifier for all tiles in a monitor group.
5875 */
5876static void drm_tile_group_free(struct kref *kref)
5877{
5878 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5879 struct drm_device *dev = tg->dev;
5880 mutex_lock(&dev->mode_config.idr_mutex);
5881 idr_remove(&dev->mode_config.tile_idr, tg->id);
5882 mutex_unlock(&dev->mode_config.idr_mutex);
5883 kfree(tg);
5884}
5885
5886/**
5887 * drm_mode_put_tile_group - drop a reference to a tile group.
5888 * @dev: DRM device
5889 * @tg: tile group to drop reference to.
5890 *
5891 * drop reference to tile group and free if 0.
5892 */
5893void drm_mode_put_tile_group(struct drm_device *dev,
5894 struct drm_tile_group *tg)
5895{
5896 kref_put(&tg->refcount, drm_tile_group_free);
5897}
5898
5899/**
5900 * drm_mode_get_tile_group - get a reference to an existing tile group
5901 * @dev: DRM device
5902 * @topology: 8-bytes unique per monitor.
5903 *
5904 * Use the unique bytes to get a reference to an existing tile group.
5905 *
5906 * RETURNS:
5907 * tile group or NULL if not found.
5908 */
5909struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5910 char topology[8])
5911{
5912 struct drm_tile_group *tg;
5913 int id;
5914 mutex_lock(&dev->mode_config.idr_mutex);
5915 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5916 if (!memcmp(tg->group_data, topology, 8)) {
5917 if (!kref_get_unless_zero(&tg->refcount))
5918 tg = NULL;
5919 mutex_unlock(&dev->mode_config.idr_mutex);
5920 return tg;
5921 }
5922 }
5923 mutex_unlock(&dev->mode_config.idr_mutex);
5924 return NULL;
5925}
Rob Clark81ddd1b2015-03-27 13:01:52 -04005926EXPORT_SYMBOL(drm_mode_get_tile_group);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005927
5928/**
5929 * drm_mode_create_tile_group - create a tile group from a displayid description
5930 * @dev: DRM device
5931 * @topology: 8-bytes unique per monitor.
5932 *
5933 * Create a tile group for the unique monitor, and get a unique
5934 * identifier for the tile group.
5935 *
5936 * RETURNS:
5937 * new tile group or error.
5938 */
5939struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5940 char topology[8])
5941{
5942 struct drm_tile_group *tg;
5943 int ret;
5944
5945 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5946 if (!tg)
5947 return ERR_PTR(-ENOMEM);
5948
5949 kref_init(&tg->refcount);
5950 memcpy(tg->group_data, topology, 8);
5951 tg->dev = dev;
5952
5953 mutex_lock(&dev->mode_config.idr_mutex);
5954 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5955 if (ret >= 0) {
5956 tg->id = ret;
5957 } else {
5958 kfree(tg);
5959 tg = ERR_PTR(ret);
5960 }
5961
5962 mutex_unlock(&dev->mode_config.idr_mutex);
5963 return tg;
5964}
Rob Clark81ddd1b2015-03-27 13:01:52 -04005965EXPORT_SYMBOL(drm_mode_create_tile_group);