blob: 4003bdb8126353de10c5470ea6fadd8256660762 [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:
Lukas Wunner3c67d832015-10-15 11:56:56 +0200309 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800310 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100311int drm_mode_object_get(struct drm_device *dev,
312 struct drm_mode_object *obj, uint32_t obj_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800313{
Dave Airlie2ee39452014-07-24 11:53:45 +1000314 return drm_mode_object_get_reg(dev, obj, obj_type, true);
315}
Dave Airlief453ba02008-11-07 14:05:41 -0800316
Dave Airlie2ee39452014-07-24 11:53:45 +1000317static void drm_mode_object_register(struct drm_device *dev,
318 struct drm_mode_object *obj)
319{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000320 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlie2ee39452014-07-24 11:53:45 +1000321 idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000322 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800323}
324
325/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100326 * drm_mode_object_put - free a modeset identifer
Dave Airlief453ba02008-11-07 14:05:41 -0800327 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100328 * @object: object to free
Dave Airlief453ba02008-11-07 14:05:41 -0800329 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100330 * Free @id from @dev's unique identifier pool. Note that despite the _get
331 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
332 * for reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800333 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100334void drm_mode_object_put(struct drm_device *dev,
335 struct drm_mode_object *object)
Dave Airlief453ba02008-11-07 14:05:41 -0800336{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000337 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800338 idr_remove(&dev->mode_config.crtc_idr, object->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000339 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800340}
341
Rob Clark98f75de2014-05-30 11:37:03 -0400342static struct drm_mode_object *_object_find(struct drm_device *dev,
343 uint32_t id, uint32_t type)
344{
345 struct drm_mode_object *obj = NULL;
346
347 mutex_lock(&dev->mode_config.idr_mutex);
348 obj = idr_find(&dev->mode_config.crtc_idr, id);
Daniel Vetter168c02e2014-07-24 12:12:45 +0200349 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
350 obj = NULL;
351 if (obj && obj->id != id)
352 obj = NULL;
353 /* don't leak out unref'd fb's */
Daniel Stone6bcacf52015-04-20 19:22:55 +0100354 if (obj &&
355 (obj->type == DRM_MODE_OBJECT_FB ||
356 obj->type == DRM_MODE_OBJECT_BLOB))
Rob Clark98f75de2014-05-30 11:37:03 -0400357 obj = NULL;
358 mutex_unlock(&dev->mode_config.idr_mutex);
359
360 return obj;
361}
362
Daniel Vetter786b99e2012-12-02 21:53:40 +0100363/**
364 * drm_mode_object_find - look up a drm object with static lifetime
365 * @dev: drm device
366 * @id: id of the mode object
367 * @type: type of the mode object
368 *
369 * Note that framebuffers cannot be looked up with this functions - since those
Rob Clark98f75de2014-05-30 11:37:03 -0400370 * are reference counted, they need special treatment. Even with
371 * DRM_MODE_OBJECT_ANY (although that will simply return NULL
372 * rather than WARN_ON()).
Daniel Vetter786b99e2012-12-02 21:53:40 +0100373 */
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200374struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
375 uint32_t id, uint32_t type)
Dave Airlief453ba02008-11-07 14:05:41 -0800376{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000377 struct drm_mode_object *obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800378
Daniel Vetter786b99e2012-12-02 21:53:40 +0100379 /* Framebuffers are reference counted and need their own lookup
380 * function.*/
Daniel Stone6bcacf52015-04-20 19:22:55 +0100381 WARN_ON(type == DRM_MODE_OBJECT_FB || type == DRM_MODE_OBJECT_BLOB);
Rob Clark98f75de2014-05-30 11:37:03 -0400382 obj = _object_find(dev, id, type);
Dave Airlief453ba02008-11-07 14:05:41 -0800383 return obj;
384}
385EXPORT_SYMBOL(drm_mode_object_find);
386
387/**
Dave Airlief453ba02008-11-07 14:05:41 -0800388 * drm_framebuffer_init - initialize a framebuffer
389 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100390 * @fb: framebuffer to be initialized
391 * @funcs: ... with these functions
Dave Airlief453ba02008-11-07 14:05:41 -0800392 *
Dave Airlief453ba02008-11-07 14:05:41 -0800393 * Allocates an ID for the framebuffer's parent mode object, sets its mode
394 * functions & device file and adds it to the master fd list.
395 *
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100396 * IMPORTANT:
397 * This functions publishes the fb and makes it available for concurrent access
398 * by other users. Which means by this point the fb _must_ be fully set up -
399 * since all the fb attributes are invariant over its lifetime, no further
400 * locking but only correct reference counting is required.
401 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100402 * Returns:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200403 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800404 */
405int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
406 const struct drm_framebuffer_funcs *funcs)
407{
408 int ret;
409
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100410 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000411 kref_init(&fb->refcount);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100412 INIT_LIST_HEAD(&fb->filp_head);
413 fb->dev = dev;
414 fb->funcs = funcs;
Rob Clarkf7eff602012-09-05 21:48:38 +0000415
Dave Airlief453ba02008-11-07 14:05:41 -0800416 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200417 if (ret)
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100418 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800419
Dave Airlief453ba02008-11-07 14:05:41 -0800420 dev->mode_config.num_fb++;
421 list_add(&fb->head, &dev->mode_config.fb_list);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100422out:
423 mutex_unlock(&dev->mode_config.fb_lock);
Dave Airlief453ba02008-11-07 14:05:41 -0800424
Lukas Wunner3c67d832015-10-15 11:56:56 +0200425 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800426}
427EXPORT_SYMBOL(drm_framebuffer_init);
428
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200429/* dev->mode_config.fb_lock must be held! */
430static void __drm_framebuffer_unregister(struct drm_device *dev,
431 struct drm_framebuffer *fb)
432{
433 mutex_lock(&dev->mode_config.idr_mutex);
434 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
435 mutex_unlock(&dev->mode_config.idr_mutex);
436
437 fb->base.id = 0;
438}
439
Rob Clarkf7eff602012-09-05 21:48:38 +0000440static void drm_framebuffer_free(struct kref *kref)
441{
442 struct drm_framebuffer *fb =
443 container_of(kref, struct drm_framebuffer, refcount);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200444 struct drm_device *dev = fb->dev;
445
446 /*
447 * The lookup idr holds a weak reference, which has not necessarily been
448 * removed at this point. Check for that.
449 */
450 mutex_lock(&dev->mode_config.fb_lock);
451 if (fb->base.id) {
452 /* Mark fb as reaped and drop idr ref. */
453 __drm_framebuffer_unregister(dev, fb);
454 }
455 mutex_unlock(&dev->mode_config.fb_lock);
456
Rob Clarkf7eff602012-09-05 21:48:38 +0000457 fb->funcs->destroy(fb);
458}
459
Daniel Vetter2b677e82012-12-10 21:16:05 +0100460static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
461 uint32_t id)
462{
463 struct drm_mode_object *obj = NULL;
464 struct drm_framebuffer *fb;
465
466 mutex_lock(&dev->mode_config.idr_mutex);
467 obj = idr_find(&dev->mode_config.crtc_idr, id);
468 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
469 fb = NULL;
470 else
471 fb = obj_to_fb(obj);
472 mutex_unlock(&dev->mode_config.idr_mutex);
473
474 return fb;
475}
476
Rob Clarkf7eff602012-09-05 21:48:38 +0000477/**
Daniel Vetter786b99e2012-12-02 21:53:40 +0100478 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
479 * @dev: drm device
480 * @id: id of the fb object
481 *
482 * If successful, this grabs an additional reference to the framebuffer -
483 * callers need to make sure to eventually unreference the returned framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100484 * again, using @drm_framebuffer_unreference.
Daniel Vetter786b99e2012-12-02 21:53:40 +0100485 */
486struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
487 uint32_t id)
488{
Daniel Vetter786b99e2012-12-02 21:53:40 +0100489 struct drm_framebuffer *fb;
490
491 mutex_lock(&dev->mode_config.fb_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100492 fb = __drm_framebuffer_lookup(dev, id);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200493 if (fb) {
494 if (!kref_get_unless_zero(&fb->refcount))
495 fb = NULL;
496 }
Daniel Vetter786b99e2012-12-02 21:53:40 +0100497 mutex_unlock(&dev->mode_config.fb_lock);
498
499 return fb;
500}
501EXPORT_SYMBOL(drm_framebuffer_lookup);
502
503/**
Rob Clarkf7eff602012-09-05 21:48:38 +0000504 * drm_framebuffer_unreference - unref a framebuffer
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100505 * @fb: framebuffer to unref
506 *
507 * This functions decrements the fb's refcount and frees it if it drops to zero.
Rob Clarkf7eff602012-09-05 21:48:38 +0000508 */
509void drm_framebuffer_unreference(struct drm_framebuffer *fb)
510{
Rob Clark82912722014-03-18 10:07:08 -0400511 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000512 kref_put(&fb->refcount, drm_framebuffer_free);
513}
514EXPORT_SYMBOL(drm_framebuffer_unreference);
515
516/**
517 * drm_framebuffer_reference - incr the fb refcnt
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100518 * @fb: framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100519 *
520 * This functions increments the fb's refcount.
Rob Clarkf7eff602012-09-05 21:48:38 +0000521 */
522void drm_framebuffer_reference(struct drm_framebuffer *fb)
523{
Rob Clark82912722014-03-18 10:07:08 -0400524 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000525 kref_get(&fb->refcount);
526}
527EXPORT_SYMBOL(drm_framebuffer_reference);
528
Dave Airlief453ba02008-11-07 14:05:41 -0800529/**
Daniel Vetter36206362012-12-10 20:42:17 +0100530 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
531 * @fb: fb to unregister
532 *
533 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
534 * those used for fbdev. Note that the caller must hold a reference of it's own,
535 * i.e. the object may not be destroyed through this call (since it'll lead to a
536 * locking inversion).
537 */
538void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
539{
Daniel Vettera39a3572015-08-25 15:45:11 +0200540 struct drm_device *dev;
541
542 if (!fb)
543 return;
544
545 dev = fb->dev;
Daniel Vetter2b677e82012-12-10 21:16:05 +0100546
547 mutex_lock(&dev->mode_config.fb_lock);
548 /* Mark fb as reaped and drop idr ref. */
549 __drm_framebuffer_unregister(dev, fb);
550 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100551}
552EXPORT_SYMBOL(drm_framebuffer_unregister_private);
553
554/**
Dave Airlief453ba02008-11-07 14:05:41 -0800555 * drm_framebuffer_cleanup - remove a framebuffer object
556 * @fb: framebuffer to remove
557 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100558 * Cleanup framebuffer. This function is intended to be used from the drivers
559 * ->destroy callback. It can also be used to clean up driver private
560 * framebuffers embedded into a larger structure.
Daniel Vetter36206362012-12-10 20:42:17 +0100561 *
562 * Note that this function does not remove the fb from active usuage - if it is
563 * still used anywhere, hilarity can ensue since userspace could call getfb on
564 * the id and get back -EINVAL. Obviously no concern at driver unload time.
565 *
566 * Also, the framebuffer will not be removed from the lookup idr - for
567 * user-created framebuffers this will happen in in the rmfb ioctl. For
568 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
569 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800570 */
571void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
572{
573 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100574
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100575 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000576 list_del(&fb->head);
577 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100578 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000579}
580EXPORT_SYMBOL(drm_framebuffer_cleanup);
581
582/**
583 * drm_framebuffer_remove - remove and unreference a framebuffer object
584 * @fb: framebuffer to remove
585 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000586 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100587 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100588 * passed-in framebuffer. Might take the modeset locks.
589 *
590 * Note that this function optimizes the cleanup away if the caller holds the
591 * last reference to the framebuffer. It is also guaranteed to not take the
592 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000593 */
594void drm_framebuffer_remove(struct drm_framebuffer *fb)
595{
Daniel Vettera39a3572015-08-25 15:45:11 +0200596 struct drm_device *dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800597 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800598 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000599 struct drm_mode_set set;
600 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800601
Daniel Vettera39a3572015-08-25 15:45:11 +0200602 if (!fb)
603 return;
604
605 dev = fb->dev;
606
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100607 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100608
Daniel Vetterb62584e2012-12-11 16:51:35 +0100609 /*
610 * drm ABI mandates that we remove any deleted framebuffers from active
611 * useage. But since most sane clients only remove framebuffers they no
612 * longer need, try to optimize this away.
613 *
614 * Since we're holding a reference ourselves, observing a refcount of 1
615 * means that we're the last holder and can skip it. Also, the refcount
616 * can never increase from 1 again, so we don't need any barriers or
617 * locks.
618 *
619 * Note that userspace could try to race with use and instate a new
620 * usage _after_ we've cleared all current ones. End result will be an
621 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
622 * in this manner.
623 */
624 if (atomic_read(&fb->refcount.refcount) > 1) {
625 drm_modeset_lock_all(dev);
626 /* remove from any CRTC */
Daniel Vetter6295d602015-07-09 23:44:25 +0200627 drm_for_each_crtc(crtc, dev) {
Matt Roperf4510a22014-04-01 15:22:40 -0700628 if (crtc->primary->fb == fb) {
Daniel Vetterb62584e2012-12-11 16:51:35 +0100629 /* should turn off the crtc */
630 memset(&set, 0, sizeof(struct drm_mode_set));
631 set.crtc = crtc;
632 set.fb = NULL;
633 ret = drm_mode_set_config_internal(&set);
634 if (ret)
635 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
636 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000637 }
Dave Airlief453ba02008-11-07 14:05:41 -0800638
Daniel Vetter6295d602015-07-09 23:44:25 +0200639 drm_for_each_plane(plane, dev) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300640 if (plane->fb == fb)
641 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800642 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100643 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800644 }
645
Rob Clarkf7eff602012-09-05 21:48:38 +0000646 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800647}
Rob Clarkf7eff602012-09-05 21:48:38 +0000648EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800649
Rob Clark51fd3712013-11-19 12:10:12 -0500650DEFINE_WW_CLASS(crtc_ww_class);
651
Dave Airlief453ba02008-11-07 14:05:41 -0800652/**
Matt Ropere13161a2014-04-01 15:22:38 -0700653 * drm_crtc_init_with_planes - Initialise a new CRTC object with
654 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800655 * @dev: DRM device
656 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700657 * @primary: Primary plane for CRTC
658 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800659 * @funcs: callbacks for the new CRTC
660 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000661 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200662 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100663 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200664 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800665 */
Matt Ropere13161a2014-04-01 15:22:38 -0700666int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
667 struct drm_plane *primary,
Matt Roperfc1d3e42014-06-10 08:28:11 -0700668 struct drm_plane *cursor,
Matt Ropere13161a2014-04-01 15:22:38 -0700669 const struct drm_crtc_funcs *funcs)
Dave Airlief453ba02008-11-07 14:05:41 -0800670{
Rob Clark51fd3712013-11-19 12:10:12 -0500671 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200672 int ret;
673
Benjamin Gaignard522cf912015-03-17 12:05:29 +0100674 WARN_ON(primary && primary->type != DRM_PLANE_TYPE_PRIMARY);
675 WARN_ON(cursor && cursor->type != DRM_PLANE_TYPE_CURSOR);
676
Dave Airlief453ba02008-11-07 14:05:41 -0800677 crtc->dev = dev;
678 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000679 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800680
Rob Clark51fd3712013-11-19 12:10:12 -0500681 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200682 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
683 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100684 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800685
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300686 crtc->base.properties = &crtc->properties;
687
Rob Clark51fd3712013-11-19 12:10:12 -0500688 list_add_tail(&crtc->head, &config->crtc_list);
689 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200690
Matt Ropere13161a2014-04-01 15:22:38 -0700691 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700692 crtc->cursor = cursor;
Matt Ropere13161a2014-04-01 15:22:38 -0700693 if (primary)
694 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Roperfc1d3e42014-06-10 08:28:11 -0700695 if (cursor)
696 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700697
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100698 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
699 drm_object_attach_property(&crtc->base, config->prop_active, 0);
Daniel Stone955f3c32015-05-25 19:11:52 +0100700 drm_object_attach_property(&crtc->base, config->prop_mode_id, 0);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100701 }
702
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100703 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800704}
Matt Ropere13161a2014-04-01 15:22:38 -0700705EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800706
707/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000708 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800709 * @crtc: CRTC to cleanup
710 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000711 * This function cleans up @crtc and removes it from the DRM mode setting
712 * core. Note that the function does *not* free the crtc structure itself,
713 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800714 */
715void drm_crtc_cleanup(struct drm_crtc *crtc)
716{
717 struct drm_device *dev = crtc->dev;
718
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000719 kfree(crtc->gamma_store);
720 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800721
Rob Clark51fd3712013-11-19 12:10:12 -0500722 drm_modeset_lock_fini(&crtc->mutex);
723
Dave Airlief453ba02008-11-07 14:05:41 -0800724 drm_mode_object_put(dev, &crtc->base);
725 list_del(&crtc->head);
726 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100727
728 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
729 if (crtc->state && crtc->funcs->atomic_destroy_state)
730 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100731
732 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800733}
734EXPORT_SYMBOL(drm_crtc_cleanup);
735
736/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000737 * drm_crtc_index - find the index of a registered CRTC
738 * @crtc: CRTC to find index for
739 *
740 * Given a registered CRTC, return the index of that CRTC within a DRM
741 * device's list of CRTCs.
742 */
743unsigned int drm_crtc_index(struct drm_crtc *crtc)
744{
745 unsigned int index = 0;
746 struct drm_crtc *tmp;
747
Daniel Vettere4f62542015-07-09 23:44:35 +0200748 drm_for_each_crtc(tmp, crtc->dev) {
Russell Kingdb5f7a62014-01-02 21:27:33 +0000749 if (tmp == crtc)
750 return index;
751
752 index++;
753 }
754
755 BUG();
756}
757EXPORT_SYMBOL(drm_crtc_index);
758
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100759/*
Dave Airlief453ba02008-11-07 14:05:41 -0800760 * drm_mode_remove - remove and free a mode
761 * @connector: connector list to modify
762 * @mode: mode to remove
763 *
Dave Airlief453ba02008-11-07 14:05:41 -0800764 * Remove @mode from @connector's mode list, then free it.
765 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100766static void drm_mode_remove(struct drm_connector *connector,
767 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800768{
769 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100770 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800771}
Dave Airlief453ba02008-11-07 14:05:41 -0800772
773/**
Boris Brezillonb5571e92014-07-22 12:09:10 +0200774 * drm_display_info_set_bus_formats - set the supported bus formats
775 * @info: display info to store bus formats in
Boris Brezillone37bfa12015-01-23 21:09:30 +0100776 * @formats: array containing the supported bus formats
777 * @num_formats: the number of entries in the fmts array
Boris Brezillonb5571e92014-07-22 12:09:10 +0200778 *
779 * Store the supported bus formats in display info structure.
780 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
781 * a full list of available formats.
782 */
783int drm_display_info_set_bus_formats(struct drm_display_info *info,
784 const u32 *formats,
785 unsigned int num_formats)
786{
787 u32 *fmts = NULL;
788
789 if (!formats && num_formats)
790 return -EINVAL;
791
792 if (formats && num_formats) {
793 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
794 GFP_KERNEL);
Dan Carpenter944579c2015-01-28 09:43:35 +0300795 if (!fmts)
Boris Brezillonb5571e92014-07-22 12:09:10 +0200796 return -ENOMEM;
797 }
798
799 kfree(info->bus_formats);
800 info->bus_formats = fmts;
801 info->num_bus_formats = num_formats;
802
803 return 0;
804}
805EXPORT_SYMBOL(drm_display_info_set_bus_formats);
806
807/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200808 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
809 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200810 *
811 * The kernel supports per-connector configration of its consoles through
812 * use of the video= parameter. This function parses that option and
813 * extracts the user's specified mode (or enable/disable status) for a
814 * particular connector. This is typically only used during the early fbdev
815 * setup.
816 */
817static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
818{
819 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
820 char *option = NULL;
821
822 if (fb_get_options(connector->name, &option))
823 return;
824
825 if (!drm_mode_parse_command_line_for_connector(option,
826 connector,
827 mode))
828 return;
829
830 if (mode->force) {
831 const char *s;
832
833 switch (mode->force) {
834 case DRM_FORCE_OFF:
835 s = "OFF";
836 break;
837 case DRM_FORCE_ON_DIGITAL:
838 s = "ON - dig";
839 break;
840 default:
841 case DRM_FORCE_ON:
842 s = "ON";
843 break;
844 }
845
846 DRM_INFO("forcing %s connector %s\n", connector->name, s);
847 connector->force = mode->force;
848 }
849
850 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
851 connector->name,
852 mode->xres, mode->yres,
853 mode->refresh_specified ? mode->refresh : 60,
854 mode->rb ? " reduced blanking" : "",
855 mode->margins ? " with margins" : "",
856 mode->interlace ? " interlaced" : "");
857}
858
859/**
Dave Airlief453ba02008-11-07 14:05:41 -0800860 * drm_connector_init - Init a preallocated connector
861 * @dev: DRM device
862 * @connector: the connector to init
863 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100864 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800865 *
Dave Airlief453ba02008-11-07 14:05:41 -0800866 * Initialises a preallocated connector. Connectors should be
867 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200868 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100869 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200870 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800871 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200872int drm_connector_init(struct drm_device *dev,
873 struct drm_connector *connector,
874 const struct drm_connector_funcs *funcs,
875 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800876{
Rob Clarkae16c592014-12-18 16:01:54 -0500877 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200878 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400879 struct ida *connector_ida =
880 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200881
Daniel Vetter84849902012-12-02 00:28:11 +0100882 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800883
Dave Airlie2ee39452014-07-24 11:53:45 +1000884 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200885 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300886 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200887
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300888 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800889 connector->dev = dev;
890 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800891 connector->connector_type = connector_type;
892 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400893 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
894 if (connector->connector_type_id < 0) {
895 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300896 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400897 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300898 connector->name =
899 kasprintf(GFP_KERNEL, "%s-%d",
900 drm_connector_enum_list[connector_type].name,
901 connector->connector_type_id);
902 if (!connector->name) {
903 ret = -ENOMEM;
904 goto out_put;
905 }
906
Dave Airlief453ba02008-11-07 14:05:41 -0800907 INIT_LIST_HEAD(&connector->probed_modes);
908 INIT_LIST_HEAD(&connector->modes);
909 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000910 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800911
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200912 drm_connector_get_cmdline_mode(connector);
913
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100914 /* We should add connectors at the end to avoid upsetting the connector
915 * index too much. */
Rob Clarkae16c592014-12-18 16:01:54 -0500916 list_add_tail(&connector->head, &config->connector_list);
917 config->num_connector++;
Dave Airlief453ba02008-11-07 14:05:41 -0800918
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200919 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500920 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500921 config->edid_property,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200922 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800923
Rob Clark58495562012-10-11 20:50:56 -0500924 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500925 config->dpms_property, 0);
926
927 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
928 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
929 }
Dave Airlief453ba02008-11-07 14:05:41 -0800930
Thomas Wood30f65702014-06-18 17:52:32 +0100931 connector->debugfs_entry = NULL;
932
Jani Nikula2abdd312014-05-14 16:58:19 +0300933out_put:
934 if (ret)
935 drm_mode_object_put(dev, &connector->base);
936
937out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100938 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200939
940 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800941}
942EXPORT_SYMBOL(drm_connector_init);
943
944/**
945 * drm_connector_cleanup - cleans up an initialised connector
946 * @connector: connector to cleanup
947 *
Dave Airlief453ba02008-11-07 14:05:41 -0800948 * Cleans up the connector but doesn't free the object.
949 */
950void drm_connector_cleanup(struct drm_connector *connector)
951{
952 struct drm_device *dev = connector->dev;
953 struct drm_display_mode *mode, *t;
954
Dave Airlie40d9b042014-10-20 16:29:33 +1000955 if (connector->tile_group) {
956 drm_mode_put_tile_group(dev, connector->tile_group);
957 connector->tile_group = NULL;
958 }
959
Dave Airlief453ba02008-11-07 14:05:41 -0800960 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
961 drm_mode_remove(connector, mode);
962
963 list_for_each_entry_safe(mode, t, &connector->modes, head)
964 drm_mode_remove(connector, mode);
965
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400966 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
967 connector->connector_type_id);
968
Boris Brezillonb5571e92014-07-22 12:09:10 +0200969 kfree(connector->display_info.bus_formats);
Dave Airlief453ba02008-11-07 14:05:41 -0800970 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300971 kfree(connector->name);
972 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800973 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000974 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100975
976 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
977 if (connector->state && connector->funcs->atomic_destroy_state)
978 connector->funcs->atomic_destroy_state(connector,
979 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100980
981 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800982}
983EXPORT_SYMBOL(drm_connector_cleanup);
984
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100985/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200986 * drm_connector_index - find the index of a registered connector
987 * @connector: connector to find index for
988 *
989 * Given a registered connector, return the index of that connector within a DRM
990 * device's list of connectors.
991 */
992unsigned int drm_connector_index(struct drm_connector *connector)
993{
994 unsigned int index = 0;
995 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100996 struct drm_mode_config *config = &connector->dev->mode_config;
997
998 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +0200999
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02001000 drm_for_each_connector(tmp, connector->dev) {
Daniel Vetter10f637b2014-07-29 13:47:11 +02001001 if (tmp == connector)
1002 return index;
1003
1004 index++;
1005 }
1006
1007 BUG();
1008}
1009EXPORT_SYMBOL(drm_connector_index);
1010
1011/**
Thomas Wood34ea3d32014-05-29 16:57:41 +01001012 * drm_connector_register - register a connector
1013 * @connector: the connector to register
1014 *
1015 * Register userspace interfaces for a connector
1016 *
1017 * Returns:
1018 * Zero on success, error code on failure.
1019 */
1020int drm_connector_register(struct drm_connector *connector)
1021{
Thomas Wood30f65702014-06-18 17:52:32 +01001022 int ret;
1023
Dave Airlie2ee39452014-07-24 11:53:45 +10001024 drm_mode_object_register(connector->dev, &connector->base);
1025
Thomas Wood30f65702014-06-18 17:52:32 +01001026 ret = drm_sysfs_connector_add(connector);
1027 if (ret)
1028 return ret;
1029
1030 ret = drm_debugfs_connector_add(connector);
1031 if (ret) {
1032 drm_sysfs_connector_remove(connector);
1033 return ret;
1034 }
1035
1036 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +01001037}
1038EXPORT_SYMBOL(drm_connector_register);
1039
1040/**
1041 * drm_connector_unregister - unregister a connector
1042 * @connector: the connector to unregister
1043 *
1044 * Unregister userspace interfaces for a connector
1045 */
1046void drm_connector_unregister(struct drm_connector *connector)
1047{
1048 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001049 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001050}
1051EXPORT_SYMBOL(drm_connector_unregister);
1052
1053
1054/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001055 * drm_connector_unplug_all - unregister connector userspace interfaces
1056 * @dev: drm device
1057 *
1058 * This function unregisters all connector userspace interfaces in sysfs. Should
1059 * be call when the device is disconnected, e.g. from an usb driver's
1060 * ->disconnect callback.
1061 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001062void drm_connector_unplug_all(struct drm_device *dev)
1063{
1064 struct drm_connector *connector;
1065
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02001066 /* FIXME: taking the mode config mutex ends up in a clash with sysfs */
Dave Airliecbc7e222012-02-20 14:16:40 +00001067 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001068 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001069
1070}
1071EXPORT_SYMBOL(drm_connector_unplug_all);
1072
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001073/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001074 * drm_encoder_init - Init a preallocated encoder
1075 * @dev: drm device
1076 * @encoder: the encoder to init
1077 * @funcs: callbacks for this encoder
1078 * @encoder_type: user visible type of the encoder
1079 *
1080 * Initialises a preallocated encoder. Encoder should be
1081 * subclassed as part of driver encoder objects.
1082 *
1083 * Returns:
1084 * Zero on success, error code on failure.
1085 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001086int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001087 struct drm_encoder *encoder,
1088 const struct drm_encoder_funcs *funcs,
1089 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001090{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001091 int ret;
1092
Daniel Vetter84849902012-12-02 00:28:11 +01001093 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001094
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001095 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1096 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001097 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001098
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001099 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001100 encoder->encoder_type = encoder_type;
1101 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001102 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1103 drm_encoder_enum_list[encoder_type].name,
1104 encoder->base.id);
1105 if (!encoder->name) {
1106 ret = -ENOMEM;
1107 goto out_put;
1108 }
Dave Airlief453ba02008-11-07 14:05:41 -08001109
1110 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1111 dev->mode_config.num_encoder++;
1112
Jani Nikulae5748942014-05-14 16:58:20 +03001113out_put:
1114 if (ret)
1115 drm_mode_object_put(dev, &encoder->base);
1116
1117out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001118 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001119
1120 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001121}
1122EXPORT_SYMBOL(drm_encoder_init);
1123
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001124/**
1125 * drm_encoder_cleanup - cleans up an initialised encoder
1126 * @encoder: encoder to cleanup
1127 *
1128 * Cleans up the encoder but doesn't free the object.
1129 */
Dave Airlief453ba02008-11-07 14:05:41 -08001130void drm_encoder_cleanup(struct drm_encoder *encoder)
1131{
1132 struct drm_device *dev = encoder->dev;
Thierry Reding4dfd9092014-12-10 13:03:34 +01001133
Daniel Vetter84849902012-12-02 00:28:11 +01001134 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001135 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001136 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001137 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001138 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001139 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001140
1141 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001142}
1143EXPORT_SYMBOL(drm_encoder_cleanup);
1144
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001145/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001146 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001147 * @dev: DRM device
1148 * @plane: plane object to init
1149 * @possible_crtcs: bitmask of possible CRTCs
1150 * @funcs: callbacks for the new plane
1151 * @formats: array of supported formats (%DRM_FORMAT_*)
1152 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001153 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001154 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001155 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001156 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001157 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001158 * Zero on success, error code on failure.
1159 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001160int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1161 unsigned long possible_crtcs,
1162 const struct drm_plane_funcs *funcs,
Thierry Reding45e37432015-08-12 16:54:28 +02001163 const uint32_t *formats, unsigned int format_count,
Matt Roperdc415ff2014-04-01 15:22:36 -07001164 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001165{
Rob Clark6b4959f2014-12-18 16:01:53 -05001166 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001167 int ret;
1168
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001169 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1170 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001171 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001172
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001173 drm_modeset_lock_init(&plane->mutex);
1174
Rob Clark4d939142012-05-17 02:23:27 -06001175 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001176 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001177 plane->funcs = funcs;
Thierry Reding2f6c5382014-12-10 13:03:36 +01001178 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1179 GFP_KERNEL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001180 if (!plane->format_types) {
1181 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1182 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001183 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001184 }
1185
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001186 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001187 plane->format_count = format_count;
1188 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001189 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001190
Rob Clark6b4959f2014-12-18 16:01:53 -05001191 list_add_tail(&plane->head, &config->plane_list);
1192 config->num_total_plane++;
Matt Roperdc415ff2014-04-01 15:22:36 -07001193 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Rob Clark6b4959f2014-12-18 16:01:53 -05001194 config->num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001195
Rob Clark9922ab52014-04-01 20:16:57 -04001196 drm_object_attach_property(&plane->base,
Rob Clark6b4959f2014-12-18 16:01:53 -05001197 config->plane_type_property,
Rob Clark9922ab52014-04-01 20:16:57 -04001198 plane->type);
1199
Rob Clark6b4959f2014-12-18 16:01:53 -05001200 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1201 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1202 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1203 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1204 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1205 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1206 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1207 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1208 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1209 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1210 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1211 }
1212
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001213 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001214}
Matt Roperdc415ff2014-04-01 15:22:36 -07001215EXPORT_SYMBOL(drm_universal_plane_init);
1216
1217/**
1218 * drm_plane_init - Initialize a legacy plane
1219 * @dev: DRM device
1220 * @plane: plane object to init
1221 * @possible_crtcs: bitmask of possible CRTCs
1222 * @funcs: callbacks for the new plane
1223 * @formats: array of supported formats (%DRM_FORMAT_*)
1224 * @format_count: number of elements in @formats
1225 * @is_primary: plane type (primary vs overlay)
1226 *
1227 * Legacy API to initialize a DRM plane.
1228 *
1229 * New drivers should call drm_universal_plane_init() instead.
1230 *
1231 * Returns:
1232 * Zero on success, error code on failure.
1233 */
1234int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1235 unsigned long possible_crtcs,
1236 const struct drm_plane_funcs *funcs,
Thierry Reding45e37432015-08-12 16:54:28 +02001237 const uint32_t *formats, unsigned int format_count,
Matt Roperdc415ff2014-04-01 15:22:36 -07001238 bool is_primary)
1239{
1240 enum drm_plane_type type;
1241
1242 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1243 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1244 formats, format_count, type);
1245}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001246EXPORT_SYMBOL(drm_plane_init);
1247
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001248/**
1249 * drm_plane_cleanup - Clean up the core plane usage
1250 * @plane: plane to cleanup
1251 *
1252 * This function cleans up @plane and removes it from the DRM mode setting
1253 * core. Note that the function does *not* free the plane structure itself,
1254 * this is the responsibility of the caller.
1255 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001256void drm_plane_cleanup(struct drm_plane *plane)
1257{
1258 struct drm_device *dev = plane->dev;
1259
Daniel Vetter84849902012-12-02 00:28:11 +01001260 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001261 kfree(plane->format_types);
1262 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001263
1264 BUG_ON(list_empty(&plane->head));
1265
1266 list_del(&plane->head);
1267 dev->mode_config.num_total_plane--;
1268 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1269 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001270 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001271
1272 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1273 if (plane->state && plane->funcs->atomic_destroy_state)
1274 plane->funcs->atomic_destroy_state(plane, plane->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001275
1276 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001277}
1278EXPORT_SYMBOL(drm_plane_cleanup);
1279
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001280/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001281 * drm_plane_index - find the index of a registered plane
1282 * @plane: plane to find index for
1283 *
1284 * Given a registered plane, return the index of that CRTC within a DRM
1285 * device's list of planes.
1286 */
1287unsigned int drm_plane_index(struct drm_plane *plane)
1288{
1289 unsigned int index = 0;
1290 struct drm_plane *tmp;
1291
Daniel Vettere4f62542015-07-09 23:44:35 +02001292 drm_for_each_plane(tmp, plane->dev) {
Daniel Vetter10f637b2014-07-29 13:47:11 +02001293 if (tmp == plane)
1294 return index;
1295
1296 index++;
1297 }
1298
1299 BUG();
1300}
1301EXPORT_SYMBOL(drm_plane_index);
1302
1303/**
Chandra Konduruf81338a2015-04-09 17:36:21 -07001304 * drm_plane_from_index - find the registered plane at an index
1305 * @dev: DRM device
1306 * @idx: index of registered plane to find for
1307 *
1308 * Given a plane index, return the registered plane from DRM device's
1309 * list of planes with matching index.
1310 */
1311struct drm_plane *
1312drm_plane_from_index(struct drm_device *dev, int idx)
1313{
1314 struct drm_plane *plane;
1315 unsigned int i = 0;
1316
Daniel Vetter6295d602015-07-09 23:44:25 +02001317 drm_for_each_plane(plane, dev) {
Chandra Konduruf81338a2015-04-09 17:36:21 -07001318 if (i == idx)
1319 return plane;
1320 i++;
1321 }
1322 return NULL;
1323}
1324EXPORT_SYMBOL(drm_plane_from_index);
1325
1326/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001327 * drm_plane_force_disable - Forcibly disable a plane
1328 * @plane: plane to disable
1329 *
1330 * Forces the plane to be disabled.
1331 *
1332 * Used when the plane's current framebuffer is destroyed,
1333 * and when restoring fbdev mode.
1334 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001335void drm_plane_force_disable(struct drm_plane *plane)
1336{
1337 int ret;
1338
Daniel Vetter3d30a592014-07-27 13:42:42 +02001339 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001340 return;
1341
Daniel Vetter3d30a592014-07-27 13:42:42 +02001342 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001343 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001344 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001345 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001346 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001347 return;
1348 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001349 /* disconnect the plane from the fb and crtc: */
Daniel Vetter220dd2b2015-02-27 12:58:13 +01001350 drm_framebuffer_unreference(plane->old_fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02001351 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001352 plane->fb = NULL;
1353 plane->crtc = NULL;
1354}
1355EXPORT_SYMBOL(drm_plane_force_disable);
1356
Rob Clark6b4959f2014-12-18 16:01:53 -05001357static int drm_mode_create_standard_properties(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -08001358{
Rob Clark356af0e2014-12-18 16:01:52 -05001359 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001360
1361 /*
1362 * Standard properties (apply to all connectors)
1363 */
Rob Clark356af0e2014-12-18 16:01:52 -05001364 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
Dave Airlief453ba02008-11-07 14:05:41 -08001365 DRM_MODE_PROP_IMMUTABLE,
1366 "EDID", 0);
Rob Clark356af0e2014-12-18 16:01:52 -05001367 if (!prop)
1368 return -ENOMEM;
1369 dev->mode_config.edid_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001370
Rob Clark356af0e2014-12-18 16:01:52 -05001371 prop = drm_property_create_enum(dev, 0,
Sascha Hauer4a67d392012-02-06 10:58:17 +01001372 "DPMS", drm_dpms_enum_list,
1373 ARRAY_SIZE(drm_dpms_enum_list));
Rob Clark356af0e2014-12-18 16:01:52 -05001374 if (!prop)
1375 return -ENOMEM;
1376 dev->mode_config.dpms_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001377
Rob Clark356af0e2014-12-18 16:01:52 -05001378 prop = drm_property_create(dev,
1379 DRM_MODE_PROP_BLOB |
1380 DRM_MODE_PROP_IMMUTABLE,
1381 "PATH", 0);
1382 if (!prop)
1383 return -ENOMEM;
1384 dev->mode_config.path_property = prop;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001385
Rob Clark356af0e2014-12-18 16:01:52 -05001386 prop = drm_property_create(dev,
1387 DRM_MODE_PROP_BLOB |
1388 DRM_MODE_PROP_IMMUTABLE,
1389 "TILE", 0);
1390 if (!prop)
1391 return -ENOMEM;
1392 dev->mode_config.tile_property = prop;
Dave Airlie6f134d72014-10-20 16:30:50 +10001393
Rob Clark6b4959f2014-12-18 16:01:53 -05001394 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Rob Clark9922ab52014-04-01 20:16:57 -04001395 "type", drm_plane_type_enum_list,
1396 ARRAY_SIZE(drm_plane_type_enum_list));
Rob Clark6b4959f2014-12-18 16:01:53 -05001397 if (!prop)
1398 return -ENOMEM;
1399 dev->mode_config.plane_type_property = prop;
1400
1401 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1402 "SRC_X", 0, UINT_MAX);
1403 if (!prop)
1404 return -ENOMEM;
1405 dev->mode_config.prop_src_x = prop;
1406
1407 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1408 "SRC_Y", 0, UINT_MAX);
1409 if (!prop)
1410 return -ENOMEM;
1411 dev->mode_config.prop_src_y = prop;
1412
1413 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1414 "SRC_W", 0, UINT_MAX);
1415 if (!prop)
1416 return -ENOMEM;
1417 dev->mode_config.prop_src_w = prop;
1418
1419 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1420 "SRC_H", 0, UINT_MAX);
1421 if (!prop)
1422 return -ENOMEM;
1423 dev->mode_config.prop_src_h = prop;
1424
1425 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1426 "CRTC_X", INT_MIN, INT_MAX);
1427 if (!prop)
1428 return -ENOMEM;
1429 dev->mode_config.prop_crtc_x = prop;
1430
1431 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1432 "CRTC_Y", INT_MIN, INT_MAX);
1433 if (!prop)
1434 return -ENOMEM;
1435 dev->mode_config.prop_crtc_y = prop;
1436
1437 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1438 "CRTC_W", 0, INT_MAX);
1439 if (!prop)
1440 return -ENOMEM;
1441 dev->mode_config.prop_crtc_w = prop;
1442
1443 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1444 "CRTC_H", 0, INT_MAX);
1445 if (!prop)
1446 return -ENOMEM;
1447 dev->mode_config.prop_crtc_h = prop;
1448
1449 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1450 "FB_ID", DRM_MODE_OBJECT_FB);
1451 if (!prop)
1452 return -ENOMEM;
1453 dev->mode_config.prop_fb_id = prop;
1454
1455 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1456 "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1457 if (!prop)
1458 return -ENOMEM;
1459 dev->mode_config.prop_crtc_id = prop;
Rob Clark9922ab52014-04-01 20:16:57 -04001460
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001461 prop = drm_property_create_bool(dev, DRM_MODE_PROP_ATOMIC,
1462 "ACTIVE");
1463 if (!prop)
1464 return -ENOMEM;
1465 dev->mode_config.prop_active = prop;
1466
Daniel Stone955f3c32015-05-25 19:11:52 +01001467 prop = drm_property_create(dev,
1468 DRM_MODE_PROP_ATOMIC | DRM_MODE_PROP_BLOB,
1469 "MODE_ID", 0);
1470 if (!prop)
1471 return -ENOMEM;
1472 dev->mode_config.prop_mode_id = prop;
1473
Rob Clark9922ab52014-04-01 20:16:57 -04001474 return 0;
1475}
1476
Dave Airlief453ba02008-11-07 14:05:41 -08001477/**
1478 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1479 * @dev: DRM device
1480 *
1481 * Called by a driver the first time a DVI-I connector is made.
1482 */
1483int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1484{
1485 struct drm_property *dvi_i_selector;
1486 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001487
1488 if (dev->mode_config.dvi_i_select_subconnector_property)
1489 return 0;
1490
1491 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001492 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001493 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001494 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001495 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001496 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1497
Sascha Hauer4a67d392012-02-06 10:58:17 +01001498 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001499 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001500 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001501 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001502 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1503
1504 return 0;
1505}
1506EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1507
1508/**
1509 * drm_create_tv_properties - create TV specific connector properties
1510 * @dev: DRM device
1511 * @num_modes: number of different TV formats (modes) supported
1512 * @modes: array of pointers to strings containing name of each format
1513 *
1514 * Called by a driver's TV initialization routine, this function creates
1515 * the TV specific connector properties for a given device. Caller is
1516 * responsible for allocating a list of format names and passing them to
1517 * this routine.
1518 */
Thierry Reding2f763312014-10-13 12:45:57 +02001519int drm_mode_create_tv_properties(struct drm_device *dev,
1520 unsigned int num_modes,
Ville Syrjäläb7c914b2015-08-31 15:09:26 +03001521 const char * const modes[])
Dave Airlief453ba02008-11-07 14:05:41 -08001522{
1523 struct drm_property *tv_selector;
1524 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001525 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001526
1527 if (dev->mode_config.tv_select_subconnector_property)
1528 return 0;
1529
1530 /*
1531 * Basic connector properties
1532 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001533 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001534 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001535 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001536 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001537 dev->mode_config.tv_select_subconnector_property = tv_selector;
1538
1539 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001540 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1541 "subconnector",
1542 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001543 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001544 dev->mode_config.tv_subconnector_property = tv_subconnector;
1545
1546 /*
1547 * Other, TV specific properties: margins & TV modes.
1548 */
1549 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001550 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001551
1552 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001553 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001554
1555 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001556 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001557
1558 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001559 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001560
1561 dev->mode_config.tv_mode_property =
1562 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1563 "mode", num_modes);
1564 for (i = 0; i < num_modes; i++)
1565 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1566 i, modes[i]);
1567
Francisco Jerezb6b79022009-08-02 04:19:20 +02001568 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001569 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001570
1571 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001572 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001573
1574 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001575 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001576
Francisco Jereza75f0232009-08-12 02:30:10 +02001577 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001578 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001579
1580 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001581 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001582
1583 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001584 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001585
Dave Airlief453ba02008-11-07 14:05:41 -08001586 return 0;
1587}
1588EXPORT_SYMBOL(drm_mode_create_tv_properties);
1589
1590/**
1591 * drm_mode_create_scaling_mode_property - create scaling mode property
1592 * @dev: DRM device
1593 *
1594 * Called by a driver the first time it's needed, must be attached to desired
1595 * connectors.
1596 */
1597int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1598{
1599 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001600
1601 if (dev->mode_config.scaling_mode_property)
1602 return 0;
1603
1604 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001605 drm_property_create_enum(dev, 0, "scaling mode",
1606 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001607 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001608
1609 dev->mode_config.scaling_mode_property = scaling_mode;
1610
1611 return 0;
1612}
1613EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1614
1615/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301616 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1617 * @dev: DRM device
1618 *
1619 * Called by a driver the first time it's needed, must be attached to desired
1620 * connectors.
1621 *
1622 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001623 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301624 */
1625int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1626{
1627 if (dev->mode_config.aspect_ratio_property)
1628 return 0;
1629
1630 dev->mode_config.aspect_ratio_property =
1631 drm_property_create_enum(dev, 0, "aspect ratio",
1632 drm_aspect_ratio_enum_list,
1633 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1634
1635 if (dev->mode_config.aspect_ratio_property == NULL)
1636 return -ENOMEM;
1637
1638 return 0;
1639}
1640EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1641
1642/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001643 * drm_mode_create_dirty_property - create dirty property
1644 * @dev: DRM device
1645 *
1646 * Called by a driver the first time it's needed, must be attached to desired
1647 * connectors.
1648 */
1649int drm_mode_create_dirty_info_property(struct drm_device *dev)
1650{
1651 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001652
1653 if (dev->mode_config.dirty_info_property)
1654 return 0;
1655
1656 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001657 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001658 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001659 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001660 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001661 dev->mode_config.dirty_info_property = dirty_info;
1662
1663 return 0;
1664}
1665EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1666
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001667/**
1668 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1669 * @dev: DRM device
1670 *
1671 * Create the the suggested x/y offset property for connectors.
1672 */
1673int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1674{
1675 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1676 return 0;
1677
1678 dev->mode_config.suggested_x_property =
1679 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1680
1681 dev->mode_config.suggested_y_property =
1682 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1683
1684 if (dev->mode_config.suggested_x_property == NULL ||
1685 dev->mode_config.suggested_y_property == NULL)
1686 return -ENOMEM;
1687 return 0;
1688}
1689EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1690
Dave Airlief453ba02008-11-07 14:05:41 -08001691/**
Dave Airlief453ba02008-11-07 14:05:41 -08001692 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001693 * @dev: drm device for the ioctl
1694 * @data: data pointer for the ioctl
1695 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001696 *
Dave Airlief453ba02008-11-07 14:05:41 -08001697 * Construct a set of configuration description structures and return
1698 * them to the user, including CRTC, connector and framebuffer configuration.
1699 *
1700 * Called by the user via ioctl.
1701 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001702 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001703 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001704 */
1705int drm_mode_getresources(struct drm_device *dev, void *data,
1706 struct drm_file *file_priv)
1707{
1708 struct drm_mode_card_res *card_res = data;
1709 struct list_head *lh;
1710 struct drm_framebuffer *fb;
1711 struct drm_connector *connector;
1712 struct drm_crtc *crtc;
1713 struct drm_encoder *encoder;
1714 int ret = 0;
1715 int connector_count = 0;
1716 int crtc_count = 0;
1717 int fb_count = 0;
1718 int encoder_count = 0;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001719 int copied = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001720 uint32_t __user *fb_id;
1721 uint32_t __user *crtc_id;
1722 uint32_t __user *connector_id;
1723 uint32_t __user *encoder_id;
Dave Airlief453ba02008-11-07 14:05:41 -08001724
Dave Airliefb3b06c2011-02-08 13:55:21 +10001725 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1726 return -EINVAL;
1727
Dave Airlief453ba02008-11-07 14:05:41 -08001728
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001729 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001730 /*
1731 * For the non-control nodes we need to limit the list of resources
1732 * by IDs in the group list for this node
1733 */
1734 list_for_each(lh, &file_priv->fbs)
1735 fb_count++;
1736
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001737 /* handle this in 4 parts */
1738 /* FBs */
1739 if (card_res->count_fbs >= fb_count) {
1740 copied = 0;
1741 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1742 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1743 if (put_user(fb->base.id, fb_id + copied)) {
1744 mutex_unlock(&file_priv->fbs_lock);
1745 return -EFAULT;
1746 }
1747 copied++;
1748 }
1749 }
1750 card_res->count_fbs = fb_count;
1751 mutex_unlock(&file_priv->fbs_lock);
1752
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001753 /* mode_config.mutex protects the connector list against e.g. DP MST
1754 * connector hot-adding. CRTC/Plane lists are invariant. */
1755 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001756 drm_for_each_crtc(crtc, dev)
1757 crtc_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001758
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001759 drm_for_each_connector(connector, dev)
1760 connector_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001761
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001762 drm_for_each_encoder(encoder, dev)
1763 encoder_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001764
1765 card_res->max_height = dev->mode_config.max_height;
1766 card_res->min_height = dev->mode_config.min_height;
1767 card_res->max_width = dev->mode_config.max_width;
1768 card_res->min_width = dev->mode_config.min_width;
1769
Dave Airlief453ba02008-11-07 14:05:41 -08001770 /* CRTCs */
1771 if (card_res->count_crtcs >= crtc_count) {
1772 copied = 0;
1773 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001774 drm_for_each_crtc(crtc, dev) {
1775 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
1776 if (put_user(crtc->base.id, crtc_id + copied)) {
1777 ret = -EFAULT;
1778 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001779 }
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001780 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001781 }
1782 }
1783 card_res->count_crtcs = crtc_count;
1784
1785 /* Encoders */
1786 if (card_res->count_encoders >= encoder_count) {
1787 copied = 0;
1788 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001789 drm_for_each_encoder(encoder, dev) {
1790 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1791 encoder->name);
1792 if (put_user(encoder->base.id, encoder_id +
1793 copied)) {
1794 ret = -EFAULT;
1795 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001796 }
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001797 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001798 }
1799 }
1800 card_res->count_encoders = encoder_count;
1801
1802 /* Connectors */
1803 if (card_res->count_connectors >= connector_count) {
1804 copied = 0;
1805 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001806 drm_for_each_connector(connector, dev) {
1807 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1808 connector->base.id,
1809 connector->name);
1810 if (put_user(connector->base.id,
1811 connector_id + copied)) {
1812 ret = -EFAULT;
1813 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001814 }
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001815 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001816 }
1817 }
1818 card_res->count_connectors = connector_count;
1819
Jerome Glisse94401062010-07-15 15:43:25 -04001820 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001821 card_res->count_connectors, card_res->count_encoders);
1822
1823out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001824 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001825 return ret;
1826}
1827
1828/**
1829 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001830 * @dev: drm device for the ioctl
1831 * @data: data pointer for the ioctl
1832 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001833 *
Dave Airlief453ba02008-11-07 14:05:41 -08001834 * Construct a CRTC configuration structure to return to the user.
1835 *
1836 * Called by the user via ioctl.
1837 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001838 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001839 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001840 */
1841int drm_mode_getcrtc(struct drm_device *dev,
1842 void *data, struct drm_file *file_priv)
1843{
1844 struct drm_mode_crtc *crtc_resp = data;
1845 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001846
Dave Airliefb3b06c2011-02-08 13:55:21 +10001847 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1848 return -EINVAL;
1849
Rob Clarka2b34e22013-10-05 16:36:52 -04001850 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001851 if (!crtc)
1852 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001853
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001854 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08001855 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07001856 if (crtc->primary->fb)
1857 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08001858 else
1859 crtc_resp->fb_id = 0;
1860
Daniel Vetter31c946e2015-02-22 12:24:17 +01001861 if (crtc->state) {
1862 crtc_resp->x = crtc->primary->state->src_x >> 16;
1863 crtc_resp->y = crtc->primary->state->src_y >> 16;
1864 if (crtc->state->enable) {
Daniel Stone934a8a82015-05-22 13:34:48 +01001865 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->state->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +01001866 crtc_resp->mode_valid = 1;
Dave Airlief453ba02008-11-07 14:05:41 -08001867
Daniel Vetter31c946e2015-02-22 12:24:17 +01001868 } else {
1869 crtc_resp->mode_valid = 0;
1870 }
Dave Airlief453ba02008-11-07 14:05:41 -08001871 } else {
Daniel Vetter31c946e2015-02-22 12:24:17 +01001872 crtc_resp->x = crtc->x;
1873 crtc_resp->y = crtc->y;
1874 if (crtc->enabled) {
Daniel Stone934a8a82015-05-22 13:34:48 +01001875 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +01001876 crtc_resp->mode_valid = 1;
1877
1878 } else {
1879 crtc_resp->mode_valid = 0;
1880 }
Dave Airlief453ba02008-11-07 14:05:41 -08001881 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001882 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08001883
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001884 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001885}
1886
Damien Lespiau61d8e322013-09-25 16:45:22 +01001887static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1888 const struct drm_file *file_priv)
1889{
1890 /*
1891 * If user-space hasn't configured the driver to expose the stereo 3D
1892 * modes, don't expose them.
1893 */
1894 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1895 return false;
1896
1897 return true;
1898}
1899
Daniel Vetterabd69c52014-11-25 23:50:05 +01001900static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
1901{
1902 /* For atomic drivers only state objects are synchronously updated and
1903 * protected by modeset locks, so check those first. */
1904 if (connector->state)
1905 return connector->state->best_encoder;
1906 return connector->encoder;
1907}
1908
Rob Clark95cbf112014-12-18 16:01:49 -05001909/* helper for getconnector and getproperties ioctls */
Rob Clark88a48e22014-12-18 16:01:50 -05001910static int get_properties(struct drm_mode_object *obj, bool atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05001911 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
1912 uint32_t *arg_count_props)
1913{
Rob Clark88a48e22014-12-18 16:01:50 -05001914 int props_count;
1915 int i, ret, copied;
1916
1917 props_count = obj->properties->count;
1918 if (!atomic)
1919 props_count -= obj->properties->atomic_count;
Rob Clark95cbf112014-12-18 16:01:49 -05001920
1921 if ((*arg_count_props >= props_count) && props_count) {
Rob Clark88a48e22014-12-18 16:01:50 -05001922 for (i = 0, copied = 0; copied < props_count; i++) {
Rob Clark95cbf112014-12-18 16:01:49 -05001923 struct drm_property *prop = obj->properties->properties[i];
1924 uint64_t val;
1925
Rob Clark88a48e22014-12-18 16:01:50 -05001926 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
1927 continue;
1928
Rob Clark95cbf112014-12-18 16:01:49 -05001929 ret = drm_object_property_get_value(obj, prop, &val);
1930 if (ret)
1931 return ret;
1932
1933 if (put_user(prop->base.id, prop_ptr + copied))
1934 return -EFAULT;
1935
1936 if (put_user(val, prop_values + copied))
1937 return -EFAULT;
1938
1939 copied++;
1940 }
1941 }
1942 *arg_count_props = props_count;
1943
1944 return 0;
1945}
1946
Dave Airlief453ba02008-11-07 14:05:41 -08001947/**
1948 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001949 * @dev: drm device for the ioctl
1950 * @data: data pointer for the ioctl
1951 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001952 *
Dave Airlief453ba02008-11-07 14:05:41 -08001953 * Construct a connector configuration structure to return to the user.
1954 *
1955 * Called by the user via ioctl.
1956 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001957 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001958 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001959 */
1960int drm_mode_getconnector(struct drm_device *dev, void *data,
1961 struct drm_file *file_priv)
1962{
1963 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08001964 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01001965 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08001966 struct drm_display_mode *mode;
1967 int mode_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001968 int encoders_count = 0;
1969 int ret = 0;
1970 int copied = 0;
1971 int i;
1972 struct drm_mode_modeinfo u_mode;
1973 struct drm_mode_modeinfo __user *mode_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08001974 uint32_t __user *encoder_ptr;
1975
Dave Airliefb3b06c2011-02-08 13:55:21 +10001976 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1977 return -EINVAL;
1978
Dave Airlief453ba02008-11-07 14:05:41 -08001979 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1980
Jerome Glisse94401062010-07-15 15:43:25 -04001981 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08001982
Daniel Vetter7b240562012-12-12 00:35:33 +01001983 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001984
Rob Clarka2b34e22013-10-05 16:36:52 -04001985 connector = drm_connector_find(dev, out_resp->connector_id);
1986 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03001987 ret = -ENOENT;
Tommi Rantala04bdf442015-04-03 10:45:29 +03001988 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001989 }
Dave Airlief453ba02008-11-07 14:05:41 -08001990
Thierry Reding01073b02014-12-10 13:03:38 +01001991 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
1992 if (connector->encoder_ids[i] != 0)
Dave Airlief453ba02008-11-07 14:05:41 -08001993 encoders_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001994
1995 if (out_resp->count_modes == 0) {
1996 connector->funcs->fill_modes(connector,
1997 dev->mode_config.max_width,
1998 dev->mode_config.max_height);
1999 }
2000
2001 /* delayed so we get modes regardless of pre-fill_modes state */
2002 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002003 if (drm_mode_expose_to_userspace(mode, file_priv))
2004 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002005
2006 out_resp->connector_id = connector->base.id;
2007 out_resp->connector_type = connector->connector_type;
2008 out_resp->connector_type_id = connector->connector_type_id;
2009 out_resp->mm_width = connector->display_info.width_mm;
2010 out_resp->mm_height = connector->display_info.height_mm;
2011 out_resp->subpixel = connector->display_info.subpixel_order;
2012 out_resp->connection = connector->status;
Daniel Vetter2caa80e2015-02-22 11:38:36 +01002013
2014 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002015 encoder = drm_connector_get_encoder(connector);
2016 if (encoder)
2017 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002018 else
2019 out_resp->encoder_id = 0;
2020
2021 /*
2022 * This ioctl is called twice, once to determine how much space is
2023 * needed, and the 2nd time to fill it.
2024 */
2025 if ((out_resp->count_modes >= mode_count) && mode_count) {
2026 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002027 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002028 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002029 if (!drm_mode_expose_to_userspace(mode, file_priv))
2030 continue;
2031
Daniel Stone934a8a82015-05-22 13:34:48 +01002032 drm_mode_convert_to_umode(&u_mode, mode);
Dave Airlief453ba02008-11-07 14:05:41 -08002033 if (copy_to_user(mode_ptr + copied,
2034 &u_mode, sizeof(u_mode))) {
2035 ret = -EFAULT;
2036 goto out;
2037 }
2038 copied++;
2039 }
2040 }
2041 out_resp->count_modes = mode_count;
2042
Rob Clark88a48e22014-12-18 16:01:50 -05002043 ret = get_properties(&connector->base, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002044 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2045 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2046 &out_resp->count_props);
2047 if (ret)
2048 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002049
2050 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2051 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002052 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002053 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2054 if (connector->encoder_ids[i] != 0) {
2055 if (put_user(connector->encoder_ids[i],
2056 encoder_ptr + copied)) {
2057 ret = -EFAULT;
2058 goto out;
2059 }
2060 copied++;
2061 }
2062 }
2063 }
2064 out_resp->count_encoders = encoders_count;
2065
2066out:
Rob Clarkccfc0862014-12-18 16:01:48 -05002067 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Tommi Rantala04bdf442015-04-03 10:45:29 +03002068
2069out_unlock:
Daniel Vetter7b240562012-12-12 00:35:33 +01002070 mutex_unlock(&dev->mode_config.mutex);
2071
Dave Airlief453ba02008-11-07 14:05:41 -08002072 return ret;
2073}
2074
Daniel Vetterabd69c52014-11-25 23:50:05 +01002075static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2076{
2077 struct drm_connector *connector;
2078 struct drm_device *dev = encoder->dev;
2079 bool uses_atomic = false;
2080
2081 /* For atomic drivers only state objects are synchronously updated and
2082 * protected by modeset locks, so check those first. */
Daniel Vetter6295d602015-07-09 23:44:25 +02002083 drm_for_each_connector(connector, dev) {
Daniel Vetterabd69c52014-11-25 23:50:05 +01002084 if (!connector->state)
2085 continue;
2086
2087 uses_atomic = true;
2088
2089 if (connector->state->best_encoder != encoder)
2090 continue;
2091
2092 return connector->state->crtc;
2093 }
2094
2095 /* Don't return stale data (e.g. pending async disable). */
2096 if (uses_atomic)
2097 return NULL;
2098
2099 return encoder->crtc;
2100}
2101
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002102/**
2103 * drm_mode_getencoder - get encoder configuration
2104 * @dev: drm device for the ioctl
2105 * @data: data pointer for the ioctl
2106 * @file_priv: drm file for the ioctl call
2107 *
2108 * Construct a encoder configuration structure to return to the user.
2109 *
2110 * Called by the user via ioctl.
2111 *
2112 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002113 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002114 */
Dave Airlief453ba02008-11-07 14:05:41 -08002115int drm_mode_getencoder(struct drm_device *dev, void *data,
2116 struct drm_file *file_priv)
2117{
2118 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002119 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002120 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002121
Dave Airliefb3b06c2011-02-08 13:55:21 +10002122 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2123 return -EINVAL;
2124
Rob Clarka2b34e22013-10-05 16:36:52 -04002125 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002126 if (!encoder)
2127 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002128
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002129 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002130 crtc = drm_encoder_get_crtc(encoder);
2131 if (crtc)
2132 enc_resp->crtc_id = crtc->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002133 else
2134 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002135 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2136
Dave Airlief453ba02008-11-07 14:05:41 -08002137 enc_resp->encoder_type = encoder->encoder_type;
2138 enc_resp->encoder_id = encoder->base.id;
2139 enc_resp->possible_crtcs = encoder->possible_crtcs;
2140 enc_resp->possible_clones = encoder->possible_clones;
2141
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002142 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002143}
2144
2145/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002146 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002147 * @dev: DRM device
2148 * @data: ioctl data
2149 * @file_priv: DRM file info
2150 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002151 * Construct a list of plane ids to return to the user.
2152 *
2153 * Called by the user via ioctl.
2154 *
2155 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002156 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002157 */
2158int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002159 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002160{
2161 struct drm_mode_get_plane_res *plane_resp = data;
2162 struct drm_mode_config *config;
2163 struct drm_plane *plane;
2164 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002165 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002166 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002167
2168 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2169 return -EINVAL;
2170
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002171 config = &dev->mode_config;
2172
Matt Roper681e7ec2014-04-01 15:22:42 -07002173 if (file_priv->universal_planes)
2174 num_planes = config->num_total_plane;
2175 else
2176 num_planes = config->num_overlay_plane;
2177
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002178 /*
2179 * This ioctl is called twice, once to determine how much space is
2180 * needed, and the 2nd time to fill it.
2181 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002182 if (num_planes &&
2183 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002184 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002185
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002186 /* Plane lists are invariant, no locking needed. */
Daniel Vettere4f62542015-07-09 23:44:35 +02002187 drm_for_each_plane(plane, dev) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002188 /*
2189 * Unless userspace set the 'universal planes'
2190 * capability bit, only advertise overlays.
2191 */
2192 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2193 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002194 continue;
2195
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002196 if (put_user(plane->base.id, plane_ptr + copied))
2197 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002198 copied++;
2199 }
2200 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002201 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002202
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002203 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002204}
2205
2206/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002207 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002208 * @dev: DRM device
2209 * @data: ioctl data
2210 * @file_priv: DRM file info
2211 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002212 * Construct a plane configuration structure to return to the user.
2213 *
2214 * Called by the user via ioctl.
2215 *
2216 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002217 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002218 */
2219int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002220 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002221{
2222 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002223 struct drm_plane *plane;
2224 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002225
2226 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2227 return -EINVAL;
2228
Rob Clarka2b34e22013-10-05 16:36:52 -04002229 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002230 if (!plane)
2231 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002232
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002233 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002234 if (plane->crtc)
2235 plane_resp->crtc_id = plane->crtc->base.id;
2236 else
2237 plane_resp->crtc_id = 0;
2238
2239 if (plane->fb)
2240 plane_resp->fb_id = plane->fb->base.id;
2241 else
2242 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002243 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002244
2245 plane_resp->plane_id = plane->base.id;
2246 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002247 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002248
2249 /*
2250 * This ioctl is called twice, once to determine how much space is
2251 * needed, and the 2nd time to fill it.
2252 */
2253 if (plane->format_count &&
2254 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002255 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002256 if (copy_to_user(format_ptr,
2257 plane->format_types,
2258 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002259 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002260 }
2261 }
2262 plane_resp->count_format_types = plane->format_count;
2263
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002264 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002265}
2266
Laurent Pinchartead86102015-03-05 02:25:43 +02002267/**
2268 * drm_plane_check_pixel_format - Check if the plane supports the pixel format
2269 * @plane: plane to check for format support
2270 * @format: the pixel format
2271 *
2272 * Returns:
2273 * Zero of @plane has @format in its list of supported pixel formats, -EINVAL
2274 * otherwise.
2275 */
2276int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
2277{
2278 unsigned int i;
2279
2280 for (i = 0; i < plane->format_count; i++) {
2281 if (format == plane->format_types[i])
2282 return 0;
2283 }
2284
2285 return -EINVAL;
2286}
2287
Ville Syrjäläce8d9ec2015-10-15 20:40:00 +03002288static int check_src_coords(uint32_t src_x, uint32_t src_y,
2289 uint32_t src_w, uint32_t src_h,
2290 const struct drm_framebuffer *fb)
2291{
2292 unsigned int fb_width, fb_height;
2293
2294 fb_width = fb->width << 16;
2295 fb_height = fb->height << 16;
2296
2297 /* Make sure source coordinates are inside the fb. */
2298 if (src_w > fb_width ||
2299 src_x > fb_width - src_w ||
2300 src_h > fb_height ||
2301 src_y > fb_height - src_h) {
2302 DRM_DEBUG_KMS("Invalid source coordinates "
2303 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
2304 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2305 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2306 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2307 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
2308 return -ENOSPC;
2309 }
2310
2311 return 0;
2312}
2313
Matt Roperb36552b2014-06-10 08:28:09 -07002314/*
2315 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002316 *
Matt Roperb36552b2014-06-10 08:28:09 -07002317 * Note that we assume an extra reference has already been taken on fb. If the
2318 * update fails, this reference will be dropped before return; if it succeeds,
2319 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002320 *
Matt Roperb36552b2014-06-10 08:28:09 -07002321 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002322 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002323static int __setplane_internal(struct drm_plane *plane,
2324 struct drm_crtc *crtc,
2325 struct drm_framebuffer *fb,
2326 int32_t crtc_x, int32_t crtc_y,
2327 uint32_t crtc_w, uint32_t crtc_h,
2328 /* src_{x,y,w,h} values are 16.16 fixed point */
2329 uint32_t src_x, uint32_t src_y,
2330 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002331{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002332 int ret = 0;
2333
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002334 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002335 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002336 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002337 ret = plane->funcs->disable_plane(plane);
2338 if (!ret) {
2339 plane->crtc = NULL;
2340 plane->fb = NULL;
2341 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002342 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002343 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002344 goto out;
2345 }
2346
Matt Roper7f994f32014-05-29 08:06:51 -07002347 /* Check whether this plane is usable on this CRTC */
2348 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2349 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2350 ret = -EINVAL;
2351 goto out;
2352 }
2353
Ville Syrjälä62443be2011-12-20 00:06:47 +02002354 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +02002355 ret = drm_plane_check_pixel_format(plane, fb->pixel_format);
2356 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002357 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2358 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002359 goto out;
2360 }
2361
Matt Roper3968be92015-04-13 11:06:13 -07002362 /* Give drivers some help against integer overflows */
2363 if (crtc_w > INT_MAX ||
2364 crtc_x > INT_MAX - (int32_t) crtc_w ||
2365 crtc_h > INT_MAX ||
2366 crtc_y > INT_MAX - (int32_t) crtc_h) {
2367 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2368 crtc_w, crtc_h, crtc_x, crtc_y);
Ville Syrjäläc390eed2015-10-15 20:39:58 +03002369 ret = -ERANGE;
2370 goto out;
Matt Roper3968be92015-04-13 11:06:13 -07002371 }
2372
Ville Syrjäläce8d9ec2015-10-15 20:40:00 +03002373 ret = check_src_coords(src_x, src_y, src_w, src_h, fb);
2374 if (ret)
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002375 goto out;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002376
Daniel Vetter3d30a592014-07-27 13:42:42 +02002377 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002378 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002379 crtc_x, crtc_y, crtc_w, crtc_h,
2380 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002381 if (!ret) {
2382 plane->crtc = crtc;
2383 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002384 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002385 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002386 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002387 }
2388
2389out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002390 if (fb)
2391 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002392 if (plane->old_fb)
2393 drm_framebuffer_unreference(plane->old_fb);
2394 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002395
2396 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002397}
Matt Roperb36552b2014-06-10 08:28:09 -07002398
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002399static int setplane_internal(struct drm_plane *plane,
2400 struct drm_crtc *crtc,
2401 struct drm_framebuffer *fb,
2402 int32_t crtc_x, int32_t crtc_y,
2403 uint32_t crtc_w, uint32_t crtc_h,
2404 /* src_{x,y,w,h} values are 16.16 fixed point */
2405 uint32_t src_x, uint32_t src_y,
2406 uint32_t src_w, uint32_t src_h)
2407{
2408 int ret;
2409
2410 drm_modeset_lock_all(plane->dev);
2411 ret = __setplane_internal(plane, crtc, fb,
2412 crtc_x, crtc_y, crtc_w, crtc_h,
2413 src_x, src_y, src_w, src_h);
2414 drm_modeset_unlock_all(plane->dev);
2415
2416 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002417}
2418
2419/**
2420 * drm_mode_setplane - configure a plane's configuration
2421 * @dev: DRM device
2422 * @data: ioctl data*
2423 * @file_priv: DRM file info
2424 *
2425 * Set plane configuration, including placement, fb, scaling, and other factors.
2426 * Or pass a NULL fb to disable (planes may be disabled without providing a
2427 * valid crtc).
2428 *
2429 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002430 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002431 */
2432int drm_mode_setplane(struct drm_device *dev, void *data,
2433 struct drm_file *file_priv)
2434{
2435 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002436 struct drm_plane *plane;
2437 struct drm_crtc *crtc = NULL;
2438 struct drm_framebuffer *fb = NULL;
2439
2440 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2441 return -EINVAL;
2442
Matt Roperb36552b2014-06-10 08:28:09 -07002443 /*
2444 * First, find the plane, crtc, and fb objects. If not available,
2445 * we don't bother to call the driver.
2446 */
Rob Clark933f6222014-11-25 20:33:11 -05002447 plane = drm_plane_find(dev, plane_req->plane_id);
2448 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002449 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2450 plane_req->plane_id);
2451 return -ENOENT;
2452 }
Matt Roperb36552b2014-06-10 08:28:09 -07002453
2454 if (plane_req->fb_id) {
2455 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2456 if (!fb) {
2457 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2458 plane_req->fb_id);
2459 return -ENOENT;
2460 }
2461
Rob Clark933f6222014-11-25 20:33:11 -05002462 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2463 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002464 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2465 plane_req->crtc_id);
2466 return -ENOENT;
2467 }
Matt Roperb36552b2014-06-10 08:28:09 -07002468 }
2469
Matt Roper161d0dc2014-06-10 08:28:10 -07002470 /*
2471 * setplane_internal will take care of deref'ing either the old or new
2472 * framebuffer depending on success.
2473 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002474 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002475 plane_req->crtc_x, plane_req->crtc_y,
2476 plane_req->crtc_w, plane_req->crtc_h,
2477 plane_req->src_x, plane_req->src_y,
2478 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002479}
2480
2481/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002482 * drm_mode_set_config_internal - helper to call ->set_config
2483 * @set: modeset config to set
2484 *
2485 * This is a little helper to wrap internal calls to the ->set_config driver
2486 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +01002487 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002488 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002489 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002490 */
2491int drm_mode_set_config_internal(struct drm_mode_set *set)
2492{
2493 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002494 struct drm_framebuffer *fb;
2495 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002496 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002497
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002498 /*
2499 * NOTE: ->set_config can also disable other crtcs (if we steal all
2500 * connectors from it), hence we need to refcount the fbs across all
2501 * crtcs. Atomic modeset will have saner semantics ...
2502 */
Daniel Vettere4f62542015-07-09 23:44:35 +02002503 drm_for_each_crtc(tmp, crtc->dev)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002504 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002505
Daniel Vetterb0d12322012-12-11 01:07:12 +01002506 fb = set->fb;
2507
2508 ret = crtc->funcs->set_config(set);
2509 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002510 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002511 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002512 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002513
Daniel Vettere4f62542015-07-09 23:44:35 +02002514 drm_for_each_crtc(tmp, crtc->dev) {
Matt Roperf4510a22014-04-01 15:22:40 -07002515 if (tmp->primary->fb)
2516 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002517 if (tmp->primary->old_fb)
2518 drm_framebuffer_unreference(tmp->primary->old_fb);
2519 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002520 }
2521
2522 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002523}
2524EXPORT_SYMBOL(drm_mode_set_config_internal);
2525
Matt Roperaf936292014-04-01 15:22:34 -07002526/**
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002527 * drm_crtc_get_hv_timing - Fetches hdisplay/vdisplay for given mode
2528 * @mode: mode to query
2529 * @hdisplay: hdisplay value to fill in
2530 * @vdisplay: vdisplay value to fill in
2531 *
2532 * The vdisplay value will be doubled if the specified mode is a stereo mode of
2533 * the appropriate layout.
2534 */
2535void drm_crtc_get_hv_timing(const struct drm_display_mode *mode,
2536 int *hdisplay, int *vdisplay)
2537{
2538 struct drm_display_mode adjusted;
2539
2540 drm_mode_copy(&adjusted, mode);
2541 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY);
2542 *hdisplay = adjusted.crtc_hdisplay;
2543 *vdisplay = adjusted.crtc_vdisplay;
2544}
2545EXPORT_SYMBOL(drm_crtc_get_hv_timing);
2546
2547/**
Matt Roperaf936292014-04-01 15:22:34 -07002548 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2549 * CRTC viewport
2550 * @crtc: CRTC that framebuffer will be displayed on
2551 * @x: x panning
2552 * @y: y panning
2553 * @mode: mode that framebuffer will be displayed under
2554 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002555 */
Matt Roperaf936292014-04-01 15:22:34 -07002556int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2557 int x, int y,
2558 const struct drm_display_mode *mode,
2559 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002560
2561{
2562 int hdisplay, vdisplay;
2563
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002564 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002565
Damien Lespiauc11e9282013-09-25 16:45:30 +01002566 if (crtc->invert_dimensions)
2567 swap(hdisplay, vdisplay);
2568
Ville Syrjäläce8d9ec2015-10-15 20:40:00 +03002569 return check_src_coords(x << 16, y << 16,
2570 hdisplay << 16, vdisplay << 16, fb);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002571}
Matt Roperaf936292014-04-01 15:22:34 -07002572EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002573
Daniel Vetter2d13b672012-12-11 13:47:23 +01002574/**
Dave Airlief453ba02008-11-07 14:05:41 -08002575 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002576 * @dev: drm device for the ioctl
2577 * @data: data pointer for the ioctl
2578 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002579 *
Dave Airlief453ba02008-11-07 14:05:41 -08002580 * Build a new CRTC configuration based on user request.
2581 *
2582 * Called by the user via ioctl.
2583 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002584 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002585 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002586 */
2587int drm_mode_setcrtc(struct drm_device *dev, void *data,
2588 struct drm_file *file_priv)
2589{
2590 struct drm_mode_config *config = &dev->mode_config;
2591 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002592 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002593 struct drm_connector **connector_set = NULL, *connector;
2594 struct drm_framebuffer *fb = NULL;
2595 struct drm_display_mode *mode = NULL;
2596 struct drm_mode_set set;
2597 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002598 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002599 int i;
2600
Dave Airliefb3b06c2011-02-08 13:55:21 +10002601 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2602 return -EINVAL;
2603
Zhao Junwang01447e92015-07-07 17:08:35 +08002604 /*
2605 * Universal plane src offsets are only 16.16, prevent havoc for
2606 * drivers using universal plane code internally.
2607 */
2608 if (crtc_req->x & 0xffff0000 || crtc_req->y & 0xffff0000)
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002609 return -ERANGE;
2610
Daniel Vetter84849902012-12-02 00:28:11 +01002611 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002612 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2613 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002614 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002615 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002616 goto out;
2617 }
Jerome Glisse94401062010-07-15 15:43:25 -04002618 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002619
2620 if (crtc_req->mode_valid) {
2621 /* If we have a mode we need a framebuffer. */
2622 /* If we pass -1, set the mode with the currently bound fb */
2623 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002624 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002625 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2626 ret = -EINVAL;
2627 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002628 }
Matt Roperf4510a22014-04-01 15:22:40 -07002629 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002630 /* Make refcounting symmetric with the lookup path. */
2631 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002632 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002633 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2634 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002635 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2636 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002637 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002638 goto out;
2639 }
Dave Airlief453ba02008-11-07 14:05:41 -08002640 }
2641
2642 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002643 if (!mode) {
2644 ret = -ENOMEM;
2645 goto out;
2646 }
2647
Daniel Stone934a8a82015-05-22 13:34:48 +01002648 ret = drm_mode_convert_umode(mode, &crtc_req->mode);
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002649 if (ret) {
2650 DRM_DEBUG_KMS("Invalid mode\n");
2651 goto out;
2652 }
2653
Dave Airlief453ba02008-11-07 14:05:41 -08002654 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002655
Laurent Pinchart7eb5f302015-03-09 10:41:07 +02002656 /*
2657 * Check whether the primary plane supports the fb pixel format.
2658 * Drivers not implementing the universal planes API use a
2659 * default formats list provided by the DRM core which doesn't
2660 * match real hardware capabilities. Skip the check in that
2661 * case.
2662 */
2663 if (!crtc->primary->format_default) {
2664 ret = drm_plane_check_pixel_format(crtc->primary,
2665 fb->pixel_format);
2666 if (ret) {
2667 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2668 drm_get_format_name(fb->pixel_format));
2669 goto out;
2670 }
2671 }
2672
Damien Lespiauc11e9282013-09-25 16:45:30 +01002673 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2674 mode, fb);
2675 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002676 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002677
Dave Airlief453ba02008-11-07 14:05:41 -08002678 }
2679
2680 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002681 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002682 ret = -EINVAL;
2683 goto out;
2684 }
2685
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002686 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002687 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002688 crtc_req->count_connectors);
2689 ret = -EINVAL;
2690 goto out;
2691 }
2692
2693 if (crtc_req->count_connectors > 0) {
2694 u32 out_id;
2695
2696 /* Avoid unbounded kernel memory allocation */
2697 if (crtc_req->count_connectors > config->num_connector) {
2698 ret = -EINVAL;
2699 goto out;
2700 }
2701
Thierry Reding2f6c5382014-12-10 13:03:36 +01002702 connector_set = kmalloc_array(crtc_req->count_connectors,
2703 sizeof(struct drm_connector *),
2704 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08002705 if (!connector_set) {
2706 ret = -ENOMEM;
2707 goto out;
2708 }
2709
2710 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002711 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002712 if (get_user(out_id, &set_connectors_ptr[i])) {
2713 ret = -EFAULT;
2714 goto out;
2715 }
2716
Rob Clarka2b34e22013-10-05 16:36:52 -04002717 connector = drm_connector_find(dev, out_id);
2718 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002719 DRM_DEBUG_KMS("Connector id %d unknown\n",
2720 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002721 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002722 goto out;
2723 }
Jerome Glisse94401062010-07-15 15:43:25 -04002724 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2725 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002726 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002727
2728 connector_set[i] = connector;
2729 }
2730 }
2731
2732 set.crtc = crtc;
2733 set.x = crtc_req->x;
2734 set.y = crtc_req->y;
2735 set.mode = mode;
2736 set.connectors = connector_set;
2737 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002738 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002739 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002740
2741out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002742 if (fb)
2743 drm_framebuffer_unreference(fb);
2744
Dave Airlief453ba02008-11-07 14:05:41 -08002745 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002746 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002747 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002748 return ret;
2749}
2750
Matt Roper161d0dc2014-06-10 08:28:10 -07002751/**
2752 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2753 * universal plane handler call
2754 * @crtc: crtc to update cursor for
2755 * @req: data pointer for the ioctl
2756 * @file_priv: drm file for the ioctl call
2757 *
2758 * Legacy cursor ioctl's work directly with driver buffer handles. To
2759 * translate legacy ioctl calls into universal plane handler calls, we need to
2760 * wrap the native buffer handle in a drm_framebuffer.
2761 *
2762 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2763 * buffer with a pitch of 4*width; the universal plane interface should be used
2764 * directly in cases where the hardware can support other buffer settings and
2765 * userspace wants to make use of these capabilities.
2766 *
2767 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002768 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002769 */
2770static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2771 struct drm_mode_cursor2 *req,
2772 struct drm_file *file_priv)
2773{
2774 struct drm_device *dev = crtc->dev;
2775 struct drm_framebuffer *fb = NULL;
2776 struct drm_mode_fb_cmd2 fbreq = {
2777 .width = req->width,
2778 .height = req->height,
2779 .pixel_format = DRM_FORMAT_ARGB8888,
2780 .pitches = { req->width * 4 },
2781 .handles = { req->handle },
2782 };
2783 int32_t crtc_x, crtc_y;
2784 uint32_t crtc_w = 0, crtc_h = 0;
2785 uint32_t src_w = 0, src_h = 0;
2786 int ret = 0;
2787
2788 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002789 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002790
2791 /*
2792 * Obtain fb we'll be using (either new or existing) and take an extra
2793 * reference to it if fb != null. setplane will take care of dropping
2794 * the reference if the plane update fails.
2795 */
2796 if (req->flags & DRM_MODE_CURSOR_BO) {
2797 if (req->handle) {
Chris Wilson9a6f5132015-02-25 13:45:26 +00002798 fb = internal_framebuffer_create(dev, &fbreq, file_priv);
Matt Roper161d0dc2014-06-10 08:28:10 -07002799 if (IS_ERR(fb)) {
2800 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2801 return PTR_ERR(fb);
2802 }
Matt Roper161d0dc2014-06-10 08:28:10 -07002803 } else {
2804 fb = NULL;
2805 }
2806 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002807 fb = crtc->cursor->fb;
2808 if (fb)
2809 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002810 }
2811
2812 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2813 crtc_x = req->x;
2814 crtc_y = req->y;
2815 } else {
2816 crtc_x = crtc->cursor_x;
2817 crtc_y = crtc->cursor_y;
2818 }
2819
2820 if (fb) {
2821 crtc_w = fb->width;
2822 crtc_h = fb->height;
2823 src_w = fb->width << 16;
2824 src_h = fb->height << 16;
2825 }
2826
2827 /*
2828 * setplane_internal will take care of deref'ing either the old or new
2829 * framebuffer depending on success.
2830 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002831 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002832 crtc_x, crtc_y, crtc_w, crtc_h,
2833 0, 0, src_w, src_h);
2834
2835 /* Update successful; save new cursor position, if necessary */
2836 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2837 crtc->cursor_x = req->x;
2838 crtc->cursor_y = req->y;
2839 }
2840
2841 return ret;
2842}
2843
Dave Airlie4c813d42013-06-20 11:48:52 +10002844static int drm_mode_cursor_common(struct drm_device *dev,
2845 struct drm_mode_cursor2 *req,
2846 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002847{
Dave Airlief453ba02008-11-07 14:05:41 -08002848 struct drm_crtc *crtc;
2849 int ret = 0;
2850
Dave Airliefb3b06c2011-02-08 13:55:21 +10002851 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2852 return -EINVAL;
2853
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002854 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002855 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002856
Rob Clarka2b34e22013-10-05 16:36:52 -04002857 crtc = drm_crtc_find(dev, req->crtc_id);
2858 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002859 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002860 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002861 }
Dave Airlief453ba02008-11-07 14:05:41 -08002862
Matt Roper161d0dc2014-06-10 08:28:10 -07002863 /*
2864 * If this crtc has a universal cursor plane, call that plane's update
2865 * handler rather than using legacy cursor handlers.
2866 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01002867 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002868 if (crtc->cursor) {
2869 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2870 goto out;
2871 }
2872
Dave Airlief453ba02008-11-07 14:05:41 -08002873 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002874 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002875 ret = -ENXIO;
2876 goto out;
2877 }
2878 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002879 if (crtc->funcs->cursor_set2)
2880 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2881 req->width, req->height, req->hot_x, req->hot_y);
2882 else
2883 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2884 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002885 }
2886
2887 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2888 if (crtc->funcs->cursor_move) {
2889 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2890 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002891 ret = -EFAULT;
2892 goto out;
2893 }
2894 }
2895out:
Daniel Vetterd059f652014-07-25 18:07:40 +02002896 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01002897
Dave Airlief453ba02008-11-07 14:05:41 -08002898 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10002899
2900}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002901
2902
2903/**
2904 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2905 * @dev: drm device for the ioctl
2906 * @data: data pointer for the ioctl
2907 * @file_priv: drm file for the ioctl call
2908 *
2909 * Set the cursor configuration based on user request.
2910 *
2911 * Called by the user via ioctl.
2912 *
2913 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002914 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002915 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002916int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002917 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10002918{
2919 struct drm_mode_cursor *req = data;
2920 struct drm_mode_cursor2 new_req;
2921
2922 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
2923 new_req.hot_x = new_req.hot_y = 0;
2924
2925 return drm_mode_cursor_common(dev, &new_req, file_priv);
2926}
2927
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002928/**
2929 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
2930 * @dev: drm device for the ioctl
2931 * @data: data pointer for the ioctl
2932 * @file_priv: drm file for the ioctl call
2933 *
2934 * Set the cursor configuration based on user request. This implements the 2nd
2935 * version of the cursor ioctl, which allows userspace to additionally specify
2936 * the hotspot of the pointer.
2937 *
2938 * Called by the user via ioctl.
2939 *
2940 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002941 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002942 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002943int drm_mode_cursor2_ioctl(struct drm_device *dev,
2944 void *data, struct drm_file *file_priv)
2945{
2946 struct drm_mode_cursor2 *req = data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01002947
Dave Airlie4c813d42013-06-20 11:48:52 +10002948 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08002949}
2950
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002951/**
2952 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
2953 * @bpp: bits per pixels
2954 * @depth: bit depth per pixel
2955 *
2956 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
2957 * Useful in fbdev emulation code, since that deals in those values.
2958 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002959uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2960{
2961 uint32_t fmt;
2962
2963 switch (bpp) {
2964 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02002965 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002966 break;
2967 case 16:
2968 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002969 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002970 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002971 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002972 break;
2973 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002974 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002975 break;
2976 case 32:
2977 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002978 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002979 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002980 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002981 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002982 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002983 break;
2984 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002985 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2986 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002987 break;
2988 }
2989
2990 return fmt;
2991}
2992EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2993
Dave Airlief453ba02008-11-07 14:05:41 -08002994/**
2995 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002996 * @dev: drm device for the ioctl
2997 * @data: data pointer for the ioctl
2998 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002999 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003000 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003001 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003002 *
3003 * Called by the user via ioctl.
3004 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003005 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003006 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003007 */
3008int drm_mode_addfb(struct drm_device *dev,
3009 void *data, struct drm_file *file_priv)
3010{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003011 struct drm_mode_fb_cmd *or = data;
3012 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003013 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003014
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003015 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003016 r.fb_id = or->fb_id;
3017 r.width = or->width;
3018 r.height = or->height;
3019 r.pitches[0] = or->pitch;
3020 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3021 r.handles[0] = or->handle;
3022
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003023 ret = drm_mode_addfb2(dev, &r, file_priv);
3024 if (ret)
3025 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003026
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003027 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003028
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003029 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003030}
3031
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003032static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003033{
3034 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3035
3036 switch (format) {
3037 case DRM_FORMAT_C8:
3038 case DRM_FORMAT_RGB332:
3039 case DRM_FORMAT_BGR233:
3040 case DRM_FORMAT_XRGB4444:
3041 case DRM_FORMAT_XBGR4444:
3042 case DRM_FORMAT_RGBX4444:
3043 case DRM_FORMAT_BGRX4444:
3044 case DRM_FORMAT_ARGB4444:
3045 case DRM_FORMAT_ABGR4444:
3046 case DRM_FORMAT_RGBA4444:
3047 case DRM_FORMAT_BGRA4444:
3048 case DRM_FORMAT_XRGB1555:
3049 case DRM_FORMAT_XBGR1555:
3050 case DRM_FORMAT_RGBX5551:
3051 case DRM_FORMAT_BGRX5551:
3052 case DRM_FORMAT_ARGB1555:
3053 case DRM_FORMAT_ABGR1555:
3054 case DRM_FORMAT_RGBA5551:
3055 case DRM_FORMAT_BGRA5551:
3056 case DRM_FORMAT_RGB565:
3057 case DRM_FORMAT_BGR565:
3058 case DRM_FORMAT_RGB888:
3059 case DRM_FORMAT_BGR888:
3060 case DRM_FORMAT_XRGB8888:
3061 case DRM_FORMAT_XBGR8888:
3062 case DRM_FORMAT_RGBX8888:
3063 case DRM_FORMAT_BGRX8888:
3064 case DRM_FORMAT_ARGB8888:
3065 case DRM_FORMAT_ABGR8888:
3066 case DRM_FORMAT_RGBA8888:
3067 case DRM_FORMAT_BGRA8888:
3068 case DRM_FORMAT_XRGB2101010:
3069 case DRM_FORMAT_XBGR2101010:
3070 case DRM_FORMAT_RGBX1010102:
3071 case DRM_FORMAT_BGRX1010102:
3072 case DRM_FORMAT_ARGB2101010:
3073 case DRM_FORMAT_ABGR2101010:
3074 case DRM_FORMAT_RGBA1010102:
3075 case DRM_FORMAT_BGRA1010102:
3076 case DRM_FORMAT_YUYV:
3077 case DRM_FORMAT_YVYU:
3078 case DRM_FORMAT_UYVY:
3079 case DRM_FORMAT_VYUY:
3080 case DRM_FORMAT_AYUV:
3081 case DRM_FORMAT_NV12:
3082 case DRM_FORMAT_NV21:
3083 case DRM_FORMAT_NV16:
3084 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003085 case DRM_FORMAT_NV24:
3086 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003087 case DRM_FORMAT_YUV410:
3088 case DRM_FORMAT_YVU410:
3089 case DRM_FORMAT_YUV411:
3090 case DRM_FORMAT_YVU411:
3091 case DRM_FORMAT_YUV420:
3092 case DRM_FORMAT_YVU420:
3093 case DRM_FORMAT_YUV422:
3094 case DRM_FORMAT_YVU422:
3095 case DRM_FORMAT_YUV444:
3096 case DRM_FORMAT_YVU444:
3097 return 0;
3098 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003099 DRM_DEBUG_KMS("invalid pixel format %s\n",
3100 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003101 return -EINVAL;
3102 }
3103}
3104
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003105static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003106{
3107 int ret, hsub, vsub, num_planes, i;
3108
3109 ret = format_check(r);
3110 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003111 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3112 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003113 return ret;
3114 }
3115
3116 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3117 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3118 num_planes = drm_format_num_planes(r->pixel_format);
3119
3120 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003121 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003122 return -EINVAL;
3123 }
3124
3125 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003126 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003127 return -EINVAL;
3128 }
3129
3130 for (i = 0; i < num_planes; i++) {
3131 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003132 unsigned int height = r->height / (i != 0 ? vsub : 1);
3133 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003134
3135 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003136 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003137 return -EINVAL;
3138 }
3139
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003140 if ((uint64_t) width * cpp > UINT_MAX)
3141 return -ERANGE;
3142
3143 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3144 return -ERANGE;
3145
3146 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003147 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003148 return -EINVAL;
3149 }
Rob Clarke3eb3252015-02-05 14:41:52 +00003150
3151 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
3152 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
3153 r->modifier[i], i);
3154 return -EINVAL;
3155 }
Rob Clark570655b2015-01-30 20:18:11 +05303156
3157 /* modifier specific checks: */
3158 switch (r->modifier[i]) {
3159 case DRM_FORMAT_MOD_SAMSUNG_64_32_TILE:
3160 /* NOTE: the pitch restriction may be lifted later if it turns
3161 * out that no hw has this restriction:
3162 */
3163 if (r->pixel_format != DRM_FORMAT_NV12 ||
3164 width % 128 || height % 32 ||
3165 r->pitches[i] % 128) {
3166 DRM_DEBUG_KMS("bad modifier data for plane %d\n", i);
3167 return -EINVAL;
3168 }
3169 break;
3170
3171 default:
3172 break;
3173 }
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003174 }
3175
Daniel Vetterbbe16a42015-05-20 16:53:53 +02003176 for (i = num_planes; i < 4; i++) {
3177 if (r->modifier[i]) {
3178 DRM_DEBUG_KMS("non-zero modifier for unused plane %d\n", i);
3179 return -EINVAL;
3180 }
3181
3182 /* Pre-FB_MODIFIERS userspace didn't clear the structs properly. */
3183 if (!(r->flags & DRM_MODE_FB_MODIFIERS))
3184 continue;
3185
3186 if (r->handles[i]) {
3187 DRM_DEBUG_KMS("buffer object handle for unused plane %d\n", i);
3188 return -EINVAL;
3189 }
3190
3191 if (r->pitches[i]) {
3192 DRM_DEBUG_KMS("non-zero pitch for unused plane %d\n", i);
3193 return -EINVAL;
3194 }
3195
3196 if (r->offsets[i]) {
3197 DRM_DEBUG_KMS("non-zero offset for unused plane %d\n", i);
3198 return -EINVAL;
3199 }
3200 }
3201
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003202 return 0;
3203}
3204
Chris Wilson9a6f5132015-02-25 13:45:26 +00003205static struct drm_framebuffer *
3206internal_framebuffer_create(struct drm_device *dev,
3207 struct drm_mode_fb_cmd2 *r,
3208 struct drm_file *file_priv)
Matt Roperc394c2b2014-06-10 08:28:08 -07003209{
3210 struct drm_mode_config *config = &dev->mode_config;
3211 struct drm_framebuffer *fb;
3212 int ret;
3213
Rob Clarke3eb3252015-02-05 14:41:52 +00003214 if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
Matt Roperc394c2b2014-06-10 08:28:08 -07003215 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3216 return ERR_PTR(-EINVAL);
3217 }
3218
3219 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3220 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3221 r->width, config->min_width, config->max_width);
3222 return ERR_PTR(-EINVAL);
3223 }
3224 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3225 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3226 r->height, config->min_height, config->max_height);
3227 return ERR_PTR(-EINVAL);
3228 }
3229
Rob Clarke3eb3252015-02-05 14:41:52 +00003230 if (r->flags & DRM_MODE_FB_MODIFIERS &&
3231 !dev->mode_config.allow_fb_modifiers) {
3232 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
3233 return ERR_PTR(-EINVAL);
3234 }
3235
Matt Roperc394c2b2014-06-10 08:28:08 -07003236 ret = framebuffer_check(r);
3237 if (ret)
3238 return ERR_PTR(ret);
3239
3240 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3241 if (IS_ERR(fb)) {
3242 DRM_DEBUG_KMS("could not create framebuffer\n");
3243 return fb;
3244 }
3245
Matt Roperc394c2b2014-06-10 08:28:08 -07003246 return fb;
3247}
3248
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003249/**
3250 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003251 * @dev: drm device for the ioctl
3252 * @data: data pointer for the ioctl
3253 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003254 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003255 * Add a new FB to the specified CRTC, given a user request with format. This is
3256 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3257 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003258 *
3259 * Called by the user via ioctl.
3260 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003261 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003262 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003263 */
3264int drm_mode_addfb2(struct drm_device *dev,
3265 void *data, struct drm_file *file_priv)
3266{
Chris Wilson9a6f5132015-02-25 13:45:26 +00003267 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003268 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003269
Dave Airliefb3b06c2011-02-08 13:55:21 +10003270 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3271 return -EINVAL;
3272
Chris Wilson9a6f5132015-02-25 13:45:26 +00003273 fb = internal_framebuffer_create(dev, r, file_priv);
Matt Roperc394c2b2014-06-10 08:28:08 -07003274 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003275 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003276
Chris Wilson9a6f5132015-02-25 13:45:26 +00003277 /* Transfer ownership to the filp for reaping on close */
3278
3279 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3280 mutex_lock(&file_priv->fbs_lock);
3281 r->fb_id = fb->base.id;
3282 list_add(&fb->filp_head, &file_priv->fbs);
3283 mutex_unlock(&file_priv->fbs_lock);
3284
Matt Roperc394c2b2014-06-10 08:28:08 -07003285 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003286}
3287
3288/**
3289 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003290 * @dev: drm device for the ioctl
3291 * @data: data pointer for the ioctl
3292 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003293 *
Dave Airlief453ba02008-11-07 14:05:41 -08003294 * Remove the FB specified by the user.
3295 *
3296 * Called by the user via ioctl.
3297 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003298 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003299 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003300 */
3301int drm_mode_rmfb(struct drm_device *dev,
3302 void *data, struct drm_file *file_priv)
3303{
Dave Airlief453ba02008-11-07 14:05:41 -08003304 struct drm_framebuffer *fb = NULL;
3305 struct drm_framebuffer *fbl = NULL;
3306 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003307 int found = 0;
3308
Dave Airliefb3b06c2011-02-08 13:55:21 +10003309 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3310 return -EINVAL;
3311
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003312 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003313 mutex_lock(&dev->mode_config.fb_lock);
3314 fb = __drm_framebuffer_lookup(dev, *id);
3315 if (!fb)
3316 goto fail_lookup;
3317
Dave Airlief453ba02008-11-07 14:05:41 -08003318 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3319 if (fb == fbl)
3320 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003321 if (!found)
3322 goto fail_lookup;
3323
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003324 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003325 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003326 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003327
Maarten Lankhorst13803132015-09-09 16:40:56 +02003328 drm_framebuffer_unreference(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003329
Daniel Vetter2b677e82012-12-10 21:16:05 +01003330 return 0;
3331
3332fail_lookup:
3333 mutex_unlock(&dev->mode_config.fb_lock);
3334 mutex_unlock(&file_priv->fbs_lock);
3335
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003336 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003337}
3338
3339/**
3340 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003341 * @dev: drm device for the ioctl
3342 * @data: data pointer for the ioctl
3343 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003344 *
Dave Airlief453ba02008-11-07 14:05:41 -08003345 * Lookup the FB given its ID and return info about it.
3346 *
3347 * Called by the user via ioctl.
3348 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003349 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003350 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003351 */
3352int drm_mode_getfb(struct drm_device *dev,
3353 void *data, struct drm_file *file_priv)
3354{
3355 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003356 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003357 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003358
Dave Airliefb3b06c2011-02-08 13:55:21 +10003359 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3360 return -EINVAL;
3361
Daniel Vetter786b99e2012-12-02 21:53:40 +01003362 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003363 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003364 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003365
3366 r->height = fb->height;
3367 r->width = fb->width;
3368 r->depth = fb->depth;
3369 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003370 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003371 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003372 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003373 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003374 ret = fb->funcs->create_handle(fb, file_priv,
3375 &r->handle);
3376 } else {
3377 /* GET_FB() is an unprivileged ioctl so we must not
3378 * return a buffer-handle to non-master processes! For
3379 * backwards-compatibility reasons, we cannot make
3380 * GET_FB() privileged, so just return an invalid handle
3381 * for non-masters. */
3382 r->handle = 0;
3383 ret = 0;
3384 }
3385 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003386 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003387 }
Dave Airlief453ba02008-11-07 14:05:41 -08003388
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003389 drm_framebuffer_unreference(fb);
3390
Dave Airlief453ba02008-11-07 14:05:41 -08003391 return ret;
3392}
3393
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003394/**
3395 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3396 * @dev: drm device for the ioctl
3397 * @data: data pointer for the ioctl
3398 * @file_priv: drm file for the ioctl call
3399 *
3400 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3401 * rectangle list. Generic userspace which does frontbuffer rendering must call
3402 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3403 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3404 *
3405 * Modesetting drivers which always update the frontbuffer do not need to
3406 * implement the corresponding ->dirty framebuffer callback.
3407 *
3408 * Called by the user via ioctl.
3409 *
3410 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003411 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003412 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003413int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3414 void *data, struct drm_file *file_priv)
3415{
3416 struct drm_clip_rect __user *clips_ptr;
3417 struct drm_clip_rect *clips = NULL;
3418 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003419 struct drm_framebuffer *fb;
3420 unsigned flags;
3421 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003422 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003423
Dave Airliefb3b06c2011-02-08 13:55:21 +10003424 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3425 return -EINVAL;
3426
Daniel Vetter786b99e2012-12-02 21:53:40 +01003427 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003428 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003429 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003430
3431 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003432 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003433
3434 if (!num_clips != !clips_ptr) {
3435 ret = -EINVAL;
3436 goto out_err1;
3437 }
3438
3439 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3440
3441 /* If userspace annotates copy, clips must come in pairs */
3442 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3443 ret = -EINVAL;
3444 goto out_err1;
3445 }
3446
3447 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003448 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3449 ret = -EINVAL;
3450 goto out_err1;
3451 }
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003452 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003453 if (!clips) {
3454 ret = -ENOMEM;
3455 goto out_err1;
3456 }
3457
3458 ret = copy_from_user(clips, clips_ptr,
3459 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003460 if (ret) {
3461 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003462 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003463 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003464 }
3465
3466 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003467 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3468 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003469 } else {
3470 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003471 }
3472
3473out_err2:
3474 kfree(clips);
3475out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003476 drm_framebuffer_unreference(fb);
3477
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003478 return ret;
3479}
3480
3481
Dave Airlief453ba02008-11-07 14:05:41 -08003482/**
3483 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003484 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003485 *
Dave Airlief453ba02008-11-07 14:05:41 -08003486 * Destroy all the FBs associated with @filp.
3487 *
3488 * Called by the user via ioctl.
3489 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003490 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003491 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003492 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003493void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003494{
Dave Airlief453ba02008-11-07 14:05:41 -08003495 struct drm_framebuffer *fb, *tfb;
3496
Daniel Vetter1b116292014-09-24 21:51:06 +02003497 /*
3498 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003499 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003500 * avoid upsetting lockdep since the universal cursor code adds a
3501 * framebuffer while holding mutex locks.
3502 *
3503 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3504 * locks is impossible here since no one else but this function can get
3505 * at it any more.
3506 */
Dave Airlief453ba02008-11-07 14:05:41 -08003507 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003508 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003509
Maarten Lankhorst73f75702015-09-09 16:40:57 +02003510 /* This drops the fpriv->fbs reference. */
Maarten Lankhorst13803132015-09-09 16:40:56 +02003511 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003512 }
Dave Airlief453ba02008-11-07 14:05:41 -08003513}
3514
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003515/**
3516 * drm_property_create - create a new property type
3517 * @dev: drm device
3518 * @flags: flags specifying the property type
3519 * @name: name of the property
3520 * @num_values: number of pre-defined values
3521 *
3522 * This creates a new generic drm property which can then be attached to a drm
3523 * object with drm_object_attach_property. The returned property object must be
3524 * freed with drm_property_destroy.
3525 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003526 * Note that the DRM core keeps a per-device list of properties and that, if
3527 * drm_mode_config_cleanup() is called, it will destroy all properties created
3528 * by the driver.
3529 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003530 * Returns:
3531 * A pointer to the newly created property on success, NULL on failure.
3532 */
Dave Airlief453ba02008-11-07 14:05:41 -08003533struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3534 const char *name, int num_values)
3535{
3536 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003537 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003538
3539 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3540 if (!property)
3541 return NULL;
3542
Rob Clark98f75de2014-05-30 11:37:03 -04003543 property->dev = dev;
3544
Dave Airlief453ba02008-11-07 14:05:41 -08003545 if (num_values) {
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003546 property->values = kcalloc(num_values, sizeof(uint64_t),
3547 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08003548 if (!property->values)
3549 goto fail;
3550 }
3551
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003552 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3553 if (ret)
3554 goto fail;
3555
Dave Airlief453ba02008-11-07 14:05:41 -08003556 property->flags = flags;
3557 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003558 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003559
Vinson Lee471dd2e2011-11-10 11:55:40 -08003560 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003561 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003562 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3563 }
Dave Airlief453ba02008-11-07 14:05:41 -08003564
3565 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003566
3567 WARN_ON(!drm_property_type_valid(property));
3568
Dave Airlief453ba02008-11-07 14:05:41 -08003569 return property;
3570fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003571 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003572 kfree(property);
3573 return NULL;
3574}
3575EXPORT_SYMBOL(drm_property_create);
3576
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003577/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003578 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003579 * @dev: drm device
3580 * @flags: flags specifying the property type
3581 * @name: name of the property
3582 * @props: enumeration lists with property values
3583 * @num_values: number of pre-defined values
3584 *
3585 * This creates a new generic drm property which can then be attached to a drm
3586 * object with drm_object_attach_property. The returned property object must be
3587 * freed with drm_property_destroy.
3588 *
3589 * Userspace is only allowed to set one of the predefined values for enumeration
3590 * properties.
3591 *
3592 * Returns:
3593 * A pointer to the newly created property on success, NULL on failure.
3594 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003595struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3596 const char *name,
3597 const struct drm_prop_enum_list *props,
3598 int num_values)
3599{
3600 struct drm_property *property;
3601 int i, ret;
3602
3603 flags |= DRM_MODE_PROP_ENUM;
3604
3605 property = drm_property_create(dev, flags, name, num_values);
3606 if (!property)
3607 return NULL;
3608
3609 for (i = 0; i < num_values; i++) {
3610 ret = drm_property_add_enum(property, i,
3611 props[i].type,
3612 props[i].name);
3613 if (ret) {
3614 drm_property_destroy(dev, property);
3615 return NULL;
3616 }
3617 }
3618
3619 return property;
3620}
3621EXPORT_SYMBOL(drm_property_create_enum);
3622
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003623/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003624 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003625 * @dev: drm device
3626 * @flags: flags specifying the property type
3627 * @name: name of the property
3628 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003629 * @num_props: size of the @props array
3630 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003631 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003632 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003633 * object with drm_object_attach_property. The returned property object must be
3634 * freed with drm_property_destroy.
3635 *
3636 * Compared to plain enumeration properties userspace is allowed to set any
3637 * or'ed together combination of the predefined property bitflag values
3638 *
3639 * Returns:
3640 * A pointer to the newly created property on success, NULL on failure.
3641 */
Rob Clark49e27542012-05-17 02:23:26 -06003642struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3643 int flags, const char *name,
3644 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303645 int num_props,
3646 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003647{
3648 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303649 int i, ret, index = 0;
3650 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003651
3652 flags |= DRM_MODE_PROP_BITMASK;
3653
3654 property = drm_property_create(dev, flags, name, num_values);
3655 if (!property)
3656 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303657 for (i = 0; i < num_props; i++) {
3658 if (!(supported_bits & (1ULL << props[i].type)))
3659 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003660
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303661 if (WARN_ON(index >= num_values)) {
3662 drm_property_destroy(dev, property);
3663 return NULL;
3664 }
3665
3666 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003667 props[i].type,
3668 props[i].name);
3669 if (ret) {
3670 drm_property_destroy(dev, property);
3671 return NULL;
3672 }
3673 }
3674
3675 return property;
3676}
3677EXPORT_SYMBOL(drm_property_create_bitmask);
3678
Rob Clarkebc44cf2012-09-12 22:22:31 -05003679static struct drm_property *property_create_range(struct drm_device *dev,
3680 int flags, const char *name,
3681 uint64_t min, uint64_t max)
3682{
3683 struct drm_property *property;
3684
3685 property = drm_property_create(dev, flags, name, 2);
3686 if (!property)
3687 return NULL;
3688
3689 property->values[0] = min;
3690 property->values[1] = max;
3691
3692 return property;
3693}
3694
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003695/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003696 * drm_property_create_range - create a new unsigned ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003697 * @dev: drm device
3698 * @flags: flags specifying the property type
3699 * @name: name of the property
3700 * @min: minimum value of the property
3701 * @max: maximum value of the property
3702 *
3703 * This creates a new generic drm property which can then be attached to a drm
3704 * object with drm_object_attach_property. The returned property object must be
3705 * freed with drm_property_destroy.
3706 *
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003707 * Userspace is allowed to set any unsigned integer value in the (min, max)
3708 * range inclusive.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003709 *
3710 * Returns:
3711 * A pointer to the newly created property on success, NULL on failure.
3712 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003713struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3714 const char *name,
3715 uint64_t min, uint64_t max)
3716{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003717 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3718 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003719}
3720EXPORT_SYMBOL(drm_property_create_range);
3721
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003722/**
3723 * drm_property_create_signed_range - create a new signed ranged property type
3724 * @dev: drm device
3725 * @flags: flags specifying the property type
3726 * @name: name of the property
3727 * @min: minimum value of the property
3728 * @max: maximum value of the property
3729 *
3730 * This creates a new generic drm property which can then be attached to a drm
3731 * object with drm_object_attach_property. The returned property object must be
3732 * freed with drm_property_destroy.
3733 *
3734 * Userspace is allowed to set any signed integer value in the (min, max)
3735 * range inclusive.
3736 *
3737 * Returns:
3738 * A pointer to the newly created property on success, NULL on failure.
3739 */
Rob Clarkebc44cf2012-09-12 22:22:31 -05003740struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3741 int flags, const char *name,
3742 int64_t min, int64_t max)
3743{
3744 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3745 name, I642U64(min), I642U64(max));
3746}
3747EXPORT_SYMBOL(drm_property_create_signed_range);
3748
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003749/**
3750 * drm_property_create_object - create a new object property type
3751 * @dev: drm device
3752 * @flags: flags specifying the property type
3753 * @name: name of the property
3754 * @type: object type from DRM_MODE_OBJECT_* defines
3755 *
3756 * This creates a new generic drm property which can then be attached to a drm
3757 * object with drm_object_attach_property. The returned property object must be
3758 * freed with drm_property_destroy.
3759 *
3760 * Userspace is only allowed to set this to any property value of the given
3761 * @type. Only useful for atomic properties, which is enforced.
3762 *
3763 * Returns:
3764 * A pointer to the newly created property on success, NULL on failure.
3765 */
Rob Clark98f75de2014-05-30 11:37:03 -04003766struct drm_property *drm_property_create_object(struct drm_device *dev,
3767 int flags, const char *name, uint32_t type)
3768{
3769 struct drm_property *property;
3770
3771 flags |= DRM_MODE_PROP_OBJECT;
3772
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003773 if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
3774 return NULL;
3775
Rob Clark98f75de2014-05-30 11:37:03 -04003776 property = drm_property_create(dev, flags, name, 1);
3777 if (!property)
3778 return NULL;
3779
3780 property->values[0] = type;
3781
3782 return property;
3783}
3784EXPORT_SYMBOL(drm_property_create_object);
3785
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003786/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003787 * drm_property_create_bool - create a new boolean property type
3788 * @dev: drm device
3789 * @flags: flags specifying the property type
3790 * @name: name of the property
3791 *
3792 * This creates a new generic drm property which can then be attached to a drm
3793 * object with drm_object_attach_property. The returned property object must be
3794 * freed with drm_property_destroy.
3795 *
3796 * This is implemented as a ranged property with only {0, 1} as valid values.
3797 *
3798 * Returns:
3799 * A pointer to the newly created property on success, NULL on failure.
3800 */
3801struct drm_property *drm_property_create_bool(struct drm_device *dev, int flags,
3802 const char *name)
3803{
3804 return drm_property_create_range(dev, flags, name, 0, 1);
3805}
3806EXPORT_SYMBOL(drm_property_create_bool);
3807
3808/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003809 * drm_property_add_enum - add a possible value to an enumeration property
3810 * @property: enumeration property to change
3811 * @index: index of the new enumeration
3812 * @value: value of the new enumeration
3813 * @name: symbolic name of the new enumeration
3814 *
3815 * This functions adds enumerations to a property.
3816 *
3817 * It's use is deprecated, drivers should use one of the more specific helpers
3818 * to directly create the property with all enumerations already attached.
3819 *
3820 * Returns:
3821 * Zero on success, error code on failure.
3822 */
Dave Airlief453ba02008-11-07 14:05:41 -08003823int drm_property_add_enum(struct drm_property *property, int index,
3824 uint64_t value, const char *name)
3825{
3826 struct drm_property_enum *prop_enum;
3827
Rob Clark5ea22f22014-05-30 11:34:01 -04003828 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3829 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003830 return -EINVAL;
3831
3832 /*
3833 * Bitmask enum properties have the additional constraint of values
3834 * from 0 to 63
3835 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003836 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3837 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003838 return -EINVAL;
3839
Daniel Vetter3758b342014-11-19 18:38:10 +01003840 if (!list_empty(&property->enum_list)) {
3841 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003842 if (prop_enum->value == value) {
3843 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3844 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3845 return 0;
3846 }
3847 }
3848 }
3849
3850 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3851 if (!prop_enum)
3852 return -ENOMEM;
3853
3854 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3855 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3856 prop_enum->value = value;
3857
3858 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003859 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003860 return 0;
3861}
3862EXPORT_SYMBOL(drm_property_add_enum);
3863
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003864/**
3865 * drm_property_destroy - destroy a drm property
3866 * @dev: drm device
3867 * @property: property to destry
3868 *
3869 * This function frees a property including any attached resources like
3870 * enumeration values.
3871 */
Dave Airlief453ba02008-11-07 14:05:41 -08003872void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3873{
3874 struct drm_property_enum *prop_enum, *pt;
3875
Daniel Vetter3758b342014-11-19 18:38:10 +01003876 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003877 list_del(&prop_enum->head);
3878 kfree(prop_enum);
3879 }
3880
3881 if (property->num_values)
3882 kfree(property->values);
3883 drm_mode_object_put(dev, &property->base);
3884 list_del(&property->head);
3885 kfree(property);
3886}
3887EXPORT_SYMBOL(drm_property_destroy);
3888
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003889/**
3890 * drm_object_attach_property - attach a property to a modeset object
3891 * @obj: drm modeset object
3892 * @property: property to attach
3893 * @init_val: initial value of the property
3894 *
3895 * This attaches the given property to the modeset object with the given initial
3896 * value. Currently this function cannot fail since the properties are stored in
3897 * a statically sized array.
3898 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003899void drm_object_attach_property(struct drm_mode_object *obj,
3900 struct drm_property *property,
3901 uint64_t init_val)
3902{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003903 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003904
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003905 if (count == DRM_OBJECT_MAX_PROPERTY) {
3906 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3907 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3908 "you see this message on the same object type.\n",
3909 obj->type);
3910 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03003911 }
3912
Rob Clarkb17cd752014-12-16 18:05:30 -05003913 obj->properties->properties[count] = property;
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003914 obj->properties->values[count] = init_val;
3915 obj->properties->count++;
Rob Clark88a48e22014-12-18 16:01:50 -05003916 if (property->flags & DRM_MODE_PROP_ATOMIC)
3917 obj->properties->atomic_count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03003918}
3919EXPORT_SYMBOL(drm_object_attach_property);
3920
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003921/**
3922 * drm_object_property_set_value - set the value of a property
3923 * @obj: drm mode object to set property value for
3924 * @property: property to set
3925 * @val: value the property should be set to
3926 *
3927 * This functions sets a given property on a given object. This function only
3928 * changes the software state of the property, it does not call into the
3929 * driver's ->set_property callback.
3930 *
3931 * Returns:
3932 * Zero on success, error code on failure.
3933 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003934int drm_object_property_set_value(struct drm_mode_object *obj,
3935 struct drm_property *property, uint64_t val)
3936{
3937 int i;
3938
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003939 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05003940 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003941 obj->properties->values[i] = val;
3942 return 0;
3943 }
3944 }
3945
3946 return -EINVAL;
3947}
3948EXPORT_SYMBOL(drm_object_property_set_value);
3949
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003950/**
3951 * drm_object_property_get_value - retrieve the value of a property
3952 * @obj: drm mode object to get property value from
3953 * @property: property to retrieve
3954 * @val: storage for the property value
3955 *
3956 * This function retrieves the softare state of the given property for the given
3957 * property. Since there is no driver callback to retrieve the current property
3958 * value this might be out of sync with the hardware, depending upon the driver
3959 * and property.
3960 *
3961 * Returns:
3962 * Zero on success, error code on failure.
3963 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003964int drm_object_property_get_value(struct drm_mode_object *obj,
3965 struct drm_property *property, uint64_t *val)
3966{
3967 int i;
3968
Rob Clark88a48e22014-12-18 16:01:50 -05003969 /* read-only properties bypass atomic mechanism and still store
3970 * their value in obj->properties->values[].. mostly to avoid
3971 * having to deal w/ EDID and similar props in atomic paths:
3972 */
3973 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
3974 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
3975 return drm_atomic_get_property(obj, property, val);
3976
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003977 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05003978 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003979 *val = obj->properties->values[i];
3980 return 0;
3981 }
3982 }
3983
3984 return -EINVAL;
3985}
3986EXPORT_SYMBOL(drm_object_property_get_value);
3987
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003988/**
Daniel Vetter1a498632014-11-19 18:38:09 +01003989 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003990 * @dev: DRM device
3991 * @data: ioctl data
3992 * @file_priv: DRM file info
3993 *
Daniel Vetter1a498632014-11-19 18:38:09 +01003994 * This function retrieves the metadata for a given property, like the different
3995 * possible values for an enum property or the limits for a range property.
3996 *
3997 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003998 *
3999 * Called by the user via ioctl.
4000 *
4001 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004002 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004003 */
Dave Airlief453ba02008-11-07 14:05:41 -08004004int drm_mode_getproperty_ioctl(struct drm_device *dev,
4005 void *data, struct drm_file *file_priv)
4006{
Dave Airlief453ba02008-11-07 14:05:41 -08004007 struct drm_mode_get_property *out_resp = data;
4008 struct drm_property *property;
4009 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004010 int value_count = 0;
4011 int ret = 0, i;
4012 int copied;
4013 struct drm_property_enum *prop_enum;
4014 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004015 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004016
Dave Airliefb3b06c2011-02-08 13:55:21 +10004017 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4018 return -EINVAL;
4019
Daniel Vetter84849902012-12-02 00:28:11 +01004020 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004021 property = drm_property_find(dev, out_resp->prop_id);
4022 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004023 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004024 goto done;
4025 }
Dave Airlief453ba02008-11-07 14:05:41 -08004026
Rob Clark5ea22f22014-05-30 11:34:01 -04004027 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4028 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01004029 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08004030 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08004031 }
4032
4033 value_count = property->num_values;
4034
4035 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4036 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4037 out_resp->flags = property->flags;
4038
4039 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004040 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004041 for (i = 0; i < value_count; i++) {
4042 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4043 ret = -EFAULT;
4044 goto done;
4045 }
4046 }
4047 }
4048 out_resp->count_values = value_count;
4049
Rob Clark5ea22f22014-05-30 11:34:01 -04004050 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4051 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004052 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4053 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004054 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01004055 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004056
4057 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4058 ret = -EFAULT;
4059 goto done;
4060 }
4061
4062 if (copy_to_user(&enum_ptr[copied].name,
4063 &prop_enum->name, DRM_PROP_NAME_LEN)) {
4064 ret = -EFAULT;
4065 goto done;
4066 }
4067 copied++;
4068 }
4069 }
4070 out_resp->count_enum_blobs = enum_count;
4071 }
4072
Daniel Vetter3758b342014-11-19 18:38:10 +01004073 /*
4074 * NOTE: The idea seems to have been to use this to read all the blob
4075 * property values. But nothing ever added them to the corresponding
4076 * list, userspace always used the special-purpose get_blob ioctl to
4077 * read the value for a blob property. It also doesn't make a lot of
4078 * sense to return values here when everything else is just metadata for
4079 * the property itself.
4080 */
4081 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4082 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004083done:
Daniel Vetter84849902012-12-02 00:28:11 +01004084 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004085 return ret;
4086}
4087
Daniel Stone99531d92015-05-22 13:34:49 +01004088/**
4089 * drm_property_create_blob - Create new blob property
4090 *
4091 * Creates a new blob property for a specified DRM device, optionally
4092 * copying data.
4093 *
4094 * @dev: DRM device to create property for
4095 * @length: Length to allocate for blob data
4096 * @data: If specified, copies data into blob
Daniel Stone10e8cb72015-05-22 13:34:50 +01004097 *
4098 * Returns:
4099 * New blob property with a single reference on success, or an ERR_PTR
4100 * value on failure.
Daniel Stone99531d92015-05-22 13:34:49 +01004101 */
Daniel Stone6bcacf52015-04-20 19:22:55 +01004102struct drm_property_blob *
Thierry Redingecbbe592014-05-13 11:36:13 +02004103drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004104 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08004105{
4106 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004107 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004108
Daniel Stone99531d92015-05-22 13:34:49 +01004109 if (!length)
Daniel Stone10e8cb72015-05-22 13:34:50 +01004110 return ERR_PTR(-EINVAL);
Dave Airlief453ba02008-11-07 14:05:41 -08004111
4112 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4113 if (!blob)
Daniel Stone10e8cb72015-05-22 13:34:50 +01004114 return ERR_PTR(-ENOMEM);
Dave Airlief453ba02008-11-07 14:05:41 -08004115
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004116 /* This must be explicitly initialised, so we can safely call list_del
4117 * on it in the removal handler, even if it isn't in a file list. */
4118 INIT_LIST_HEAD(&blob->head_file);
Dave Airlief453ba02008-11-07 14:05:41 -08004119 blob->length = length;
Daniel Stone6bcacf52015-04-20 19:22:55 +01004120 blob->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08004121
Daniel Stone99531d92015-05-22 13:34:49 +01004122 if (data)
4123 memcpy(blob->data, data, length);
Dave Airlief453ba02008-11-07 14:05:41 -08004124
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004125 mutex_lock(&dev->mode_config.blob_lock);
4126
4127 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4128 if (ret) {
4129 kfree(blob);
4130 mutex_unlock(&dev->mode_config.blob_lock);
Daniel Stone10e8cb72015-05-22 13:34:50 +01004131 return ERR_PTR(-EINVAL);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004132 }
4133
Daniel Stone6bcacf52015-04-20 19:22:55 +01004134 kref_init(&blob->refcount);
4135
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004136 list_add_tail(&blob->head_global,
4137 &dev->mode_config.property_blob_list);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004138
4139 mutex_unlock(&dev->mode_config.blob_lock);
4140
Dave Airlief453ba02008-11-07 14:05:41 -08004141 return blob;
4142}
Daniel Stone6bcacf52015-04-20 19:22:55 +01004143EXPORT_SYMBOL(drm_property_create_blob);
Dave Airlief453ba02008-11-07 14:05:41 -08004144
Daniel Stone6bcacf52015-04-20 19:22:55 +01004145/**
4146 * drm_property_free_blob - Blob property destructor
4147 *
4148 * Internal free function for blob properties; must not be used directly.
4149 *
Daniel Stonef102c162015-05-22 13:34:44 +01004150 * @kref: Reference
Daniel Stone6bcacf52015-04-20 19:22:55 +01004151 */
4152static void drm_property_free_blob(struct kref *kref)
Dave Airlief453ba02008-11-07 14:05:41 -08004153{
Daniel Stone6bcacf52015-04-20 19:22:55 +01004154 struct drm_property_blob *blob =
4155 container_of(kref, struct drm_property_blob, refcount);
4156
4157 WARN_ON(!mutex_is_locked(&blob->dev->mode_config.blob_lock));
4158
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004159 list_del(&blob->head_global);
4160 list_del(&blob->head_file);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004161 drm_mode_object_put(blob->dev, &blob->base);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004162
Dave Airlief453ba02008-11-07 14:05:41 -08004163 kfree(blob);
4164}
4165
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004166/**
Daniel Stone6bcacf52015-04-20 19:22:55 +01004167 * drm_property_unreference_blob - Unreference a blob property
4168 *
4169 * Drop a reference on a blob property. May free the object.
4170 *
Daniel Stonef102c162015-05-22 13:34:44 +01004171 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004172 */
4173void drm_property_unreference_blob(struct drm_property_blob *blob)
4174{
4175 struct drm_device *dev;
4176
4177 if (!blob)
4178 return;
4179
4180 dev = blob->dev;
4181
4182 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4183
4184 if (kref_put_mutex(&blob->refcount, drm_property_free_blob,
4185 &dev->mode_config.blob_lock))
4186 mutex_unlock(&dev->mode_config.blob_lock);
4187 else
4188 might_lock(&dev->mode_config.blob_lock);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004189}
4190EXPORT_SYMBOL(drm_property_unreference_blob);
4191
4192/**
4193 * drm_property_unreference_blob_locked - Unreference a blob property with blob_lock held
4194 *
4195 * Drop a reference on a blob property. May free the object. This must be
4196 * called with blob_lock held.
4197 *
Daniel Stonef102c162015-05-22 13:34:44 +01004198 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004199 */
4200static void drm_property_unreference_blob_locked(struct drm_property_blob *blob)
4201{
4202 if (!blob)
4203 return;
4204
4205 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4206
4207 kref_put(&blob->refcount, drm_property_free_blob);
4208}
4209
4210/**
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004211 * drm_property_destroy_user_blobs - destroy all blobs created by this client
4212 * @dev: DRM device
4213 * @file_priv: destroy all blobs owned by this file handle
4214 */
4215void drm_property_destroy_user_blobs(struct drm_device *dev,
4216 struct drm_file *file_priv)
4217{
4218 struct drm_property_blob *blob, *bt;
4219
4220 mutex_lock(&dev->mode_config.blob_lock);
4221
4222 list_for_each_entry_safe(blob, bt, &file_priv->blobs, head_file) {
4223 list_del_init(&blob->head_file);
4224 drm_property_unreference_blob_locked(blob);
4225 }
4226
4227 mutex_unlock(&dev->mode_config.blob_lock);
4228}
4229
4230/**
Daniel Stone6bcacf52015-04-20 19:22:55 +01004231 * drm_property_reference_blob - Take a reference on an existing property
4232 *
4233 * Take a new reference on an existing blob property.
4234 *
Daniel Stonef102c162015-05-22 13:34:44 +01004235 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004236 */
4237struct drm_property_blob *drm_property_reference_blob(struct drm_property_blob *blob)
4238{
4239 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4240 kref_get(&blob->refcount);
4241 return blob;
4242}
4243EXPORT_SYMBOL(drm_property_reference_blob);
4244
4245/*
4246 * Like drm_property_lookup_blob, but does not return an additional reference.
4247 * Must be called with blob_lock held.
4248 */
4249static struct drm_property_blob *__drm_property_lookup_blob(struct drm_device *dev,
4250 uint32_t id)
4251{
4252 struct drm_mode_object *obj = NULL;
4253 struct drm_property_blob *blob;
4254
4255 WARN_ON(!mutex_is_locked(&dev->mode_config.blob_lock));
4256
4257 mutex_lock(&dev->mode_config.idr_mutex);
4258 obj = idr_find(&dev->mode_config.crtc_idr, id);
4259 if (!obj || (obj->type != DRM_MODE_OBJECT_BLOB) || (obj->id != id))
4260 blob = NULL;
4261 else
4262 blob = obj_to_blob(obj);
4263 mutex_unlock(&dev->mode_config.idr_mutex);
4264
Dave Airlief453ba02008-11-07 14:05:41 -08004265 return blob;
4266}
4267
Daniel Stone6bcacf52015-04-20 19:22:55 +01004268/**
4269 * drm_property_lookup_blob - look up a blob property and take a reference
4270 * @dev: drm device
4271 * @id: id of the blob property
4272 *
4273 * If successful, this takes an additional reference to the blob property.
4274 * callers need to make sure to eventually unreference the returned property
4275 * again, using @drm_property_unreference_blob.
4276 */
4277struct drm_property_blob *drm_property_lookup_blob(struct drm_device *dev,
4278 uint32_t id)
Dave Airlief453ba02008-11-07 14:05:41 -08004279{
Daniel Stone6bcacf52015-04-20 19:22:55 +01004280 struct drm_property_blob *blob;
4281
4282 mutex_lock(&dev->mode_config.blob_lock);
4283 blob = __drm_property_lookup_blob(dev, id);
4284 if (blob) {
4285 if (!kref_get_unless_zero(&blob->refcount))
4286 blob = NULL;
4287 }
4288 mutex_unlock(&dev->mode_config.blob_lock);
4289
4290 return blob;
4291}
4292EXPORT_SYMBOL(drm_property_lookup_blob);
4293
4294/**
Daniel Stoned2ed3432015-04-20 19:22:53 +01004295 * drm_property_replace_global_blob - atomically replace existing blob property
4296 * @dev: drm device
4297 * @replace: location of blob property pointer to be replaced
4298 * @length: length of data for new blob, or 0 for no data
4299 * @data: content for new blob, or NULL for no data
4300 * @obj_holds_id: optional object for property holding blob ID
4301 * @prop_holds_id: optional property holding blob ID
4302 * @return 0 on success or error on failure
4303 *
4304 * This function will atomically replace a global property in the blob list,
4305 * optionally updating a property which holds the ID of that property. It is
4306 * guaranteed to be atomic: no caller will be allowed to see intermediate
4307 * results, and either the entire operation will succeed and clean up the
4308 * previous property, or it will fail and the state will be unchanged.
4309 *
4310 * If length is 0 or data is NULL, no new blob will be created, and the holding
4311 * property, if specified, will be set to 0.
4312 *
4313 * Access to the replace pointer is assumed to be protected by the caller, e.g.
4314 * by holding the relevant modesetting object lock for its parent.
4315 *
4316 * For example, a drm_connector has a 'PATH' property, which contains the ID
4317 * of a blob property with the value of the MST path information. Calling this
4318 * function with replace pointing to the connector's path_blob_ptr, length and
4319 * data set for the new path information, obj_holds_id set to the connector's
4320 * base object, and prop_holds_id set to the path property name, will perform
4321 * a completely atomic update. The access to path_blob_ptr is protected by the
4322 * caller holding a lock on the connector.
4323 */
4324static int drm_property_replace_global_blob(struct drm_device *dev,
4325 struct drm_property_blob **replace,
4326 size_t length,
4327 const void *data,
4328 struct drm_mode_object *obj_holds_id,
4329 struct drm_property *prop_holds_id)
4330{
4331 struct drm_property_blob *new_blob = NULL;
4332 struct drm_property_blob *old_blob = NULL;
4333 int ret;
4334
4335 WARN_ON(replace == NULL);
4336
4337 old_blob = *replace;
4338
4339 if (length && data) {
4340 new_blob = drm_property_create_blob(dev, length, data);
Daniel Stone10e8cb72015-05-22 13:34:50 +01004341 if (IS_ERR(new_blob))
4342 return PTR_ERR(new_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004343 }
4344
4345 /* This does not need to be synchronised with blob_lock, as the
4346 * get_properties ioctl locks all modesetting objects, and
4347 * obj_holds_id must be locked before calling here, so we cannot
4348 * have its value out of sync with the list membership modified
4349 * below under blob_lock. */
4350 if (obj_holds_id) {
4351 ret = drm_object_property_set_value(obj_holds_id,
4352 prop_holds_id,
4353 new_blob ?
4354 new_blob->base.id : 0);
4355 if (ret != 0)
4356 goto err_created;
4357 }
4358
Markus Elfringec530822015-07-05 21:55:10 +02004359 drm_property_unreference_blob(old_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004360 *replace = new_blob;
4361
4362 return 0;
4363
4364err_created:
Daniel Stone6bcacf52015-04-20 19:22:55 +01004365 drm_property_unreference_blob(new_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004366 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004367}
4368
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004369/**
4370 * drm_mode_getblob_ioctl - get the contents of a blob property value
4371 * @dev: DRM device
4372 * @data: ioctl data
4373 * @file_priv: DRM file info
4374 *
4375 * This function retrieves the contents of a blob property. The value stored in
4376 * an object's blob property is just a normal modeset object id.
4377 *
4378 * Called by the user via ioctl.
4379 *
4380 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004381 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004382 */
Dave Airlief453ba02008-11-07 14:05:41 -08004383int drm_mode_getblob_ioctl(struct drm_device *dev,
4384 void *data, struct drm_file *file_priv)
4385{
Dave Airlief453ba02008-11-07 14:05:41 -08004386 struct drm_mode_get_blob *out_resp = data;
4387 struct drm_property_blob *blob;
4388 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004389 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004390
Dave Airliefb3b06c2011-02-08 13:55:21 +10004391 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4392 return -EINVAL;
4393
Daniel Vetter84849902012-12-02 00:28:11 +01004394 drm_modeset_lock_all(dev);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004395 mutex_lock(&dev->mode_config.blob_lock);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004396 blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
Rob Clarka2b34e22013-10-05 16:36:52 -04004397 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004398 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004399 goto done;
4400 }
Dave Airlief453ba02008-11-07 14:05:41 -08004401
4402 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004403 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004404 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004405 ret = -EFAULT;
4406 goto done;
4407 }
4408 }
4409 out_resp->length = blob->length;
4410
4411done:
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004412 mutex_unlock(&dev->mode_config.blob_lock);
Daniel Vetter84849902012-12-02 00:28:11 +01004413 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004414 return ret;
4415}
4416
Dave Airliecc7096f2014-10-22 12:03:04 +10004417/**
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004418 * drm_mode_createblob_ioctl - create a new blob property
4419 * @dev: DRM device
4420 * @data: ioctl data
4421 * @file_priv: DRM file info
4422 *
4423 * This function creates a new blob property with user-defined values. In order
4424 * to give us sensible validation and checking when creating, rather than at
4425 * every potential use, we also require a type to be provided upfront.
4426 *
4427 * Called by the user via ioctl.
4428 *
4429 * Returns:
4430 * Zero on success, negative errno on failure.
4431 */
4432int drm_mode_createblob_ioctl(struct drm_device *dev,
4433 void *data, struct drm_file *file_priv)
4434{
4435 struct drm_mode_create_blob *out_resp = data;
4436 struct drm_property_blob *blob;
4437 void __user *blob_ptr;
4438 int ret = 0;
4439
4440 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4441 return -EINVAL;
4442
4443 blob = drm_property_create_blob(dev, out_resp->length, NULL);
4444 if (IS_ERR(blob))
4445 return PTR_ERR(blob);
4446
4447 blob_ptr = (void __user *)(unsigned long)out_resp->data;
4448 if (copy_from_user(blob->data, blob_ptr, out_resp->length)) {
4449 ret = -EFAULT;
4450 goto out_blob;
4451 }
4452
4453 /* Dropping the lock between create_blob and our access here is safe
4454 * as only the same file_priv can remove the blob; at this point, it is
4455 * not associated with any file_priv. */
4456 mutex_lock(&dev->mode_config.blob_lock);
4457 out_resp->blob_id = blob->base.id;
4458 list_add_tail(&file_priv->blobs, &blob->head_file);
4459 mutex_unlock(&dev->mode_config.blob_lock);
4460
4461 return 0;
4462
4463out_blob:
4464 drm_property_unreference_blob(blob);
4465 return ret;
4466}
4467
4468/**
4469 * drm_mode_destroyblob_ioctl - destroy a user blob property
4470 * @dev: DRM device
4471 * @data: ioctl data
4472 * @file_priv: DRM file info
4473 *
4474 * Destroy an existing user-defined blob property.
4475 *
4476 * Called by the user via ioctl.
4477 *
4478 * Returns:
4479 * Zero on success, negative errno on failure.
4480 */
4481int drm_mode_destroyblob_ioctl(struct drm_device *dev,
4482 void *data, struct drm_file *file_priv)
4483{
4484 struct drm_mode_destroy_blob *out_resp = data;
4485 struct drm_property_blob *blob = NULL, *bt;
4486 bool found = false;
4487 int ret = 0;
4488
4489 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4490 return -EINVAL;
4491
4492 mutex_lock(&dev->mode_config.blob_lock);
4493 blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
4494 if (!blob) {
4495 ret = -ENOENT;
4496 goto err;
4497 }
4498
4499 /* Ensure the property was actually created by this user. */
4500 list_for_each_entry(bt, &file_priv->blobs, head_file) {
4501 if (bt == blob) {
4502 found = true;
4503 break;
4504 }
4505 }
4506
4507 if (!found) {
4508 ret = -EPERM;
4509 goto err;
4510 }
4511
4512 /* We must drop head_file here, because we may not be the last
4513 * reference on the blob. */
4514 list_del_init(&blob->head_file);
4515 drm_property_unreference_blob_locked(blob);
4516 mutex_unlock(&dev->mode_config.blob_lock);
4517
4518 return 0;
4519
4520err:
4521 mutex_unlock(&dev->mode_config.blob_lock);
4522 return ret;
4523}
4524
4525/**
Dave Airliecc7096f2014-10-22 12:03:04 +10004526 * drm_mode_connector_set_path_property - set tile property on connector
4527 * @connector: connector to set property on.
Daniel Stoned2ed3432015-04-20 19:22:53 +01004528 * @path: path to use for property; must not be NULL.
Dave Airliecc7096f2014-10-22 12:03:04 +10004529 *
4530 * This creates a property to expose to userspace to specify a
4531 * connector path. This is mainly used for DisplayPort MST where
4532 * connectors have a topology and we want to allow userspace to give
4533 * them more meaningful names.
4534 *
4535 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004536 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004537 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004538int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004539 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004540{
4541 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004542 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004543
Daniel Stoned2ed3432015-04-20 19:22:53 +01004544 ret = drm_property_replace_global_blob(dev,
4545 &connector->path_blob_ptr,
4546 strlen(path) + 1,
4547 path,
4548 &connector->base,
4549 dev->mode_config.path_property);
Dave Airlie43aba7e2014-06-05 14:01:31 +10004550 return ret;
4551}
4552EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4553
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004554/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004555 * drm_mode_connector_set_tile_property - set tile property on connector
4556 * @connector: connector to set property on.
4557 *
4558 * This looks up the tile information for a connector, and creates a
4559 * property for userspace to parse if it exists. The property is of
4560 * the form of 8 integers using ':' as a separator.
4561 *
4562 * Returns:
4563 * Zero on success, errno on failure.
4564 */
4565int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4566{
4567 struct drm_device *dev = connector->dev;
Dave Airlie6f134d72014-10-20 16:30:50 +10004568 char tile[256];
Daniel Stoned2ed3432015-04-20 19:22:53 +01004569 int ret;
Dave Airlie6f134d72014-10-20 16:30:50 +10004570
4571 if (!connector->has_tile) {
Daniel Stoned2ed3432015-04-20 19:22:53 +01004572 ret = drm_property_replace_global_blob(dev,
4573 &connector->tile_blob_ptr,
4574 0,
4575 NULL,
4576 &connector->base,
4577 dev->mode_config.tile_property);
Dave Airlie6f134d72014-10-20 16:30:50 +10004578 return ret;
4579 }
4580
4581 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4582 connector->tile_group->id, connector->tile_is_single_monitor,
4583 connector->num_h_tile, connector->num_v_tile,
4584 connector->tile_h_loc, connector->tile_v_loc,
4585 connector->tile_h_size, connector->tile_v_size);
Dave Airlie6f134d72014-10-20 16:30:50 +10004586
Daniel Stoned2ed3432015-04-20 19:22:53 +01004587 ret = drm_property_replace_global_blob(dev,
4588 &connector->tile_blob_ptr,
4589 strlen(tile) + 1,
4590 tile,
4591 &connector->base,
4592 dev->mode_config.tile_property);
Dave Airlie6f134d72014-10-20 16:30:50 +10004593 return ret;
4594}
4595EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4596
4597/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004598 * drm_mode_connector_update_edid_property - update the edid property of a connector
4599 * @connector: drm connector
4600 * @edid: new value of the edid property
4601 *
4602 * This function creates a new blob modeset object and assigns its id to the
4603 * connector's edid property.
4604 *
4605 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004606 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004607 */
Dave Airlief453ba02008-11-07 14:05:41 -08004608int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004609 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004610{
4611 struct drm_device *dev = connector->dev;
Daniel Stoned2ed3432015-04-20 19:22:53 +01004612 size_t size = 0;
Thierry Redingecbbe592014-05-13 11:36:13 +02004613 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004614
Thomas Wood4cf2b282014-06-18 17:52:33 +01004615 /* ignore requests to set edid when overridden */
4616 if (connector->override_edid)
4617 return 0;
4618
Daniel Stoned2ed3432015-04-20 19:22:53 +01004619 if (edid)
Shixin Zenge24ff462015-07-03 08:46:50 +02004620 size = EDID_LENGTH * (1 + edid->extensions);
Dave Airlief453ba02008-11-07 14:05:41 -08004621
Daniel Stoned2ed3432015-04-20 19:22:53 +01004622 ret = drm_property_replace_global_blob(dev,
4623 &connector->edid_blob_ptr,
4624 size,
4625 edid,
4626 &connector->base,
4627 dev->mode_config.edid_property);
Dave Airlief453ba02008-11-07 14:05:41 -08004628 return ret;
4629}
4630EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4631
Rob Clark3843e712014-12-16 18:05:29 -05004632/* Some properties could refer to dynamic refcnt'd objects, or things that
4633 * need special locking to handle lifetime issues (ie. to ensure the prop
4634 * value doesn't become invalid part way through the property update due to
4635 * race). The value returned by reference via 'obj' should be passed back
4636 * to drm_property_change_valid_put() after the property is set (and the
4637 * object to which the property is attached has a chance to take it's own
4638 * reference).
4639 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05004640bool drm_property_change_valid_get(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004641 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004642{
Thierry Reding2ca651d2014-12-10 13:03:39 +01004643 int i;
4644
Paulo Zanoni26a34812012-05-15 18:08:59 -03004645 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4646 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004647
Rob Clark3843e712014-12-16 18:05:29 -05004648 *ref = NULL;
4649
Rob Clark5ea22f22014-05-30 11:34:01 -04004650 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004651 if (value < property->values[0] || value > property->values[1])
4652 return false;
4653 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004654 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4655 int64_t svalue = U642I64(value);
Thierry Reding4dfd9092014-12-10 13:03:34 +01004656
Rob Clarkebc44cf2012-09-12 22:22:31 -05004657 if (svalue < U642I64(property->values[0]) ||
4658 svalue > U642I64(property->values[1]))
4659 return false;
4660 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004661 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004662 uint64_t valid_mask = 0;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004663
Rob Clark49e27542012-05-17 02:23:26 -06004664 for (i = 0; i < property->num_values; i++)
4665 valid_mask |= (1ULL << property->values[i]);
4666 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004667 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Daniel Stone6bcacf52015-04-20 19:22:55 +01004668 struct drm_property_blob *blob;
4669
4670 if (value == 0)
4671 return true;
4672
4673 blob = drm_property_lookup_blob(property->dev, value);
4674 if (blob) {
4675 *ref = &blob->base;
4676 return true;
4677 } else {
4678 return false;
4679 }
Rob Clark98f75de2014-05-30 11:37:03 -04004680 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004681 /* a zero value for an object property translates to null: */
4682 if (value == 0)
4683 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004684
4685 /* handle refcnt'd objects specially: */
4686 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4687 struct drm_framebuffer *fb;
4688 fb = drm_framebuffer_lookup(property->dev, value);
4689 if (fb) {
4690 *ref = &fb->base;
4691 return true;
4692 } else {
4693 return false;
4694 }
4695 } else {
4696 return _object_find(property->dev, value, property->values[0]) != NULL;
4697 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004698 }
Thierry Reding2ca651d2014-12-10 13:03:39 +01004699
4700 for (i = 0; i < property->num_values; i++)
4701 if (property->values[i] == value)
4702 return true;
4703 return false;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004704}
4705
Rob Clarkd34f20d2014-12-18 16:01:56 -05004706void drm_property_change_valid_put(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004707 struct drm_mode_object *ref)
4708{
4709 if (!ref)
4710 return;
4711
4712 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4713 if (property->values[0] == DRM_MODE_OBJECT_FB)
4714 drm_framebuffer_unreference(obj_to_fb(ref));
Daniel Stoneda9b2a32015-05-25 19:11:49 +01004715 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4716 drm_property_unreference_blob(obj_to_blob(ref));
Rob Clark3843e712014-12-16 18:05:29 -05004717}
4718
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004719/**
4720 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4721 * @dev: DRM device
4722 * @data: ioctl data
4723 * @file_priv: DRM file info
4724 *
4725 * This function sets the current value for a connectors's property. It also
4726 * calls into a driver's ->set_property callback to update the hardware state
4727 *
4728 * Called by the user via ioctl.
4729 *
4730 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004731 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004732 */
Dave Airlief453ba02008-11-07 14:05:41 -08004733int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4734 void *data, struct drm_file *file_priv)
4735{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004736 struct drm_mode_connector_set_property *conn_set_prop = data;
4737 struct drm_mode_obj_set_property obj_set_prop = {
4738 .value = conn_set_prop->value,
4739 .prop_id = conn_set_prop->prop_id,
4740 .obj_id = conn_set_prop->connector_id,
4741 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4742 };
Dave Airlief453ba02008-11-07 14:05:41 -08004743
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004744 /* It does all the locking and checking we need */
4745 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004746}
4747
Paulo Zanonic5431882012-05-15 18:09:02 -03004748static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4749 struct drm_property *property,
4750 uint64_t value)
4751{
4752 int ret = -EINVAL;
4753 struct drm_connector *connector = obj_to_connector(obj);
4754
4755 /* Do DPMS ourselves */
4756 if (property == connector->dev->mode_config.dpms_property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004757 ret = 0;
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02004758 if (connector->funcs->dpms)
4759 ret = (*connector->funcs->dpms)(connector, (int)value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004760 } else if (connector->funcs->set_property)
4761 ret = connector->funcs->set_property(connector, property, value);
4762
4763 /* store the property value if successful */
4764 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004765 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004766 return ret;
4767}
4768
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004769static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4770 struct drm_property *property,
4771 uint64_t value)
4772{
4773 int ret = -EINVAL;
4774 struct drm_crtc *crtc = obj_to_crtc(obj);
4775
4776 if (crtc->funcs->set_property)
4777 ret = crtc->funcs->set_property(crtc, property, value);
4778 if (!ret)
4779 drm_object_property_set_value(obj, property, value);
4780
4781 return ret;
4782}
4783
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004784/**
4785 * drm_mode_plane_set_obj_prop - set the value of a property
4786 * @plane: drm plane object to set property value for
4787 * @property: property to set
4788 * @value: value the property should be set to
4789 *
4790 * This functions sets a given property on a given plane object. This function
4791 * calls the driver's ->set_property callback and changes the software state of
4792 * the property if the callback succeeds.
4793 *
4794 * Returns:
4795 * Zero on success, error code on failure.
4796 */
4797int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4798 struct drm_property *property,
4799 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004800{
4801 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004802 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004803
4804 if (plane->funcs->set_property)
4805 ret = plane->funcs->set_property(plane, property, value);
4806 if (!ret)
4807 drm_object_property_set_value(obj, property, value);
4808
4809 return ret;
4810}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004811EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004812
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004813/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004814 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004815 * @dev: DRM device
4816 * @data: ioctl data
4817 * @file_priv: DRM file info
4818 *
4819 * This function retrieves the current value for an object's property. Compared
4820 * to the connector specific ioctl this one is extended to also work on crtc and
4821 * plane objects.
4822 *
4823 * Called by the user via ioctl.
4824 *
4825 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004826 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004827 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004828int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4829 struct drm_file *file_priv)
4830{
4831 struct drm_mode_obj_get_properties *arg = data;
4832 struct drm_mode_object *obj;
4833 int ret = 0;
Paulo Zanonic5431882012-05-15 18:09:02 -03004834
4835 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4836 return -EINVAL;
4837
Daniel Vetter84849902012-12-02 00:28:11 +01004838 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004839
4840 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4841 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004842 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004843 goto out;
4844 }
4845 if (!obj->properties) {
4846 ret = -EINVAL;
4847 goto out;
4848 }
4849
Rob Clark88a48e22014-12-18 16:01:50 -05004850 ret = get_properties(obj, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05004851 (uint32_t __user *)(unsigned long)(arg->props_ptr),
4852 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
4853 &arg->count_props);
Paulo Zanonic5431882012-05-15 18:09:02 -03004854
Paulo Zanonic5431882012-05-15 18:09:02 -03004855out:
Daniel Vetter84849902012-12-02 00:28:11 +01004856 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004857 return ret;
4858}
4859
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004860/**
4861 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4862 * @dev: DRM device
4863 * @data: ioctl data
4864 * @file_priv: DRM file info
4865 *
4866 * This function sets the current value for an object's property. It also calls
4867 * into a driver's ->set_property callback to update the hardware state.
4868 * Compared to the connector specific ioctl this one is extended to also work on
4869 * crtc and plane objects.
4870 *
4871 * Called by the user via ioctl.
4872 *
4873 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004874 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004875 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004876int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4877 struct drm_file *file_priv)
4878{
4879 struct drm_mode_obj_set_property *arg = data;
4880 struct drm_mode_object *arg_obj;
4881 struct drm_mode_object *prop_obj;
4882 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05004883 int i, ret = -EINVAL;
4884 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03004885
4886 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4887 return -EINVAL;
4888
Daniel Vetter84849902012-12-02 00:28:11 +01004889 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004890
4891 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004892 if (!arg_obj) {
4893 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004894 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004895 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004896 if (!arg_obj->properties)
4897 goto out;
4898
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004899 for (i = 0; i < arg_obj->properties->count; i++)
Rob Clarkb17cd752014-12-16 18:05:30 -05004900 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
Paulo Zanonic5431882012-05-15 18:09:02 -03004901 break;
4902
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004903 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004904 goto out;
4905
4906 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4907 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004908 if (!prop_obj) {
4909 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004910 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004911 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004912 property = obj_to_property(prop_obj);
4913
Rob Clark3843e712014-12-16 18:05:29 -05004914 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03004915 goto out;
4916
4917 switch (arg_obj->type) {
4918 case DRM_MODE_OBJECT_CONNECTOR:
4919 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4920 arg->value);
4921 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004922 case DRM_MODE_OBJECT_CRTC:
4923 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4924 break;
Rob Clark4d939142012-05-17 02:23:27 -06004925 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004926 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4927 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06004928 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004929 }
4930
Rob Clark3843e712014-12-16 18:05:29 -05004931 drm_property_change_valid_put(property, ref);
4932
Paulo Zanonic5431882012-05-15 18:09:02 -03004933out:
Daniel Vetter84849902012-12-02 00:28:11 +01004934 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004935 return ret;
4936}
4937
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004938/**
4939 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4940 * @connector: connector to attach
4941 * @encoder: encoder to attach @connector to
4942 *
4943 * This function links up a connector to an encoder. Note that the routing
4944 * restrictions between encoders and crtcs are exposed to userspace through the
4945 * possible_clones and possible_crtcs bitmasks.
4946 *
4947 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004948 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004949 */
Dave Airlief453ba02008-11-07 14:05:41 -08004950int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4951 struct drm_encoder *encoder)
4952{
4953 int i;
4954
4955 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4956 if (connector->encoder_ids[i] == 0) {
4957 connector->encoder_ids[i] = encoder->base.id;
4958 return 0;
4959 }
4960 }
4961 return -ENOMEM;
4962}
4963EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4964
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004965/**
4966 * drm_mode_crtc_set_gamma_size - set the gamma table size
4967 * @crtc: CRTC to set the gamma table size for
4968 * @gamma_size: size of the gamma table
4969 *
4970 * Drivers which support gamma tables should set this to the supported gamma
4971 * table size when initializing the CRTC. Currently the drm core only supports a
4972 * fixed gamma table size.
4973 *
4974 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004975 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004976 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004977int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004978 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004979{
4980 crtc->gamma_size = gamma_size;
4981
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01004982 crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
4983 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08004984 if (!crtc->gamma_store) {
4985 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004986 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004987 }
4988
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004989 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004990}
4991EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4992
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004993/**
4994 * drm_mode_gamma_set_ioctl - set the gamma table
4995 * @dev: DRM device
4996 * @data: ioctl data
4997 * @file_priv: DRM file info
4998 *
4999 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
5000 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
5001 *
5002 * Called by the user via ioctl.
5003 *
5004 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005005 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005006 */
Dave Airlief453ba02008-11-07 14:05:41 -08005007int drm_mode_gamma_set_ioctl(struct drm_device *dev,
5008 void *data, struct drm_file *file_priv)
5009{
5010 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08005011 struct drm_crtc *crtc;
5012 void *r_base, *g_base, *b_base;
5013 int size;
5014 int ret = 0;
5015
Dave Airliefb3b06c2011-02-08 13:55:21 +10005016 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5017 return -EINVAL;
5018
Daniel Vetter84849902012-12-02 00:28:11 +01005019 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04005020 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5021 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005022 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08005023 goto out;
5024 }
Dave Airlief453ba02008-11-07 14:05:41 -08005025
Laurent Pinchartebe0f242012-05-17 13:27:24 +02005026 if (crtc->funcs->gamma_set == NULL) {
5027 ret = -ENOSYS;
5028 goto out;
5029 }
5030
Dave Airlief453ba02008-11-07 14:05:41 -08005031 /* memcpy into gamma store */
5032 if (crtc_lut->gamma_size != crtc->gamma_size) {
5033 ret = -EINVAL;
5034 goto out;
5035 }
5036
5037 size = crtc_lut->gamma_size * (sizeof(uint16_t));
5038 r_base = crtc->gamma_store;
5039 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
5040 ret = -EFAULT;
5041 goto out;
5042 }
5043
5044 g_base = r_base + size;
5045 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
5046 ret = -EFAULT;
5047 goto out;
5048 }
5049
5050 b_base = g_base + size;
5051 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
5052 ret = -EFAULT;
5053 goto out;
5054 }
5055
James Simmons72034252010-08-03 01:33:19 +01005056 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08005057
5058out:
Daniel Vetter84849902012-12-02 00:28:11 +01005059 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08005060 return ret;
5061
5062}
5063
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005064/**
5065 * drm_mode_gamma_get_ioctl - get the gamma table
5066 * @dev: DRM device
5067 * @data: ioctl data
5068 * @file_priv: DRM file info
5069 *
5070 * Copy the current gamma table into the storage provided. This also provides
5071 * the gamma table size the driver expects, which can be used to size the
5072 * allocated storage.
5073 *
5074 * Called by the user via ioctl.
5075 *
5076 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005077 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005078 */
Dave Airlief453ba02008-11-07 14:05:41 -08005079int drm_mode_gamma_get_ioctl(struct drm_device *dev,
5080 void *data, struct drm_file *file_priv)
5081{
5082 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08005083 struct drm_crtc *crtc;
5084 void *r_base, *g_base, *b_base;
5085 int size;
5086 int ret = 0;
5087
Dave Airliefb3b06c2011-02-08 13:55:21 +10005088 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5089 return -EINVAL;
5090
Daniel Vetter84849902012-12-02 00:28:11 +01005091 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04005092 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5093 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005094 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08005095 goto out;
5096 }
Dave Airlief453ba02008-11-07 14:05:41 -08005097
5098 /* memcpy into gamma store */
5099 if (crtc_lut->gamma_size != crtc->gamma_size) {
5100 ret = -EINVAL;
5101 goto out;
5102 }
5103
5104 size = crtc_lut->gamma_size * (sizeof(uint16_t));
5105 r_base = crtc->gamma_store;
5106 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
5107 ret = -EFAULT;
5108 goto out;
5109 }
5110
5111 g_base = r_base + size;
5112 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
5113 ret = -EFAULT;
5114 goto out;
5115 }
5116
5117 b_base = g_base + size;
5118 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
5119 ret = -EFAULT;
5120 goto out;
5121 }
5122out:
Daniel Vetter84849902012-12-02 00:28:11 +01005123 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08005124 return ret;
5125}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005126
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005127/**
5128 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
5129 * @dev: DRM device
5130 * @data: ioctl data
5131 * @file_priv: DRM file info
5132 *
5133 * This schedules an asynchronous update on a given CRTC, called page flip.
5134 * Optionally a drm event is generated to signal the completion of the event.
5135 * Generic drivers cannot assume that a pageflip with changed framebuffer
5136 * properties (including driver specific metadata like tiling layout) will work,
5137 * but some drivers support e.g. pixel format changes through the pageflip
5138 * ioctl.
5139 *
5140 * Called by the user via ioctl.
5141 *
5142 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005143 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005144 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005145int drm_mode_page_flip_ioctl(struct drm_device *dev,
5146 void *data, struct drm_file *file_priv)
5147{
5148 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005149 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02005150 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005151 struct drm_pending_vblank_event *e = NULL;
5152 unsigned long flags;
5153 int ret = -EINVAL;
5154
5155 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
5156 page_flip->reserved != 0)
5157 return -EINVAL;
5158
Keith Packard62f21042013-07-22 18:50:00 -07005159 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
5160 return -EINVAL;
5161
Rob Clarka2b34e22013-10-05 16:36:52 -04005162 crtc = drm_crtc_find(dev, page_flip->crtc_id);
5163 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005164 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005165
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01005166 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07005167 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01005168 /* The framebuffer is currently unbound, presumably
5169 * due to a hotplug event, that userspace has not
5170 * yet discovered.
5171 */
5172 ret = -EBUSY;
5173 goto out;
5174 }
5175
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005176 if (crtc->funcs->page_flip == NULL)
5177 goto out;
5178
Daniel Vetter786b99e2012-12-02 21:53:40 +01005179 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03005180 if (!fb) {
5181 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005182 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03005183 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005184
Damien Lespiauc11e9282013-09-25 16:45:30 +01005185 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
5186 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02005187 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02005188
Matt Roperf4510a22014-04-01 15:22:40 -07005189 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02005190 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
5191 ret = -EINVAL;
5192 goto out;
5193 }
5194
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005195 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5196 ret = -ENOMEM;
5197 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005198 if (file_priv->event_space < sizeof(e->event)) {
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005199 spin_unlock_irqrestore(&dev->event_lock, flags);
5200 goto out;
5201 }
Thierry Redingf76511b2014-12-10 13:03:40 +01005202 file_priv->event_space -= sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005203 spin_unlock_irqrestore(&dev->event_lock, flags);
5204
Thierry Redingf76511b2014-12-10 13:03:40 +01005205 e = kzalloc(sizeof(*e), GFP_KERNEL);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005206 if (e == NULL) {
5207 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005208 file_priv->event_space += sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005209 spin_unlock_irqrestore(&dev->event_lock, flags);
5210 goto out;
5211 }
5212
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08005213 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Thierry Redingf76511b2014-12-10 13:03:40 +01005214 e->event.base.length = sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005215 e->event.user_data = page_flip->user_data;
5216 e->base.event = &e->event.base;
5217 e->base.file_priv = file_priv;
5218 e->base.destroy =
5219 (void (*) (struct drm_pending_event *)) kfree;
5220 }
5221
Daniel Vetter3d30a592014-07-27 13:42:42 +02005222 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07005223 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005224 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005225 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5226 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005227 file_priv->event_space += sizeof(e->event);
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005228 spin_unlock_irqrestore(&dev->event_lock, flags);
5229 kfree(e);
5230 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01005231 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02005232 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01005233 } else {
Daniel Vetter3cb43cc2015-07-07 08:43:03 +02005234 crtc->primary->fb = fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01005235 /* Unref only the old framebuffer. */
5236 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005237 }
5238
5239out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01005240 if (fb)
5241 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02005242 if (crtc->primary->old_fb)
5243 drm_framebuffer_unreference(crtc->primary->old_fb);
5244 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02005245 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01005246
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005247 return ret;
5248}
Chris Wilsoneb033552011-01-24 15:11:08 +00005249
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005250/**
5251 * drm_mode_config_reset - call ->reset callbacks
5252 * @dev: drm device
5253 *
5254 * This functions calls all the crtc's, encoder's and connector's ->reset
5255 * callback. Drivers can use this in e.g. their driver load or resume code to
5256 * reset hardware and software state.
5257 */
Chris Wilsoneb033552011-01-24 15:11:08 +00005258void drm_mode_config_reset(struct drm_device *dev)
5259{
5260 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005261 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00005262 struct drm_encoder *encoder;
5263 struct drm_connector *connector;
5264
Daniel Vettere4f62542015-07-09 23:44:35 +02005265 drm_for_each_plane(plane, dev)
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005266 if (plane->funcs->reset)
5267 plane->funcs->reset(plane);
5268
Daniel Vettere4f62542015-07-09 23:44:35 +02005269 drm_for_each_crtc(crtc, dev)
Chris Wilsoneb033552011-01-24 15:11:08 +00005270 if (crtc->funcs->reset)
5271 crtc->funcs->reset(crtc);
5272
Daniel Vettere4f62542015-07-09 23:44:35 +02005273 drm_for_each_encoder(encoder, dev)
Chris Wilsoneb033552011-01-24 15:11:08 +00005274 if (encoder->funcs->reset)
5275 encoder->funcs->reset(encoder);
5276
Daniel Vetterf8c2ba32015-07-29 08:32:43 +02005277 mutex_lock(&dev->mode_config.mutex);
Dave Airlie4eebf602015-08-17 14:13:53 +10005278 drm_for_each_connector(connector, dev)
Chris Wilsoneb033552011-01-24 15:11:08 +00005279 if (connector->funcs->reset)
5280 connector->funcs->reset(connector);
Daniel Vetterf8c2ba32015-07-29 08:32:43 +02005281 mutex_unlock(&dev->mode_config.mutex);
Chris Wilsoneb033552011-01-24 15:11:08 +00005282}
5283EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10005284
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005285/**
5286 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
5287 * @dev: DRM device
5288 * @data: ioctl data
5289 * @file_priv: DRM file info
5290 *
5291 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
5292 * TTM or something else entirely) and returns the resulting buffer handle. This
5293 * handle can then be wrapped up into a framebuffer modeset object.
5294 *
5295 * Note that userspace is not allowed to use such objects for render
5296 * acceleration - drivers must create their own private ioctls for such a use
5297 * case.
5298 *
5299 * Called by the user via ioctl.
5300 *
5301 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005302 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005303 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005304int drm_mode_create_dumb_ioctl(struct drm_device *dev,
5305 void *data, struct drm_file *file_priv)
5306{
5307 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01005308 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10005309
5310 if (!dev->driver->dumb_create)
5311 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01005312 if (!args->width || !args->height || !args->bpp)
5313 return -EINVAL;
5314
5315 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02005316 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01005317 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02005318 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01005319 return -EINVAL;
5320 stride = cpp * args->width;
5321 if (args->height > 0xffffffffU / stride)
5322 return -EINVAL;
5323
5324 /* test for wrap-around */
5325 size = args->height * stride;
5326 if (PAGE_ALIGN(size) == 0)
5327 return -EINVAL;
5328
Thierry Redingf6085952014-11-03 11:14:14 +01005329 /*
5330 * handle, pitch and size are output parameters. Zero them out to
5331 * prevent drivers from accidentally using uninitialized data. Since
5332 * not all existing userspace is clearing these fields properly we
5333 * cannot reject IOCTL with garbage in them.
5334 */
5335 args->handle = 0;
5336 args->pitch = 0;
5337 args->size = 0;
5338
Dave Airlieff72145b2011-02-07 12:16:14 +10005339 return dev->driver->dumb_create(file_priv, dev, args);
5340}
5341
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005342/**
5343 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5344 * @dev: DRM device
5345 * @data: ioctl data
5346 * @file_priv: DRM file info
5347 *
5348 * Allocate an offset in the drm device node's address space to be able to
5349 * memory map a dumb buffer.
5350 *
5351 * Called by the user via ioctl.
5352 *
5353 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005354 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005355 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005356int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5357 void *data, struct drm_file *file_priv)
5358{
5359 struct drm_mode_map_dumb *args = data;
5360
5361 /* call driver ioctl to get mmap offset */
5362 if (!dev->driver->dumb_map_offset)
5363 return -ENOSYS;
5364
5365 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5366}
5367
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005368/**
5369 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5370 * @dev: DRM device
5371 * @data: ioctl data
5372 * @file_priv: DRM file info
5373 *
5374 * This destroys the userspace handle for the given dumb backing storage buffer.
5375 * Since buffer objects must be reference counted in the kernel a buffer object
5376 * won't be immediately freed if a framebuffer modeset object still uses it.
5377 *
5378 * Called by the user via ioctl.
5379 *
5380 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005381 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005382 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005383int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5384 void *data, struct drm_file *file_priv)
5385{
5386 struct drm_mode_destroy_dumb *args = data;
5387
5388 if (!dev->driver->dumb_destroy)
5389 return -ENOSYS;
5390
5391 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5392}
Dave Airlie248dbc22011-11-29 20:02:54 +00005393
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005394/**
5395 * drm_fb_get_bpp_depth - get the bpp/depth values for format
5396 * @format: pixel format (DRM_FORMAT_*)
5397 * @depth: storage for the depth value
5398 * @bpp: storage for the bpp value
5399 *
5400 * This only supports RGB formats here for compat with code that doesn't use
5401 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00005402 */
5403void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5404 int *bpp)
5405{
5406 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02005407 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02005408 case DRM_FORMAT_RGB332:
5409 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00005410 *depth = 8;
5411 *bpp = 8;
5412 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005413 case DRM_FORMAT_XRGB1555:
5414 case DRM_FORMAT_XBGR1555:
5415 case DRM_FORMAT_RGBX5551:
5416 case DRM_FORMAT_BGRX5551:
5417 case DRM_FORMAT_ARGB1555:
5418 case DRM_FORMAT_ABGR1555:
5419 case DRM_FORMAT_RGBA5551:
5420 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005421 *depth = 15;
5422 *bpp = 16;
5423 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005424 case DRM_FORMAT_RGB565:
5425 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005426 *depth = 16;
5427 *bpp = 16;
5428 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005429 case DRM_FORMAT_RGB888:
5430 case DRM_FORMAT_BGR888:
5431 *depth = 24;
5432 *bpp = 24;
5433 break;
5434 case DRM_FORMAT_XRGB8888:
5435 case DRM_FORMAT_XBGR8888:
5436 case DRM_FORMAT_RGBX8888:
5437 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005438 *depth = 24;
5439 *bpp = 32;
5440 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005441 case DRM_FORMAT_XRGB2101010:
5442 case DRM_FORMAT_XBGR2101010:
5443 case DRM_FORMAT_RGBX1010102:
5444 case DRM_FORMAT_BGRX1010102:
5445 case DRM_FORMAT_ARGB2101010:
5446 case DRM_FORMAT_ABGR2101010:
5447 case DRM_FORMAT_RGBA1010102:
5448 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005449 *depth = 30;
5450 *bpp = 32;
5451 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005452 case DRM_FORMAT_ARGB8888:
5453 case DRM_FORMAT_ABGR8888:
5454 case DRM_FORMAT_RGBA8888:
5455 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005456 *depth = 32;
5457 *bpp = 32;
5458 break;
5459 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005460 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5461 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005462 *depth = 0;
5463 *bpp = 0;
5464 break;
5465 }
5466}
5467EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005468
5469/**
5470 * drm_format_num_planes - get the number of planes for format
5471 * @format: pixel format (DRM_FORMAT_*)
5472 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005473 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005474 * The number of planes used by the specified pixel format.
5475 */
5476int drm_format_num_planes(uint32_t format)
5477{
5478 switch (format) {
5479 case DRM_FORMAT_YUV410:
5480 case DRM_FORMAT_YVU410:
5481 case DRM_FORMAT_YUV411:
5482 case DRM_FORMAT_YVU411:
5483 case DRM_FORMAT_YUV420:
5484 case DRM_FORMAT_YVU420:
5485 case DRM_FORMAT_YUV422:
5486 case DRM_FORMAT_YVU422:
5487 case DRM_FORMAT_YUV444:
5488 case DRM_FORMAT_YVU444:
5489 return 3;
5490 case DRM_FORMAT_NV12:
5491 case DRM_FORMAT_NV21:
5492 case DRM_FORMAT_NV16:
5493 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005494 case DRM_FORMAT_NV24:
5495 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005496 return 2;
5497 default:
5498 return 1;
5499 }
5500}
5501EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005502
5503/**
5504 * drm_format_plane_cpp - determine the bytes per pixel value
5505 * @format: pixel format (DRM_FORMAT_*)
5506 * @plane: plane index
5507 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005508 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005509 * The bytes per pixel value for the specified plane.
5510 */
5511int drm_format_plane_cpp(uint32_t format, int plane)
5512{
5513 unsigned int depth;
5514 int bpp;
5515
5516 if (plane >= drm_format_num_planes(format))
5517 return 0;
5518
5519 switch (format) {
5520 case DRM_FORMAT_YUYV:
5521 case DRM_FORMAT_YVYU:
5522 case DRM_FORMAT_UYVY:
5523 case DRM_FORMAT_VYUY:
5524 return 2;
5525 case DRM_FORMAT_NV12:
5526 case DRM_FORMAT_NV21:
5527 case DRM_FORMAT_NV16:
5528 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005529 case DRM_FORMAT_NV24:
5530 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005531 return plane ? 2 : 1;
5532 case DRM_FORMAT_YUV410:
5533 case DRM_FORMAT_YVU410:
5534 case DRM_FORMAT_YUV411:
5535 case DRM_FORMAT_YVU411:
5536 case DRM_FORMAT_YUV420:
5537 case DRM_FORMAT_YVU420:
5538 case DRM_FORMAT_YUV422:
5539 case DRM_FORMAT_YVU422:
5540 case DRM_FORMAT_YUV444:
5541 case DRM_FORMAT_YVU444:
5542 return 1;
5543 default:
5544 drm_fb_get_bpp_depth(format, &depth, &bpp);
5545 return bpp >> 3;
5546 }
5547}
5548EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005549
5550/**
5551 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5552 * @format: pixel format (DRM_FORMAT_*)
5553 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005554 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005555 * The horizontal chroma subsampling factor for the
5556 * specified pixel format.
5557 */
5558int drm_format_horz_chroma_subsampling(uint32_t format)
5559{
5560 switch (format) {
5561 case DRM_FORMAT_YUV411:
5562 case DRM_FORMAT_YVU411:
5563 case DRM_FORMAT_YUV410:
5564 case DRM_FORMAT_YVU410:
5565 return 4;
5566 case DRM_FORMAT_YUYV:
5567 case DRM_FORMAT_YVYU:
5568 case DRM_FORMAT_UYVY:
5569 case DRM_FORMAT_VYUY:
5570 case DRM_FORMAT_NV12:
5571 case DRM_FORMAT_NV21:
5572 case DRM_FORMAT_NV16:
5573 case DRM_FORMAT_NV61:
5574 case DRM_FORMAT_YUV422:
5575 case DRM_FORMAT_YVU422:
5576 case DRM_FORMAT_YUV420:
5577 case DRM_FORMAT_YVU420:
5578 return 2;
5579 default:
5580 return 1;
5581 }
5582}
5583EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5584
5585/**
5586 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5587 * @format: pixel format (DRM_FORMAT_*)
5588 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005589 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005590 * The vertical chroma subsampling factor for the
5591 * specified pixel format.
5592 */
5593int drm_format_vert_chroma_subsampling(uint32_t format)
5594{
5595 switch (format) {
5596 case DRM_FORMAT_YUV410:
5597 case DRM_FORMAT_YVU410:
5598 return 4;
5599 case DRM_FORMAT_YUV420:
5600 case DRM_FORMAT_YVU420:
5601 case DRM_FORMAT_NV12:
5602 case DRM_FORMAT_NV21:
5603 return 2;
5604 default:
5605 return 1;
5606 }
5607}
5608EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005609
5610/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305611 * drm_rotation_simplify() - Try to simplify the rotation
5612 * @rotation: Rotation to be simplified
5613 * @supported_rotations: Supported rotations
5614 *
5615 * Attempt to simplify the rotation to a form that is supported.
5616 * Eg. if the hardware supports everything except DRM_REFLECT_X
5617 * one could call this function like this:
5618 *
5619 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5620 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5621 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5622 *
5623 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5624 * transforms the hardware supports, this function may not
5625 * be able to produce a supported transform, so the caller should
5626 * check the result afterwards.
5627 */
5628unsigned int drm_rotation_simplify(unsigned int rotation,
5629 unsigned int supported_rotations)
5630{
5631 if (rotation & ~supported_rotations) {
5632 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
Joonas Lahtinen14152c82015-10-01 10:00:58 +03005633 rotation = (rotation & DRM_REFLECT_MASK) |
5634 BIT((ffs(rotation & DRM_ROTATE_MASK) + 1) % 4);
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305635 }
5636
5637 return rotation;
5638}
5639EXPORT_SYMBOL(drm_rotation_simplify);
5640
5641/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005642 * drm_mode_config_init - initialize DRM mode_configuration structure
5643 * @dev: DRM device
5644 *
5645 * Initialize @dev's mode_config structure, used for tracking the graphics
5646 * configuration of @dev.
5647 *
5648 * Since this initializes the modeset locks, no locking is possible. Which is no
5649 * problem, since this should happen single threaded at init time. It is the
5650 * driver's problem to ensure this guarantee.
5651 *
5652 */
5653void drm_mode_config_init(struct drm_device *dev)
5654{
5655 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005656 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005657 mutex_init(&dev->mode_config.idr_mutex);
5658 mutex_init(&dev->mode_config.fb_lock);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01005659 mutex_init(&dev->mode_config.blob_lock);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005660 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5661 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5662 INIT_LIST_HEAD(&dev->mode_config.connector_list);
5663 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5664 INIT_LIST_HEAD(&dev->mode_config.property_list);
5665 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5666 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5667 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005668 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005669
5670 drm_modeset_lock_all(dev);
Rob Clark6b4959f2014-12-18 16:01:53 -05005671 drm_mode_create_standard_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005672 drm_modeset_unlock_all(dev);
5673
5674 /* Just to be sure */
5675 dev->mode_config.num_fb = 0;
5676 dev->mode_config.num_connector = 0;
5677 dev->mode_config.num_crtc = 0;
5678 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005679 dev->mode_config.num_overlay_plane = 0;
5680 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005681}
5682EXPORT_SYMBOL(drm_mode_config_init);
5683
5684/**
5685 * drm_mode_config_cleanup - free up DRM mode_config info
5686 * @dev: DRM device
5687 *
5688 * Free up all the connectors and CRTCs associated with this DRM device, then
5689 * free up the framebuffers and associated buffer objects.
5690 *
5691 * Note that since this /should/ happen single-threaded at driver/device
5692 * teardown time, no locking is required. It's the driver's job to ensure that
5693 * this guarantee actually holds true.
5694 *
5695 * FIXME: cleanup any dangling user buffer objects too
5696 */
5697void drm_mode_config_cleanup(struct drm_device *dev)
5698{
5699 struct drm_connector *connector, *ot;
5700 struct drm_crtc *crtc, *ct;
5701 struct drm_encoder *encoder, *enct;
5702 struct drm_framebuffer *fb, *fbt;
5703 struct drm_property *property, *pt;
5704 struct drm_property_blob *blob, *bt;
5705 struct drm_plane *plane, *plt;
5706
5707 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5708 head) {
5709 encoder->funcs->destroy(encoder);
5710 }
5711
5712 list_for_each_entry_safe(connector, ot,
5713 &dev->mode_config.connector_list, head) {
5714 connector->funcs->destroy(connector);
5715 }
5716
5717 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5718 head) {
5719 drm_property_destroy(dev, property);
5720 }
5721
5722 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01005723 head_global) {
Daniel Stone6bcacf52015-04-20 19:22:55 +01005724 drm_property_unreference_blob(blob);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005725 }
5726
5727 /*
5728 * Single-threaded teardown context, so it's not required to grab the
5729 * fb_lock to protect against concurrent fb_list access. Contrary, it
5730 * would actually deadlock with the drm_framebuffer_cleanup function.
5731 *
5732 * Also, if there are any framebuffers left, that's a driver leak now,
5733 * so politely WARN about this.
5734 */
5735 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5736 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
Maarten Lankhorstc099b552015-09-09 13:46:21 +02005737 drm_framebuffer_free(&fb->refcount);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005738 }
5739
5740 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5741 head) {
5742 plane->funcs->destroy(plane);
5743 }
5744
5745 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5746 crtc->funcs->destroy(crtc);
5747 }
5748
Dave Airlie138f9eb2014-10-20 16:17:17 +10005749 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005750 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005751 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005752}
5753EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305754
5755struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5756 unsigned int supported_rotations)
5757{
5758 static const struct drm_prop_enum_list props[] = {
5759 { DRM_ROTATE_0, "rotate-0" },
5760 { DRM_ROTATE_90, "rotate-90" },
5761 { DRM_ROTATE_180, "rotate-180" },
5762 { DRM_ROTATE_270, "rotate-270" },
5763 { DRM_REFLECT_X, "reflect-x" },
5764 { DRM_REFLECT_Y, "reflect-y" },
5765 };
5766
5767 return drm_property_create_bitmask(dev, 0, "rotation",
5768 props, ARRAY_SIZE(props),
5769 supported_rotations);
5770}
5771EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005772
5773/**
5774 * DOC: Tile group
5775 *
5776 * Tile groups are used to represent tiled monitors with a unique
5777 * integer identifier. Tiled monitors using DisplayID v1.3 have
5778 * a unique 8-byte handle, we store this in a tile group, so we
5779 * have a common identifier for all tiles in a monitor group.
5780 */
5781static void drm_tile_group_free(struct kref *kref)
5782{
5783 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5784 struct drm_device *dev = tg->dev;
5785 mutex_lock(&dev->mode_config.idr_mutex);
5786 idr_remove(&dev->mode_config.tile_idr, tg->id);
5787 mutex_unlock(&dev->mode_config.idr_mutex);
5788 kfree(tg);
5789}
5790
5791/**
5792 * drm_mode_put_tile_group - drop a reference to a tile group.
5793 * @dev: DRM device
5794 * @tg: tile group to drop reference to.
5795 *
5796 * drop reference to tile group and free if 0.
5797 */
5798void drm_mode_put_tile_group(struct drm_device *dev,
5799 struct drm_tile_group *tg)
5800{
5801 kref_put(&tg->refcount, drm_tile_group_free);
5802}
5803
5804/**
5805 * drm_mode_get_tile_group - get a reference to an existing tile group
5806 * @dev: DRM device
5807 * @topology: 8-bytes unique per monitor.
5808 *
5809 * Use the unique bytes to get a reference to an existing tile group.
5810 *
5811 * RETURNS:
5812 * tile group or NULL if not found.
5813 */
5814struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5815 char topology[8])
5816{
5817 struct drm_tile_group *tg;
5818 int id;
5819 mutex_lock(&dev->mode_config.idr_mutex);
5820 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5821 if (!memcmp(tg->group_data, topology, 8)) {
5822 if (!kref_get_unless_zero(&tg->refcount))
5823 tg = NULL;
5824 mutex_unlock(&dev->mode_config.idr_mutex);
5825 return tg;
5826 }
5827 }
5828 mutex_unlock(&dev->mode_config.idr_mutex);
5829 return NULL;
5830}
Rob Clark81ddd1b2015-03-27 13:01:52 -04005831EXPORT_SYMBOL(drm_mode_get_tile_group);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005832
5833/**
5834 * drm_mode_create_tile_group - create a tile group from a displayid description
5835 * @dev: DRM device
5836 * @topology: 8-bytes unique per monitor.
5837 *
5838 * Create a tile group for the unique monitor, and get a unique
5839 * identifier for the tile group.
5840 *
5841 * RETURNS:
5842 * new tile group or error.
5843 */
5844struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5845 char topology[8])
5846{
5847 struct drm_tile_group *tg;
5848 int ret;
5849
5850 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5851 if (!tg)
5852 return ERR_PTR(-ENOMEM);
5853
5854 kref_init(&tg->refcount);
5855 memcpy(tg->group_data, topology, 8);
5856 tg->dev = dev;
5857
5858 mutex_lock(&dev->mode_config.idr_mutex);
5859 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5860 if (ret >= 0) {
5861 tg->id = ret;
5862 } else {
5863 kfree(tg);
5864 tg = ERR_PTR(ret);
5865 }
5866
5867 mutex_unlock(&dev->mode_config.idr_mutex);
5868 return tg;
5869}
Rob Clark81ddd1b2015-03-27 13:01:52 -04005870EXPORT_SYMBOL(drm_mode_create_tile_group);