blob: 65258acddb902000bbb9c458f7c5a1f1a8b62c49 [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,
Ville Syrjälä1eb83452015-11-11 19:11:29 +020048 const struct drm_mode_fb_cmd2 *r,
Chris Wilson9a6f5132015-02-25 13:45:26 +000049 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
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200652static unsigned int drm_num_crtcs(struct drm_device *dev)
653{
654 unsigned int num = 0;
655 struct drm_crtc *tmp;
656
657 drm_for_each_crtc(tmp, dev) {
658 num++;
659 }
660
661 return num;
662}
663
Dave Airlief453ba02008-11-07 14:05:41 -0800664/**
Matt Ropere13161a2014-04-01 15:22:38 -0700665 * drm_crtc_init_with_planes - Initialise a new CRTC object with
666 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800667 * @dev: DRM device
668 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700669 * @primary: Primary plane for CRTC
670 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800671 * @funcs: callbacks for the new CRTC
Ville Syrjäläf9882872015-12-09 16:19:31 +0200672 * @name: printf style format string for the CRTC name, or NULL for default name
Dave Airlief453ba02008-11-07 14:05:41 -0800673 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000674 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200675 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100676 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200677 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800678 */
Matt Ropere13161a2014-04-01 15:22:38 -0700679int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
680 struct drm_plane *primary,
Matt Roperfc1d3e42014-06-10 08:28:11 -0700681 struct drm_plane *cursor,
Ville Syrjäläf9882872015-12-09 16:19:31 +0200682 const struct drm_crtc_funcs *funcs,
683 const char *name, ...)
Dave Airlief453ba02008-11-07 14:05:41 -0800684{
Rob Clark51fd3712013-11-19 12:10:12 -0500685 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200686 int ret;
687
Benjamin Gaignard522cf912015-03-17 12:05:29 +0100688 WARN_ON(primary && primary->type != DRM_PLANE_TYPE_PRIMARY);
689 WARN_ON(cursor && cursor->type != DRM_PLANE_TYPE_CURSOR);
690
Dave Airlief453ba02008-11-07 14:05:41 -0800691 crtc->dev = dev;
692 crtc->funcs = funcs;
693
Rob Clark51fd3712013-11-19 12:10:12 -0500694 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200695 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
696 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100697 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800698
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200699 if (name) {
700 va_list ap;
701
702 va_start(ap, name);
703 crtc->name = kvasprintf(GFP_KERNEL, name, ap);
704 va_end(ap);
705 } else {
706 crtc->name = kasprintf(GFP_KERNEL, "crtc-%d",
707 drm_num_crtcs(dev));
708 }
709 if (!crtc->name) {
710 drm_mode_object_put(dev, &crtc->base);
711 return -ENOMEM;
712 }
713
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300714 crtc->base.properties = &crtc->properties;
715
Rob Clark51fd3712013-11-19 12:10:12 -0500716 list_add_tail(&crtc->head, &config->crtc_list);
717 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200718
Matt Ropere13161a2014-04-01 15:22:38 -0700719 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700720 crtc->cursor = cursor;
Matt Ropere13161a2014-04-01 15:22:38 -0700721 if (primary)
722 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Roperfc1d3e42014-06-10 08:28:11 -0700723 if (cursor)
724 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700725
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100726 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
727 drm_object_attach_property(&crtc->base, config->prop_active, 0);
Daniel Stone955f3c32015-05-25 19:11:52 +0100728 drm_object_attach_property(&crtc->base, config->prop_mode_id, 0);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100729 }
730
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100731 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800732}
Matt Ropere13161a2014-04-01 15:22:38 -0700733EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800734
735/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000736 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800737 * @crtc: CRTC to cleanup
738 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000739 * This function cleans up @crtc and removes it from the DRM mode setting
740 * core. Note that the function does *not* free the crtc structure itself,
741 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800742 */
743void drm_crtc_cleanup(struct drm_crtc *crtc)
744{
745 struct drm_device *dev = crtc->dev;
746
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000747 kfree(crtc->gamma_store);
748 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800749
Rob Clark51fd3712013-11-19 12:10:12 -0500750 drm_modeset_lock_fini(&crtc->mutex);
751
Dave Airlief453ba02008-11-07 14:05:41 -0800752 drm_mode_object_put(dev, &crtc->base);
753 list_del(&crtc->head);
754 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100755
756 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
757 if (crtc->state && crtc->funcs->atomic_destroy_state)
758 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100759
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +0200760 kfree(crtc->name);
761
Thierry Redinga18c0af2014-12-10 11:38:49 +0100762 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800763}
764EXPORT_SYMBOL(drm_crtc_cleanup);
765
766/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000767 * drm_crtc_index - find the index of a registered CRTC
768 * @crtc: CRTC to find index for
769 *
770 * Given a registered CRTC, return the index of that CRTC within a DRM
771 * device's list of CRTCs.
772 */
773unsigned int drm_crtc_index(struct drm_crtc *crtc)
774{
775 unsigned int index = 0;
776 struct drm_crtc *tmp;
777
Daniel Vettere4f62542015-07-09 23:44:35 +0200778 drm_for_each_crtc(tmp, crtc->dev) {
Russell Kingdb5f7a62014-01-02 21:27:33 +0000779 if (tmp == crtc)
780 return index;
781
782 index++;
783 }
784
785 BUG();
786}
787EXPORT_SYMBOL(drm_crtc_index);
788
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100789/*
Dave Airlief453ba02008-11-07 14:05:41 -0800790 * drm_mode_remove - remove and free a mode
791 * @connector: connector list to modify
792 * @mode: mode to remove
793 *
Dave Airlief453ba02008-11-07 14:05:41 -0800794 * Remove @mode from @connector's mode list, then free it.
795 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100796static void drm_mode_remove(struct drm_connector *connector,
797 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800798{
799 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100800 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800801}
Dave Airlief453ba02008-11-07 14:05:41 -0800802
803/**
Boris Brezillonb5571e92014-07-22 12:09:10 +0200804 * drm_display_info_set_bus_formats - set the supported bus formats
805 * @info: display info to store bus formats in
Boris Brezillone37bfa12015-01-23 21:09:30 +0100806 * @formats: array containing the supported bus formats
807 * @num_formats: the number of entries in the fmts array
Boris Brezillonb5571e92014-07-22 12:09:10 +0200808 *
809 * Store the supported bus formats in display info structure.
810 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
811 * a full list of available formats.
812 */
813int drm_display_info_set_bus_formats(struct drm_display_info *info,
814 const u32 *formats,
815 unsigned int num_formats)
816{
817 u32 *fmts = NULL;
818
819 if (!formats && num_formats)
820 return -EINVAL;
821
822 if (formats && num_formats) {
823 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
824 GFP_KERNEL);
Dan Carpenter944579c2015-01-28 09:43:35 +0300825 if (!fmts)
Boris Brezillonb5571e92014-07-22 12:09:10 +0200826 return -ENOMEM;
827 }
828
829 kfree(info->bus_formats);
830 info->bus_formats = fmts;
831 info->num_bus_formats = num_formats;
832
833 return 0;
834}
835EXPORT_SYMBOL(drm_display_info_set_bus_formats);
836
837/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200838 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
839 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200840 *
841 * The kernel supports per-connector configration of its consoles through
842 * use of the video= parameter. This function parses that option and
843 * extracts the user's specified mode (or enable/disable status) for a
844 * particular connector. This is typically only used during the early fbdev
845 * setup.
846 */
847static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
848{
849 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
850 char *option = NULL;
851
852 if (fb_get_options(connector->name, &option))
853 return;
854
855 if (!drm_mode_parse_command_line_for_connector(option,
856 connector,
857 mode))
858 return;
859
860 if (mode->force) {
861 const char *s;
862
863 switch (mode->force) {
864 case DRM_FORCE_OFF:
865 s = "OFF";
866 break;
867 case DRM_FORCE_ON_DIGITAL:
868 s = "ON - dig";
869 break;
870 default:
871 case DRM_FORCE_ON:
872 s = "ON";
873 break;
874 }
875
876 DRM_INFO("forcing %s connector %s\n", connector->name, s);
877 connector->force = mode->force;
878 }
879
880 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
881 connector->name,
882 mode->xres, mode->yres,
883 mode->refresh_specified ? mode->refresh : 60,
884 mode->rb ? " reduced blanking" : "",
885 mode->margins ? " with margins" : "",
886 mode->interlace ? " interlaced" : "");
887}
888
889/**
Dave Airlief453ba02008-11-07 14:05:41 -0800890 * drm_connector_init - Init a preallocated connector
891 * @dev: DRM device
892 * @connector: the connector to init
893 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100894 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800895 *
Dave Airlief453ba02008-11-07 14:05:41 -0800896 * Initialises a preallocated connector. Connectors should be
897 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200898 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100899 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200900 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800901 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200902int drm_connector_init(struct drm_device *dev,
903 struct drm_connector *connector,
904 const struct drm_connector_funcs *funcs,
905 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800906{
Rob Clarkae16c592014-12-18 16:01:54 -0500907 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200908 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400909 struct ida *connector_ida =
910 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200911
Daniel Vetter84849902012-12-02 00:28:11 +0100912 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800913
Dave Airlie2ee39452014-07-24 11:53:45 +1000914 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200915 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300916 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200917
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300918 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800919 connector->dev = dev;
920 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800921 connector->connector_type = connector_type;
922 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400923 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
924 if (connector->connector_type_id < 0) {
925 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300926 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400927 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300928 connector->name =
929 kasprintf(GFP_KERNEL, "%s-%d",
930 drm_connector_enum_list[connector_type].name,
931 connector->connector_type_id);
932 if (!connector->name) {
933 ret = -ENOMEM;
934 goto out_put;
935 }
936
Dave Airlief453ba02008-11-07 14:05:41 -0800937 INIT_LIST_HEAD(&connector->probed_modes);
938 INIT_LIST_HEAD(&connector->modes);
939 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000940 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800941
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200942 drm_connector_get_cmdline_mode(connector);
943
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100944 /* We should add connectors at the end to avoid upsetting the connector
945 * index too much. */
Rob Clarkae16c592014-12-18 16:01:54 -0500946 list_add_tail(&connector->head, &config->connector_list);
947 config->num_connector++;
Dave Airlief453ba02008-11-07 14:05:41 -0800948
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200949 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500950 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500951 config->edid_property,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200952 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800953
Rob Clark58495562012-10-11 20:50:56 -0500954 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500955 config->dpms_property, 0);
956
957 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
958 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
959 }
Dave Airlief453ba02008-11-07 14:05:41 -0800960
Thomas Wood30f65702014-06-18 17:52:32 +0100961 connector->debugfs_entry = NULL;
962
Jani Nikula2abdd312014-05-14 16:58:19 +0300963out_put:
964 if (ret)
965 drm_mode_object_put(dev, &connector->base);
966
967out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100968 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200969
970 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800971}
972EXPORT_SYMBOL(drm_connector_init);
973
974/**
975 * drm_connector_cleanup - cleans up an initialised connector
976 * @connector: connector to cleanup
977 *
Dave Airlief453ba02008-11-07 14:05:41 -0800978 * Cleans up the connector but doesn't free the object.
979 */
980void drm_connector_cleanup(struct drm_connector *connector)
981{
982 struct drm_device *dev = connector->dev;
983 struct drm_display_mode *mode, *t;
984
Dave Airlie40d9b042014-10-20 16:29:33 +1000985 if (connector->tile_group) {
986 drm_mode_put_tile_group(dev, connector->tile_group);
987 connector->tile_group = NULL;
988 }
989
Dave Airlief453ba02008-11-07 14:05:41 -0800990 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
991 drm_mode_remove(connector, mode);
992
993 list_for_each_entry_safe(mode, t, &connector->modes, head)
994 drm_mode_remove(connector, mode);
995
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400996 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
997 connector->connector_type_id);
998
Boris Brezillonb5571e92014-07-22 12:09:10 +0200999 kfree(connector->display_info.bus_formats);
Dave Airlief453ba02008-11-07 14:05:41 -08001000 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +03001001 kfree(connector->name);
1002 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001003 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001004 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +01001005
1006 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
1007 if (connector->state && connector->funcs->atomic_destroy_state)
1008 connector->funcs->atomic_destroy_state(connector,
1009 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001010
1011 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -08001012}
1013EXPORT_SYMBOL(drm_connector_cleanup);
1014
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001015/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001016 * drm_connector_index - find the index of a registered connector
1017 * @connector: connector to find index for
1018 *
1019 * Given a registered connector, return the index of that connector within a DRM
1020 * device's list of connectors.
1021 */
1022unsigned int drm_connector_index(struct drm_connector *connector)
1023{
1024 unsigned int index = 0;
1025 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +01001026 struct drm_mode_config *config = &connector->dev->mode_config;
1027
1028 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +02001029
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02001030 drm_for_each_connector(tmp, connector->dev) {
Daniel Vetter10f637b2014-07-29 13:47:11 +02001031 if (tmp == connector)
1032 return index;
1033
1034 index++;
1035 }
1036
1037 BUG();
1038}
1039EXPORT_SYMBOL(drm_connector_index);
1040
1041/**
Thomas Wood34ea3d32014-05-29 16:57:41 +01001042 * drm_connector_register - register a connector
1043 * @connector: the connector to register
1044 *
1045 * Register userspace interfaces for a connector
1046 *
1047 * Returns:
1048 * Zero on success, error code on failure.
1049 */
1050int drm_connector_register(struct drm_connector *connector)
1051{
Thomas Wood30f65702014-06-18 17:52:32 +01001052 int ret;
1053
Dave Airlie2ee39452014-07-24 11:53:45 +10001054 drm_mode_object_register(connector->dev, &connector->base);
1055
Thomas Wood30f65702014-06-18 17:52:32 +01001056 ret = drm_sysfs_connector_add(connector);
1057 if (ret)
1058 return ret;
1059
1060 ret = drm_debugfs_connector_add(connector);
1061 if (ret) {
1062 drm_sysfs_connector_remove(connector);
1063 return ret;
1064 }
1065
1066 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +01001067}
1068EXPORT_SYMBOL(drm_connector_register);
1069
1070/**
1071 * drm_connector_unregister - unregister a connector
1072 * @connector: the connector to unregister
1073 *
1074 * Unregister userspace interfaces for a connector
1075 */
1076void drm_connector_unregister(struct drm_connector *connector)
1077{
1078 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001079 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001080}
1081EXPORT_SYMBOL(drm_connector_unregister);
1082
1083
1084/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001085 * drm_connector_unplug_all - unregister connector userspace interfaces
1086 * @dev: drm device
1087 *
1088 * This function unregisters all connector userspace interfaces in sysfs. Should
1089 * be call when the device is disconnected, e.g. from an usb driver's
1090 * ->disconnect callback.
1091 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001092void drm_connector_unplug_all(struct drm_device *dev)
1093{
1094 struct drm_connector *connector;
1095
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02001096 /* FIXME: taking the mode config mutex ends up in a clash with sysfs */
Dave Airliecbc7e222012-02-20 14:16:40 +00001097 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001098 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001099
1100}
1101EXPORT_SYMBOL(drm_connector_unplug_all);
1102
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001103/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001104 * drm_encoder_init - Init a preallocated encoder
1105 * @dev: drm device
1106 * @encoder: the encoder to init
1107 * @funcs: callbacks for this encoder
1108 * @encoder_type: user visible type of the encoder
Ville Syrjälä13a3d912015-12-09 16:20:18 +02001109 * @name: printf style format string for the encoder name, or NULL for default name
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001110 *
1111 * Initialises a preallocated encoder. Encoder should be
1112 * subclassed as part of driver encoder objects.
1113 *
1114 * Returns:
1115 * Zero on success, error code on failure.
1116 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001117int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001118 struct drm_encoder *encoder,
1119 const struct drm_encoder_funcs *funcs,
Ville Syrjälä13a3d912015-12-09 16:20:18 +02001120 int encoder_type, const char *name, ...)
Dave Airlief453ba02008-11-07 14:05:41 -08001121{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001122 int ret;
1123
Daniel Vetter84849902012-12-02 00:28:11 +01001124 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001125
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001126 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1127 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001128 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001129
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001130 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001131 encoder->encoder_type = encoder_type;
1132 encoder->funcs = funcs;
Ville Syrjälä86bf5462015-12-08 18:41:52 +02001133 if (name) {
1134 va_list ap;
1135
1136 va_start(ap, name);
1137 encoder->name = kvasprintf(GFP_KERNEL, name, ap);
1138 va_end(ap);
1139 } else {
1140 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1141 drm_encoder_enum_list[encoder_type].name,
1142 encoder->base.id);
1143 }
Jani Nikulae5748942014-05-14 16:58:20 +03001144 if (!encoder->name) {
1145 ret = -ENOMEM;
1146 goto out_put;
1147 }
Dave Airlief453ba02008-11-07 14:05:41 -08001148
1149 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1150 dev->mode_config.num_encoder++;
1151
Jani Nikulae5748942014-05-14 16:58:20 +03001152out_put:
1153 if (ret)
1154 drm_mode_object_put(dev, &encoder->base);
1155
1156out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001157 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001158
1159 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001160}
1161EXPORT_SYMBOL(drm_encoder_init);
1162
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001163/**
Maarten Lankhorst47d77772016-01-07 10:59:18 +01001164 * drm_encoder_index - find the index of a registered encoder
1165 * @encoder: encoder to find index for
1166 *
1167 * Given a registered encoder, return the index of that encoder within a DRM
1168 * device's list of encoders.
1169 */
1170unsigned int drm_encoder_index(struct drm_encoder *encoder)
1171{
1172 unsigned int index = 0;
1173 struct drm_encoder *tmp;
1174
1175 drm_for_each_encoder(tmp, encoder->dev) {
1176 if (tmp == encoder)
1177 return index;
1178
1179 index++;
1180 }
1181
1182 BUG();
1183}
1184EXPORT_SYMBOL(drm_encoder_index);
1185
1186/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001187 * drm_encoder_cleanup - cleans up an initialised encoder
1188 * @encoder: encoder to cleanup
1189 *
1190 * Cleans up the encoder but doesn't free the object.
1191 */
Dave Airlief453ba02008-11-07 14:05:41 -08001192void drm_encoder_cleanup(struct drm_encoder *encoder)
1193{
1194 struct drm_device *dev = encoder->dev;
Thierry Reding4dfd9092014-12-10 13:03:34 +01001195
Daniel Vetter84849902012-12-02 00:28:11 +01001196 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001197 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001198 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001199 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001200 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001201 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001202
1203 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001204}
1205EXPORT_SYMBOL(drm_encoder_cleanup);
1206
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +02001207static unsigned int drm_num_planes(struct drm_device *dev)
1208{
1209 unsigned int num = 0;
1210 struct drm_plane *tmp;
1211
1212 drm_for_each_plane(tmp, dev) {
1213 num++;
1214 }
1215
1216 return num;
1217}
1218
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001219/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001220 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001221 * @dev: DRM device
1222 * @plane: plane object to init
1223 * @possible_crtcs: bitmask of possible CRTCs
1224 * @funcs: callbacks for the new plane
1225 * @formats: array of supported formats (%DRM_FORMAT_*)
1226 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001227 * @type: type of plane (overlay, primary, cursor)
Ville Syrjäläb0b3b792015-12-09 16:19:55 +02001228 * @name: printf style format string for the plane name, or NULL for default name
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001229 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001230 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001231 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001232 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001233 * Zero on success, error code on failure.
1234 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001235int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1236 unsigned long possible_crtcs,
1237 const struct drm_plane_funcs *funcs,
Thierry Reding45e37432015-08-12 16:54:28 +02001238 const uint32_t *formats, unsigned int format_count,
Ville Syrjäläb0b3b792015-12-09 16:19:55 +02001239 enum drm_plane_type type,
1240 const char *name, ...)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001241{
Rob Clark6b4959f2014-12-18 16:01:53 -05001242 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001243 int ret;
1244
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001245 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1246 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001247 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001248
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001249 drm_modeset_lock_init(&plane->mutex);
1250
Rob Clark4d939142012-05-17 02:23:27 -06001251 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001252 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001253 plane->funcs = funcs;
Thierry Reding2f6c5382014-12-10 13:03:36 +01001254 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1255 GFP_KERNEL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001256 if (!plane->format_types) {
1257 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1258 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001259 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001260 }
1261
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +02001262 if (name) {
1263 va_list ap;
1264
1265 va_start(ap, name);
1266 plane->name = kvasprintf(GFP_KERNEL, name, ap);
1267 va_end(ap);
1268 } else {
1269 plane->name = kasprintf(GFP_KERNEL, "plane-%d",
1270 drm_num_planes(dev));
1271 }
1272 if (!plane->name) {
1273 kfree(plane->format_types);
1274 drm_mode_object_put(dev, &plane->base);
1275 return -ENOMEM;
1276 }
1277
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001278 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001279 plane->format_count = format_count;
1280 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001281 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001282
Rob Clark6b4959f2014-12-18 16:01:53 -05001283 list_add_tail(&plane->head, &config->plane_list);
1284 config->num_total_plane++;
Matt Roperdc415ff2014-04-01 15:22:36 -07001285 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Rob Clark6b4959f2014-12-18 16:01:53 -05001286 config->num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001287
Rob Clark9922ab52014-04-01 20:16:57 -04001288 drm_object_attach_property(&plane->base,
Rob Clark6b4959f2014-12-18 16:01:53 -05001289 config->plane_type_property,
Rob Clark9922ab52014-04-01 20:16:57 -04001290 plane->type);
1291
Rob Clark6b4959f2014-12-18 16:01:53 -05001292 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1293 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1294 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1295 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1296 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1297 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1298 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1299 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1300 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1301 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1302 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1303 }
1304
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001305 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001306}
Matt Roperdc415ff2014-04-01 15:22:36 -07001307EXPORT_SYMBOL(drm_universal_plane_init);
1308
1309/**
1310 * drm_plane_init - Initialize a legacy plane
1311 * @dev: DRM device
1312 * @plane: plane object to init
1313 * @possible_crtcs: bitmask of possible CRTCs
1314 * @funcs: callbacks for the new plane
1315 * @formats: array of supported formats (%DRM_FORMAT_*)
1316 * @format_count: number of elements in @formats
1317 * @is_primary: plane type (primary vs overlay)
1318 *
1319 * Legacy API to initialize a DRM plane.
1320 *
1321 * New drivers should call drm_universal_plane_init() instead.
1322 *
1323 * Returns:
1324 * Zero on success, error code on failure.
1325 */
1326int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1327 unsigned long possible_crtcs,
1328 const struct drm_plane_funcs *funcs,
Thierry Reding45e37432015-08-12 16:54:28 +02001329 const uint32_t *formats, unsigned int format_count,
Matt Roperdc415ff2014-04-01 15:22:36 -07001330 bool is_primary)
1331{
1332 enum drm_plane_type type;
1333
1334 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1335 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
Ville Syrjäläb0b3b792015-12-09 16:19:55 +02001336 formats, format_count, type, NULL);
Matt Roperdc415ff2014-04-01 15:22:36 -07001337}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001338EXPORT_SYMBOL(drm_plane_init);
1339
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001340/**
1341 * drm_plane_cleanup - Clean up the core plane usage
1342 * @plane: plane to cleanup
1343 *
1344 * This function cleans up @plane and removes it from the DRM mode setting
1345 * core. Note that the function does *not* free the plane structure itself,
1346 * this is the responsibility of the caller.
1347 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001348void drm_plane_cleanup(struct drm_plane *plane)
1349{
1350 struct drm_device *dev = plane->dev;
1351
Daniel Vetter84849902012-12-02 00:28:11 +01001352 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001353 kfree(plane->format_types);
1354 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001355
1356 BUG_ON(list_empty(&plane->head));
1357
1358 list_del(&plane->head);
1359 dev->mode_config.num_total_plane--;
1360 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1361 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001362 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001363
1364 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1365 if (plane->state && plane->funcs->atomic_destroy_state)
1366 plane->funcs->atomic_destroy_state(plane, plane->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001367
Ville Syrjälä9f4c97a2015-12-08 18:41:54 +02001368 kfree(plane->name);
1369
Thierry Redinga18c0af2014-12-10 11:38:49 +01001370 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001371}
1372EXPORT_SYMBOL(drm_plane_cleanup);
1373
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001374/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001375 * drm_plane_index - find the index of a registered plane
1376 * @plane: plane to find index for
1377 *
1378 * Given a registered plane, return the index of that CRTC within a DRM
1379 * device's list of planes.
1380 */
1381unsigned int drm_plane_index(struct drm_plane *plane)
1382{
1383 unsigned int index = 0;
1384 struct drm_plane *tmp;
1385
Daniel Vettere4f62542015-07-09 23:44:35 +02001386 drm_for_each_plane(tmp, plane->dev) {
Daniel Vetter10f637b2014-07-29 13:47:11 +02001387 if (tmp == plane)
1388 return index;
1389
1390 index++;
1391 }
1392
1393 BUG();
1394}
1395EXPORT_SYMBOL(drm_plane_index);
1396
1397/**
Chandra Konduruf81338a2015-04-09 17:36:21 -07001398 * drm_plane_from_index - find the registered plane at an index
1399 * @dev: DRM device
1400 * @idx: index of registered plane to find for
1401 *
1402 * Given a plane index, return the registered plane from DRM device's
1403 * list of planes with matching index.
1404 */
1405struct drm_plane *
1406drm_plane_from_index(struct drm_device *dev, int idx)
1407{
1408 struct drm_plane *plane;
1409 unsigned int i = 0;
1410
Daniel Vetter6295d602015-07-09 23:44:25 +02001411 drm_for_each_plane(plane, dev) {
Chandra Konduruf81338a2015-04-09 17:36:21 -07001412 if (i == idx)
1413 return plane;
1414 i++;
1415 }
1416 return NULL;
1417}
1418EXPORT_SYMBOL(drm_plane_from_index);
1419
1420/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001421 * drm_plane_force_disable - Forcibly disable a plane
1422 * @plane: plane to disable
1423 *
1424 * Forces the plane to be disabled.
1425 *
1426 * Used when the plane's current framebuffer is destroyed,
1427 * and when restoring fbdev mode.
1428 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001429void drm_plane_force_disable(struct drm_plane *plane)
1430{
1431 int ret;
1432
Daniel Vetter3d30a592014-07-27 13:42:42 +02001433 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001434 return;
1435
Daniel Vetter3d30a592014-07-27 13:42:42 +02001436 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001437 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001438 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001439 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001440 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001441 return;
1442 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001443 /* disconnect the plane from the fb and crtc: */
Daniel Vetter220dd2b2015-02-27 12:58:13 +01001444 drm_framebuffer_unreference(plane->old_fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02001445 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001446 plane->fb = NULL;
1447 plane->crtc = NULL;
1448}
1449EXPORT_SYMBOL(drm_plane_force_disable);
1450
Rob Clark6b4959f2014-12-18 16:01:53 -05001451static int drm_mode_create_standard_properties(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -08001452{
Rob Clark356af0e2014-12-18 16:01:52 -05001453 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001454
1455 /*
1456 * Standard properties (apply to all connectors)
1457 */
Rob Clark356af0e2014-12-18 16:01:52 -05001458 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
Dave Airlief453ba02008-11-07 14:05:41 -08001459 DRM_MODE_PROP_IMMUTABLE,
1460 "EDID", 0);
Rob Clark356af0e2014-12-18 16:01:52 -05001461 if (!prop)
1462 return -ENOMEM;
1463 dev->mode_config.edid_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001464
Rob Clark356af0e2014-12-18 16:01:52 -05001465 prop = drm_property_create_enum(dev, 0,
Sascha Hauer4a67d392012-02-06 10:58:17 +01001466 "DPMS", drm_dpms_enum_list,
1467 ARRAY_SIZE(drm_dpms_enum_list));
Rob Clark356af0e2014-12-18 16:01:52 -05001468 if (!prop)
1469 return -ENOMEM;
1470 dev->mode_config.dpms_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001471
Rob Clark356af0e2014-12-18 16:01:52 -05001472 prop = drm_property_create(dev,
1473 DRM_MODE_PROP_BLOB |
1474 DRM_MODE_PROP_IMMUTABLE,
1475 "PATH", 0);
1476 if (!prop)
1477 return -ENOMEM;
1478 dev->mode_config.path_property = prop;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001479
Rob Clark356af0e2014-12-18 16:01:52 -05001480 prop = drm_property_create(dev,
1481 DRM_MODE_PROP_BLOB |
1482 DRM_MODE_PROP_IMMUTABLE,
1483 "TILE", 0);
1484 if (!prop)
1485 return -ENOMEM;
1486 dev->mode_config.tile_property = prop;
Dave Airlie6f134d72014-10-20 16:30:50 +10001487
Rob Clark6b4959f2014-12-18 16:01:53 -05001488 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Rob Clark9922ab52014-04-01 20:16:57 -04001489 "type", drm_plane_type_enum_list,
1490 ARRAY_SIZE(drm_plane_type_enum_list));
Rob Clark6b4959f2014-12-18 16:01:53 -05001491 if (!prop)
1492 return -ENOMEM;
1493 dev->mode_config.plane_type_property = prop;
1494
1495 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1496 "SRC_X", 0, UINT_MAX);
1497 if (!prop)
1498 return -ENOMEM;
1499 dev->mode_config.prop_src_x = prop;
1500
1501 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1502 "SRC_Y", 0, UINT_MAX);
1503 if (!prop)
1504 return -ENOMEM;
1505 dev->mode_config.prop_src_y = prop;
1506
1507 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1508 "SRC_W", 0, UINT_MAX);
1509 if (!prop)
1510 return -ENOMEM;
1511 dev->mode_config.prop_src_w = prop;
1512
1513 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1514 "SRC_H", 0, UINT_MAX);
1515 if (!prop)
1516 return -ENOMEM;
1517 dev->mode_config.prop_src_h = prop;
1518
1519 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1520 "CRTC_X", INT_MIN, INT_MAX);
1521 if (!prop)
1522 return -ENOMEM;
1523 dev->mode_config.prop_crtc_x = prop;
1524
1525 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1526 "CRTC_Y", INT_MIN, INT_MAX);
1527 if (!prop)
1528 return -ENOMEM;
1529 dev->mode_config.prop_crtc_y = prop;
1530
1531 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1532 "CRTC_W", 0, INT_MAX);
1533 if (!prop)
1534 return -ENOMEM;
1535 dev->mode_config.prop_crtc_w = prop;
1536
1537 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1538 "CRTC_H", 0, INT_MAX);
1539 if (!prop)
1540 return -ENOMEM;
1541 dev->mode_config.prop_crtc_h = prop;
1542
1543 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1544 "FB_ID", DRM_MODE_OBJECT_FB);
1545 if (!prop)
1546 return -ENOMEM;
1547 dev->mode_config.prop_fb_id = prop;
1548
1549 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1550 "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1551 if (!prop)
1552 return -ENOMEM;
1553 dev->mode_config.prop_crtc_id = prop;
Rob Clark9922ab52014-04-01 20:16:57 -04001554
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001555 prop = drm_property_create_bool(dev, DRM_MODE_PROP_ATOMIC,
1556 "ACTIVE");
1557 if (!prop)
1558 return -ENOMEM;
1559 dev->mode_config.prop_active = prop;
1560
Daniel Stone955f3c32015-05-25 19:11:52 +01001561 prop = drm_property_create(dev,
1562 DRM_MODE_PROP_ATOMIC | DRM_MODE_PROP_BLOB,
1563 "MODE_ID", 0);
1564 if (!prop)
1565 return -ENOMEM;
1566 dev->mode_config.prop_mode_id = prop;
1567
Rob Clark9922ab52014-04-01 20:16:57 -04001568 return 0;
1569}
1570
Dave Airlief453ba02008-11-07 14:05:41 -08001571/**
1572 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1573 * @dev: DRM device
1574 *
1575 * Called by a driver the first time a DVI-I connector is made.
1576 */
1577int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1578{
1579 struct drm_property *dvi_i_selector;
1580 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001581
1582 if (dev->mode_config.dvi_i_select_subconnector_property)
1583 return 0;
1584
1585 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001586 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001587 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001588 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001589 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001590 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1591
Sascha Hauer4a67d392012-02-06 10:58:17 +01001592 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001593 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001594 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001595 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001596 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1597
1598 return 0;
1599}
1600EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1601
1602/**
1603 * drm_create_tv_properties - create TV specific connector properties
1604 * @dev: DRM device
1605 * @num_modes: number of different TV formats (modes) supported
1606 * @modes: array of pointers to strings containing name of each format
1607 *
1608 * Called by a driver's TV initialization routine, this function creates
1609 * the TV specific connector properties for a given device. Caller is
1610 * responsible for allocating a list of format names and passing them to
1611 * this routine.
1612 */
Thierry Reding2f763312014-10-13 12:45:57 +02001613int drm_mode_create_tv_properties(struct drm_device *dev,
1614 unsigned int num_modes,
Ville Syrjäläb7c914b2015-08-31 15:09:26 +03001615 const char * const modes[])
Dave Airlief453ba02008-11-07 14:05:41 -08001616{
1617 struct drm_property *tv_selector;
1618 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001619 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001620
1621 if (dev->mode_config.tv_select_subconnector_property)
1622 return 0;
1623
1624 /*
1625 * Basic connector properties
1626 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001627 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001628 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001629 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001630 ARRAY_SIZE(drm_tv_select_enum_list));
Insu Yun48aa1e72015-10-19 16:33:30 +00001631 if (!tv_selector)
1632 goto nomem;
1633
Dave Airlief453ba02008-11-07 14:05:41 -08001634 dev->mode_config.tv_select_subconnector_property = tv_selector;
1635
1636 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001637 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1638 "subconnector",
1639 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001640 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Insu Yun48aa1e72015-10-19 16:33:30 +00001641 if (!tv_subconnector)
1642 goto nomem;
Dave Airlief453ba02008-11-07 14:05:41 -08001643 dev->mode_config.tv_subconnector_property = tv_subconnector;
1644
1645 /*
1646 * Other, TV specific properties: margins & TV modes.
1647 */
1648 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001649 drm_property_create_range(dev, 0, "left margin", 0, 100);
Insu Yun48aa1e72015-10-19 16:33:30 +00001650 if (!dev->mode_config.tv_left_margin_property)
1651 goto nomem;
Dave Airlief453ba02008-11-07 14:05:41 -08001652
1653 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001654 drm_property_create_range(dev, 0, "right margin", 0, 100);
Insu Yun48aa1e72015-10-19 16:33:30 +00001655 if (!dev->mode_config.tv_right_margin_property)
1656 goto nomem;
Dave Airlief453ba02008-11-07 14:05:41 -08001657
1658 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001659 drm_property_create_range(dev, 0, "top margin", 0, 100);
Insu Yun48aa1e72015-10-19 16:33:30 +00001660 if (!dev->mode_config.tv_top_margin_property)
1661 goto nomem;
Dave Airlief453ba02008-11-07 14:05:41 -08001662
1663 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001664 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Insu Yun48aa1e72015-10-19 16:33:30 +00001665 if (!dev->mode_config.tv_bottom_margin_property)
1666 goto nomem;
Dave Airlief453ba02008-11-07 14:05:41 -08001667
1668 dev->mode_config.tv_mode_property =
1669 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1670 "mode", num_modes);
Insu Yun48aa1e72015-10-19 16:33:30 +00001671 if (!dev->mode_config.tv_mode_property)
1672 goto nomem;
1673
Dave Airlief453ba02008-11-07 14:05:41 -08001674 for (i = 0; i < num_modes; i++)
1675 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1676 i, modes[i]);
1677
Francisco Jerezb6b79022009-08-02 04:19:20 +02001678 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001679 drm_property_create_range(dev, 0, "brightness", 0, 100);
Insu Yun48aa1e72015-10-19 16:33:30 +00001680 if (!dev->mode_config.tv_brightness_property)
1681 goto nomem;
Francisco Jerezb6b79022009-08-02 04:19:20 +02001682
1683 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001684 drm_property_create_range(dev, 0, "contrast", 0, 100);
Insu Yun48aa1e72015-10-19 16:33:30 +00001685 if (!dev->mode_config.tv_contrast_property)
1686 goto nomem;
Francisco Jerezb6b79022009-08-02 04:19:20 +02001687
1688 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001689 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Insu Yun48aa1e72015-10-19 16:33:30 +00001690 if (!dev->mode_config.tv_flicker_reduction_property)
1691 goto nomem;
Francisco Jerezb6b79022009-08-02 04:19:20 +02001692
Francisco Jereza75f0232009-08-12 02:30:10 +02001693 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001694 drm_property_create_range(dev, 0, "overscan", 0, 100);
Insu Yun48aa1e72015-10-19 16:33:30 +00001695 if (!dev->mode_config.tv_overscan_property)
1696 goto nomem;
Francisco Jereza75f0232009-08-12 02:30:10 +02001697
1698 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001699 drm_property_create_range(dev, 0, "saturation", 0, 100);
Insu Yun48aa1e72015-10-19 16:33:30 +00001700 if (!dev->mode_config.tv_saturation_property)
1701 goto nomem;
Francisco Jereza75f0232009-08-12 02:30:10 +02001702
1703 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001704 drm_property_create_range(dev, 0, "hue", 0, 100);
Insu Yun48aa1e72015-10-19 16:33:30 +00001705 if (!dev->mode_config.tv_hue_property)
1706 goto nomem;
Francisco Jereza75f0232009-08-12 02:30:10 +02001707
Dave Airlief453ba02008-11-07 14:05:41 -08001708 return 0;
Insu Yun48aa1e72015-10-19 16:33:30 +00001709nomem:
1710 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08001711}
1712EXPORT_SYMBOL(drm_mode_create_tv_properties);
1713
1714/**
1715 * drm_mode_create_scaling_mode_property - create scaling mode property
1716 * @dev: DRM device
1717 *
1718 * Called by a driver the first time it's needed, must be attached to desired
1719 * connectors.
1720 */
1721int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1722{
1723 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001724
1725 if (dev->mode_config.scaling_mode_property)
1726 return 0;
1727
1728 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001729 drm_property_create_enum(dev, 0, "scaling mode",
1730 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001731 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001732
1733 dev->mode_config.scaling_mode_property = scaling_mode;
1734
1735 return 0;
1736}
1737EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1738
1739/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301740 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1741 * @dev: DRM device
1742 *
1743 * Called by a driver the first time it's needed, must be attached to desired
1744 * connectors.
1745 *
1746 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001747 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301748 */
1749int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1750{
1751 if (dev->mode_config.aspect_ratio_property)
1752 return 0;
1753
1754 dev->mode_config.aspect_ratio_property =
1755 drm_property_create_enum(dev, 0, "aspect ratio",
1756 drm_aspect_ratio_enum_list,
1757 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1758
1759 if (dev->mode_config.aspect_ratio_property == NULL)
1760 return -ENOMEM;
1761
1762 return 0;
1763}
1764EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1765
1766/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001767 * drm_mode_create_dirty_property - create dirty property
1768 * @dev: DRM device
1769 *
1770 * Called by a driver the first time it's needed, must be attached to desired
1771 * connectors.
1772 */
1773int drm_mode_create_dirty_info_property(struct drm_device *dev)
1774{
1775 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001776
1777 if (dev->mode_config.dirty_info_property)
1778 return 0;
1779
1780 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001781 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001782 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001783 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001784 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001785 dev->mode_config.dirty_info_property = dirty_info;
1786
1787 return 0;
1788}
1789EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1790
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001791/**
1792 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1793 * @dev: DRM device
1794 *
1795 * Create the the suggested x/y offset property for connectors.
1796 */
1797int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1798{
1799 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1800 return 0;
1801
1802 dev->mode_config.suggested_x_property =
1803 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1804
1805 dev->mode_config.suggested_y_property =
1806 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1807
1808 if (dev->mode_config.suggested_x_property == NULL ||
1809 dev->mode_config.suggested_y_property == NULL)
1810 return -ENOMEM;
1811 return 0;
1812}
1813EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1814
Dave Airlief453ba02008-11-07 14:05:41 -08001815/**
Dave Airlief453ba02008-11-07 14:05:41 -08001816 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001817 * @dev: drm device for the ioctl
1818 * @data: data pointer for the ioctl
1819 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001820 *
Dave Airlief453ba02008-11-07 14:05:41 -08001821 * Construct a set of configuration description structures and return
1822 * them to the user, including CRTC, connector and framebuffer configuration.
1823 *
1824 * Called by the user via ioctl.
1825 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001826 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001827 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001828 */
1829int drm_mode_getresources(struct drm_device *dev, void *data,
1830 struct drm_file *file_priv)
1831{
1832 struct drm_mode_card_res *card_res = data;
1833 struct list_head *lh;
1834 struct drm_framebuffer *fb;
1835 struct drm_connector *connector;
1836 struct drm_crtc *crtc;
1837 struct drm_encoder *encoder;
1838 int ret = 0;
1839 int connector_count = 0;
1840 int crtc_count = 0;
1841 int fb_count = 0;
1842 int encoder_count = 0;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001843 int copied = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001844 uint32_t __user *fb_id;
1845 uint32_t __user *crtc_id;
1846 uint32_t __user *connector_id;
1847 uint32_t __user *encoder_id;
Dave Airlief453ba02008-11-07 14:05:41 -08001848
Dave Airliefb3b06c2011-02-08 13:55:21 +10001849 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1850 return -EINVAL;
1851
Dave Airlief453ba02008-11-07 14:05:41 -08001852
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001853 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001854 /*
1855 * For the non-control nodes we need to limit the list of resources
1856 * by IDs in the group list for this node
1857 */
1858 list_for_each(lh, &file_priv->fbs)
1859 fb_count++;
1860
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001861 /* handle this in 4 parts */
1862 /* FBs */
1863 if (card_res->count_fbs >= fb_count) {
1864 copied = 0;
1865 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1866 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1867 if (put_user(fb->base.id, fb_id + copied)) {
1868 mutex_unlock(&file_priv->fbs_lock);
1869 return -EFAULT;
1870 }
1871 copied++;
1872 }
1873 }
1874 card_res->count_fbs = fb_count;
1875 mutex_unlock(&file_priv->fbs_lock);
1876
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001877 /* mode_config.mutex protects the connector list against e.g. DP MST
1878 * connector hot-adding. CRTC/Plane lists are invariant. */
1879 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001880 drm_for_each_crtc(crtc, dev)
1881 crtc_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001882
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001883 drm_for_each_connector(connector, dev)
1884 connector_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001885
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001886 drm_for_each_encoder(encoder, dev)
1887 encoder_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001888
1889 card_res->max_height = dev->mode_config.max_height;
1890 card_res->min_height = dev->mode_config.min_height;
1891 card_res->max_width = dev->mode_config.max_width;
1892 card_res->min_width = dev->mode_config.min_width;
1893
Dave Airlief453ba02008-11-07 14:05:41 -08001894 /* CRTCs */
1895 if (card_res->count_crtcs >= crtc_count) {
1896 copied = 0;
1897 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001898 drm_for_each_crtc(crtc, dev) {
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02001899 DRM_DEBUG_KMS("[CRTC:%d:%s]\n",
1900 crtc->base.id, crtc->name);
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001901 if (put_user(crtc->base.id, crtc_id + copied)) {
1902 ret = -EFAULT;
1903 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001904 }
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001905 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001906 }
1907 }
1908 card_res->count_crtcs = crtc_count;
1909
1910 /* Encoders */
1911 if (card_res->count_encoders >= encoder_count) {
1912 copied = 0;
1913 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001914 drm_for_each_encoder(encoder, dev) {
1915 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1916 encoder->name);
1917 if (put_user(encoder->base.id, encoder_id +
1918 copied)) {
1919 ret = -EFAULT;
1920 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001921 }
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001922 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001923 }
1924 }
1925 card_res->count_encoders = encoder_count;
1926
1927 /* Connectors */
1928 if (card_res->count_connectors >= connector_count) {
1929 copied = 0;
1930 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001931 drm_for_each_connector(connector, dev) {
1932 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1933 connector->base.id,
1934 connector->name);
1935 if (put_user(connector->base.id,
1936 connector_id + copied)) {
1937 ret = -EFAULT;
1938 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001939 }
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001940 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001941 }
1942 }
1943 card_res->count_connectors = connector_count;
1944
Jerome Glisse94401062010-07-15 15:43:25 -04001945 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001946 card_res->count_connectors, card_res->count_encoders);
1947
1948out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001949 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001950 return ret;
1951}
1952
1953/**
1954 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001955 * @dev: drm device for the ioctl
1956 * @data: data pointer for the ioctl
1957 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001958 *
Dave Airlief453ba02008-11-07 14:05:41 -08001959 * Construct a CRTC configuration structure to return to the user.
1960 *
1961 * Called by the user via ioctl.
1962 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001963 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001964 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001965 */
1966int drm_mode_getcrtc(struct drm_device *dev,
1967 void *data, struct drm_file *file_priv)
1968{
1969 struct drm_mode_crtc *crtc_resp = data;
1970 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001971
Dave Airliefb3b06c2011-02-08 13:55:21 +10001972 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1973 return -EINVAL;
1974
Rob Clarka2b34e22013-10-05 16:36:52 -04001975 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001976 if (!crtc)
1977 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001978
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001979 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08001980 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07001981 if (crtc->primary->fb)
1982 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08001983 else
1984 crtc_resp->fb_id = 0;
1985
Daniel Vetter31c946e2015-02-22 12:24:17 +01001986 if (crtc->state) {
1987 crtc_resp->x = crtc->primary->state->src_x >> 16;
1988 crtc_resp->y = crtc->primary->state->src_y >> 16;
1989 if (crtc->state->enable) {
Daniel Stone934a8a82015-05-22 13:34:48 +01001990 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->state->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +01001991 crtc_resp->mode_valid = 1;
Dave Airlief453ba02008-11-07 14:05:41 -08001992
Daniel Vetter31c946e2015-02-22 12:24:17 +01001993 } else {
1994 crtc_resp->mode_valid = 0;
1995 }
Dave Airlief453ba02008-11-07 14:05:41 -08001996 } else {
Daniel Vetter31c946e2015-02-22 12:24:17 +01001997 crtc_resp->x = crtc->x;
1998 crtc_resp->y = crtc->y;
1999 if (crtc->enabled) {
Daniel Stone934a8a82015-05-22 13:34:48 +01002000 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +01002001 crtc_resp->mode_valid = 1;
2002
2003 } else {
2004 crtc_resp->mode_valid = 0;
2005 }
Dave Airlief453ba02008-11-07 14:05:41 -08002006 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002007 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08002008
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002009 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002010}
2011
Damien Lespiau61d8e322013-09-25 16:45:22 +01002012static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
2013 const struct drm_file *file_priv)
2014{
2015 /*
2016 * If user-space hasn't configured the driver to expose the stereo 3D
2017 * modes, don't expose them.
2018 */
2019 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
2020 return false;
2021
2022 return true;
2023}
2024
Daniel Vetterabd69c52014-11-25 23:50:05 +01002025static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
2026{
2027 /* For atomic drivers only state objects are synchronously updated and
2028 * protected by modeset locks, so check those first. */
2029 if (connector->state)
2030 return connector->state->best_encoder;
2031 return connector->encoder;
2032}
2033
Rob Clark95cbf112014-12-18 16:01:49 -05002034/* helper for getconnector and getproperties ioctls */
Rob Clark88a48e22014-12-18 16:01:50 -05002035static int get_properties(struct drm_mode_object *obj, bool atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002036 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
2037 uint32_t *arg_count_props)
2038{
Rob Clark88a48e22014-12-18 16:01:50 -05002039 int props_count;
2040 int i, ret, copied;
2041
2042 props_count = obj->properties->count;
2043 if (!atomic)
2044 props_count -= obj->properties->atomic_count;
Rob Clark95cbf112014-12-18 16:01:49 -05002045
2046 if ((*arg_count_props >= props_count) && props_count) {
Rob Clark88a48e22014-12-18 16:01:50 -05002047 for (i = 0, copied = 0; copied < props_count; i++) {
Rob Clark95cbf112014-12-18 16:01:49 -05002048 struct drm_property *prop = obj->properties->properties[i];
2049 uint64_t val;
2050
Rob Clark88a48e22014-12-18 16:01:50 -05002051 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
2052 continue;
2053
Rob Clark95cbf112014-12-18 16:01:49 -05002054 ret = drm_object_property_get_value(obj, prop, &val);
2055 if (ret)
2056 return ret;
2057
2058 if (put_user(prop->base.id, prop_ptr + copied))
2059 return -EFAULT;
2060
2061 if (put_user(val, prop_values + copied))
2062 return -EFAULT;
2063
2064 copied++;
2065 }
2066 }
2067 *arg_count_props = props_count;
2068
2069 return 0;
2070}
2071
Dave Airlief453ba02008-11-07 14:05:41 -08002072/**
2073 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002074 * @dev: drm device for the ioctl
2075 * @data: data pointer for the ioctl
2076 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002077 *
Dave Airlief453ba02008-11-07 14:05:41 -08002078 * Construct a connector configuration structure to return to the user.
2079 *
2080 * Called by the user via ioctl.
2081 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002082 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002083 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002084 */
2085int drm_mode_getconnector(struct drm_device *dev, void *data,
2086 struct drm_file *file_priv)
2087{
2088 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002089 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002090 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08002091 struct drm_display_mode *mode;
2092 int mode_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002093 int encoders_count = 0;
2094 int ret = 0;
2095 int copied = 0;
2096 int i;
2097 struct drm_mode_modeinfo u_mode;
2098 struct drm_mode_modeinfo __user *mode_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002099 uint32_t __user *encoder_ptr;
2100
Dave Airliefb3b06c2011-02-08 13:55:21 +10002101 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2102 return -EINVAL;
2103
Dave Airlief453ba02008-11-07 14:05:41 -08002104 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2105
Jerome Glisse94401062010-07-15 15:43:25 -04002106 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002107
Daniel Vetter7b240562012-12-12 00:35:33 +01002108 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002109
Rob Clarka2b34e22013-10-05 16:36:52 -04002110 connector = drm_connector_find(dev, out_resp->connector_id);
2111 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002112 ret = -ENOENT;
Tommi Rantala04bdf442015-04-03 10:45:29 +03002113 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08002114 }
Dave Airlief453ba02008-11-07 14:05:41 -08002115
Thierry Reding01073b02014-12-10 13:03:38 +01002116 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
2117 if (connector->encoder_ids[i] != 0)
Dave Airlief453ba02008-11-07 14:05:41 -08002118 encoders_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002119
2120 if (out_resp->count_modes == 0) {
2121 connector->funcs->fill_modes(connector,
2122 dev->mode_config.max_width,
2123 dev->mode_config.max_height);
2124 }
2125
2126 /* delayed so we get modes regardless of pre-fill_modes state */
2127 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002128 if (drm_mode_expose_to_userspace(mode, file_priv))
2129 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002130
2131 out_resp->connector_id = connector->base.id;
2132 out_resp->connector_type = connector->connector_type;
2133 out_resp->connector_type_id = connector->connector_type_id;
2134 out_resp->mm_width = connector->display_info.width_mm;
2135 out_resp->mm_height = connector->display_info.height_mm;
2136 out_resp->subpixel = connector->display_info.subpixel_order;
2137 out_resp->connection = connector->status;
Daniel Vetter2caa80e2015-02-22 11:38:36 +01002138
2139 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002140 encoder = drm_connector_get_encoder(connector);
2141 if (encoder)
2142 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002143 else
2144 out_resp->encoder_id = 0;
2145
2146 /*
2147 * This ioctl is called twice, once to determine how much space is
2148 * needed, and the 2nd time to fill it.
2149 */
2150 if ((out_resp->count_modes >= mode_count) && mode_count) {
2151 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002152 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002153 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002154 if (!drm_mode_expose_to_userspace(mode, file_priv))
2155 continue;
2156
Daniel Stone934a8a82015-05-22 13:34:48 +01002157 drm_mode_convert_to_umode(&u_mode, mode);
Dave Airlief453ba02008-11-07 14:05:41 -08002158 if (copy_to_user(mode_ptr + copied,
2159 &u_mode, sizeof(u_mode))) {
2160 ret = -EFAULT;
2161 goto out;
2162 }
2163 copied++;
2164 }
2165 }
2166 out_resp->count_modes = mode_count;
2167
Rob Clark88a48e22014-12-18 16:01:50 -05002168 ret = get_properties(&connector->base, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002169 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2170 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2171 &out_resp->count_props);
2172 if (ret)
2173 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002174
2175 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2176 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002177 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002178 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2179 if (connector->encoder_ids[i] != 0) {
2180 if (put_user(connector->encoder_ids[i],
2181 encoder_ptr + copied)) {
2182 ret = -EFAULT;
2183 goto out;
2184 }
2185 copied++;
2186 }
2187 }
2188 }
2189 out_resp->count_encoders = encoders_count;
2190
2191out:
Rob Clarkccfc0862014-12-18 16:01:48 -05002192 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Tommi Rantala04bdf442015-04-03 10:45:29 +03002193
2194out_unlock:
Daniel Vetter7b240562012-12-12 00:35:33 +01002195 mutex_unlock(&dev->mode_config.mutex);
2196
Dave Airlief453ba02008-11-07 14:05:41 -08002197 return ret;
2198}
2199
Daniel Vetterabd69c52014-11-25 23:50:05 +01002200static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2201{
2202 struct drm_connector *connector;
2203 struct drm_device *dev = encoder->dev;
2204 bool uses_atomic = false;
2205
2206 /* For atomic drivers only state objects are synchronously updated and
2207 * protected by modeset locks, so check those first. */
Daniel Vetter6295d602015-07-09 23:44:25 +02002208 drm_for_each_connector(connector, dev) {
Daniel Vetterabd69c52014-11-25 23:50:05 +01002209 if (!connector->state)
2210 continue;
2211
2212 uses_atomic = true;
2213
2214 if (connector->state->best_encoder != encoder)
2215 continue;
2216
2217 return connector->state->crtc;
2218 }
2219
2220 /* Don't return stale data (e.g. pending async disable). */
2221 if (uses_atomic)
2222 return NULL;
2223
2224 return encoder->crtc;
2225}
2226
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002227/**
2228 * drm_mode_getencoder - get encoder configuration
2229 * @dev: drm device for the ioctl
2230 * @data: data pointer for the ioctl
2231 * @file_priv: drm file for the ioctl call
2232 *
2233 * Construct a encoder configuration structure to return to the user.
2234 *
2235 * Called by the user via ioctl.
2236 *
2237 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002238 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002239 */
Dave Airlief453ba02008-11-07 14:05:41 -08002240int drm_mode_getencoder(struct drm_device *dev, void *data,
2241 struct drm_file *file_priv)
2242{
2243 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002244 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002245 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002246
Dave Airliefb3b06c2011-02-08 13:55:21 +10002247 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2248 return -EINVAL;
2249
Rob Clarka2b34e22013-10-05 16:36:52 -04002250 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002251 if (!encoder)
2252 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002253
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002254 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002255 crtc = drm_encoder_get_crtc(encoder);
2256 if (crtc)
2257 enc_resp->crtc_id = crtc->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002258 else
2259 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002260 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2261
Dave Airlief453ba02008-11-07 14:05:41 -08002262 enc_resp->encoder_type = encoder->encoder_type;
2263 enc_resp->encoder_id = encoder->base.id;
2264 enc_resp->possible_crtcs = encoder->possible_crtcs;
2265 enc_resp->possible_clones = encoder->possible_clones;
2266
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002267 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002268}
2269
2270/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002271 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002272 * @dev: DRM device
2273 * @data: ioctl data
2274 * @file_priv: DRM file info
2275 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002276 * Construct a list of plane ids to return to the user.
2277 *
2278 * Called by the user via ioctl.
2279 *
2280 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002281 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002282 */
2283int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002284 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002285{
2286 struct drm_mode_get_plane_res *plane_resp = data;
2287 struct drm_mode_config *config;
2288 struct drm_plane *plane;
2289 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002290 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002291 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002292
2293 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2294 return -EINVAL;
2295
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002296 config = &dev->mode_config;
2297
Matt Roper681e7ec2014-04-01 15:22:42 -07002298 if (file_priv->universal_planes)
2299 num_planes = config->num_total_plane;
2300 else
2301 num_planes = config->num_overlay_plane;
2302
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002303 /*
2304 * This ioctl is called twice, once to determine how much space is
2305 * needed, and the 2nd time to fill it.
2306 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002307 if (num_planes &&
2308 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002309 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002310
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002311 /* Plane lists are invariant, no locking needed. */
Daniel Vettere4f62542015-07-09 23:44:35 +02002312 drm_for_each_plane(plane, dev) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002313 /*
2314 * Unless userspace set the 'universal planes'
2315 * capability bit, only advertise overlays.
2316 */
2317 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2318 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002319 continue;
2320
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002321 if (put_user(plane->base.id, plane_ptr + copied))
2322 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002323 copied++;
2324 }
2325 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002326 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002327
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002328 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002329}
2330
2331/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002332 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002333 * @dev: DRM device
2334 * @data: ioctl data
2335 * @file_priv: DRM file info
2336 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002337 * Construct a plane configuration structure to return to the user.
2338 *
2339 * Called by the user via ioctl.
2340 *
2341 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002342 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002343 */
2344int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002345 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002346{
2347 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002348 struct drm_plane *plane;
2349 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002350
2351 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2352 return -EINVAL;
2353
Rob Clarka2b34e22013-10-05 16:36:52 -04002354 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002355 if (!plane)
2356 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002357
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002358 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002359 if (plane->crtc)
2360 plane_resp->crtc_id = plane->crtc->base.id;
2361 else
2362 plane_resp->crtc_id = 0;
2363
2364 if (plane->fb)
2365 plane_resp->fb_id = plane->fb->base.id;
2366 else
2367 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002368 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002369
2370 plane_resp->plane_id = plane->base.id;
2371 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002372 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002373
2374 /*
2375 * This ioctl is called twice, once to determine how much space is
2376 * needed, and the 2nd time to fill it.
2377 */
2378 if (plane->format_count &&
2379 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002380 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002381 if (copy_to_user(format_ptr,
2382 plane->format_types,
2383 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002384 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002385 }
2386 }
2387 plane_resp->count_format_types = plane->format_count;
2388
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002389 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002390}
2391
Laurent Pinchartead86102015-03-05 02:25:43 +02002392/**
2393 * drm_plane_check_pixel_format - Check if the plane supports the pixel format
2394 * @plane: plane to check for format support
2395 * @format: the pixel format
2396 *
2397 * Returns:
2398 * Zero of @plane has @format in its list of supported pixel formats, -EINVAL
2399 * otherwise.
2400 */
2401int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
2402{
2403 unsigned int i;
2404
2405 for (i = 0; i < plane->format_count; i++) {
2406 if (format == plane->format_types[i])
2407 return 0;
2408 }
2409
2410 return -EINVAL;
2411}
2412
Ville Syrjäläce8d9ec2015-10-15 20:40:00 +03002413static int check_src_coords(uint32_t src_x, uint32_t src_y,
2414 uint32_t src_w, uint32_t src_h,
2415 const struct drm_framebuffer *fb)
2416{
2417 unsigned int fb_width, fb_height;
2418
2419 fb_width = fb->width << 16;
2420 fb_height = fb->height << 16;
2421
2422 /* Make sure source coordinates are inside the fb. */
2423 if (src_w > fb_width ||
2424 src_x > fb_width - src_w ||
2425 src_h > fb_height ||
2426 src_y > fb_height - src_h) {
2427 DRM_DEBUG_KMS("Invalid source coordinates "
2428 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
2429 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2430 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2431 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2432 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
2433 return -ENOSPC;
2434 }
2435
2436 return 0;
2437}
2438
Matt Roperb36552b2014-06-10 08:28:09 -07002439/*
2440 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002441 *
Matt Roperb36552b2014-06-10 08:28:09 -07002442 * Note that we assume an extra reference has already been taken on fb. If the
2443 * update fails, this reference will be dropped before return; if it succeeds,
2444 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002445 *
Matt Roperb36552b2014-06-10 08:28:09 -07002446 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002447 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002448static int __setplane_internal(struct drm_plane *plane,
2449 struct drm_crtc *crtc,
2450 struct drm_framebuffer *fb,
2451 int32_t crtc_x, int32_t crtc_y,
2452 uint32_t crtc_w, uint32_t crtc_h,
2453 /* src_{x,y,w,h} values are 16.16 fixed point */
2454 uint32_t src_x, uint32_t src_y,
2455 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002456{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002457 int ret = 0;
2458
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002459 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002460 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002461 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002462 ret = plane->funcs->disable_plane(plane);
2463 if (!ret) {
2464 plane->crtc = NULL;
2465 plane->fb = NULL;
2466 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002467 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002468 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002469 goto out;
2470 }
2471
Matt Roper7f994f32014-05-29 08:06:51 -07002472 /* Check whether this plane is usable on this CRTC */
2473 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2474 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2475 ret = -EINVAL;
2476 goto out;
2477 }
2478
Ville Syrjälä62443be2011-12-20 00:06:47 +02002479 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +02002480 ret = drm_plane_check_pixel_format(plane, fb->pixel_format);
2481 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002482 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2483 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002484 goto out;
2485 }
2486
Matt Roper3968be92015-04-13 11:06:13 -07002487 /* Give drivers some help against integer overflows */
2488 if (crtc_w > INT_MAX ||
2489 crtc_x > INT_MAX - (int32_t) crtc_w ||
2490 crtc_h > INT_MAX ||
2491 crtc_y > INT_MAX - (int32_t) crtc_h) {
2492 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2493 crtc_w, crtc_h, crtc_x, crtc_y);
Ville Syrjäläc390eed2015-10-15 20:39:58 +03002494 ret = -ERANGE;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002495 goto out;
2496 }
2497
Ville Syrjäläce8d9ec2015-10-15 20:40:00 +03002498 ret = check_src_coords(src_x, src_y, src_w, src_h, fb);
2499 if (ret)
Dave Airlief453ba02008-11-07 14:05:41 -08002500 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002501
Daniel Vetter3d30a592014-07-27 13:42:42 +02002502 plane->old_fb = plane->fb;
Dave Airlief453ba02008-11-07 14:05:41 -08002503 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002504 crtc_x, crtc_y, crtc_w, crtc_h,
2505 src_x, src_y, src_w, src_h);
Dave Airlief453ba02008-11-07 14:05:41 -08002506 if (!ret) {
2507 plane->crtc = crtc;
2508 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002509 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002510 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002511 plane->old_fb = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08002512 }
2513
2514out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002515 if (fb)
2516 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002517 if (plane->old_fb)
2518 drm_framebuffer_unreference(plane->old_fb);
2519 plane->old_fb = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08002520
2521 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002522}
Matt Roperb36552b2014-06-10 08:28:09 -07002523
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002524static int setplane_internal(struct drm_plane *plane,
2525 struct drm_crtc *crtc,
2526 struct drm_framebuffer *fb,
2527 int32_t crtc_x, int32_t crtc_y,
2528 uint32_t crtc_w, uint32_t crtc_h,
2529 /* src_{x,y,w,h} values are 16.16 fixed point */
2530 uint32_t src_x, uint32_t src_y,
2531 uint32_t src_w, uint32_t src_h)
2532{
2533 int ret;
2534
2535 drm_modeset_lock_all(plane->dev);
2536 ret = __setplane_internal(plane, crtc, fb,
2537 crtc_x, crtc_y, crtc_w, crtc_h,
2538 src_x, src_y, src_w, src_h);
2539 drm_modeset_unlock_all(plane->dev);
2540
2541 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002542}
2543
2544/**
2545 * drm_mode_setplane - configure a plane's configuration
2546 * @dev: DRM device
2547 * @data: ioctl data*
2548 * @file_priv: DRM file info
2549 *
2550 * Set plane configuration, including placement, fb, scaling, and other factors.
2551 * Or pass a NULL fb to disable (planes may be disabled without providing a
2552 * valid crtc).
2553 *
2554 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002555 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002556 */
2557int drm_mode_setplane(struct drm_device *dev, void *data,
2558 struct drm_file *file_priv)
2559{
2560 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002561 struct drm_plane *plane;
2562 struct drm_crtc *crtc = NULL;
2563 struct drm_framebuffer *fb = NULL;
2564
2565 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2566 return -EINVAL;
2567
Matt Roperb36552b2014-06-10 08:28:09 -07002568 /*
2569 * First, find the plane, crtc, and fb objects. If not available,
2570 * we don't bother to call the driver.
2571 */
Rob Clark933f6222014-11-25 20:33:11 -05002572 plane = drm_plane_find(dev, plane_req->plane_id);
2573 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002574 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2575 plane_req->plane_id);
2576 return -ENOENT;
2577 }
Matt Roperb36552b2014-06-10 08:28:09 -07002578
2579 if (plane_req->fb_id) {
2580 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2581 if (!fb) {
2582 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2583 plane_req->fb_id);
2584 return -ENOENT;
2585 }
2586
Rob Clark933f6222014-11-25 20:33:11 -05002587 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2588 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002589 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2590 plane_req->crtc_id);
2591 return -ENOENT;
2592 }
Matt Roperb36552b2014-06-10 08:28:09 -07002593 }
2594
Matt Roper161d0dc2014-06-10 08:28:10 -07002595 /*
2596 * setplane_internal will take care of deref'ing either the old or new
2597 * framebuffer depending on success.
2598 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002599 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002600 plane_req->crtc_x, plane_req->crtc_y,
2601 plane_req->crtc_w, plane_req->crtc_h,
2602 plane_req->src_x, plane_req->src_y,
2603 plane_req->src_w, plane_req->src_h);
Dave Airlief453ba02008-11-07 14:05:41 -08002604}
2605
2606/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002607 * drm_mode_set_config_internal - helper to call ->set_config
2608 * @set: modeset config to set
2609 *
2610 * This is a little helper to wrap internal calls to the ->set_config driver
2611 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +01002612 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002613 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002614 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002615 */
2616int drm_mode_set_config_internal(struct drm_mode_set *set)
2617{
2618 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002619 struct drm_framebuffer *fb;
2620 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002621 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002622
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002623 /*
2624 * NOTE: ->set_config can also disable other crtcs (if we steal all
2625 * connectors from it), hence we need to refcount the fbs across all
2626 * crtcs. Atomic modeset will have saner semantics ...
2627 */
Daniel Vettere4f62542015-07-09 23:44:35 +02002628 drm_for_each_crtc(tmp, crtc->dev)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002629 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002630
Daniel Vetterb0d12322012-12-11 01:07:12 +01002631 fb = set->fb;
2632
2633 ret = crtc->funcs->set_config(set);
2634 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002635 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002636 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002637 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002638
Daniel Vettere4f62542015-07-09 23:44:35 +02002639 drm_for_each_crtc(tmp, crtc->dev) {
Matt Roperf4510a22014-04-01 15:22:40 -07002640 if (tmp->primary->fb)
2641 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002642 if (tmp->primary->old_fb)
2643 drm_framebuffer_unreference(tmp->primary->old_fb);
2644 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002645 }
2646
2647 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002648}
2649EXPORT_SYMBOL(drm_mode_set_config_internal);
2650
Matt Roperaf936292014-04-01 15:22:34 -07002651/**
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002652 * drm_crtc_get_hv_timing - Fetches hdisplay/vdisplay for given mode
2653 * @mode: mode to query
2654 * @hdisplay: hdisplay value to fill in
2655 * @vdisplay: vdisplay value to fill in
2656 *
2657 * The vdisplay value will be doubled if the specified mode is a stereo mode of
2658 * the appropriate layout.
2659 */
2660void drm_crtc_get_hv_timing(const struct drm_display_mode *mode,
2661 int *hdisplay, int *vdisplay)
2662{
2663 struct drm_display_mode adjusted;
2664
2665 drm_mode_copy(&adjusted, mode);
2666 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY);
2667 *hdisplay = adjusted.crtc_hdisplay;
2668 *vdisplay = adjusted.crtc_vdisplay;
2669}
2670EXPORT_SYMBOL(drm_crtc_get_hv_timing);
2671
2672/**
Matt Roperaf936292014-04-01 15:22:34 -07002673 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2674 * CRTC viewport
2675 * @crtc: CRTC that framebuffer will be displayed on
2676 * @x: x panning
2677 * @y: y panning
2678 * @mode: mode that framebuffer will be displayed under
2679 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002680 */
Matt Roperaf936292014-04-01 15:22:34 -07002681int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2682 int x, int y,
2683 const struct drm_display_mode *mode,
2684 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002685
2686{
2687 int hdisplay, vdisplay;
2688
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002689 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002690
Ville Syrjälä33e0be62015-10-16 18:38:39 +03002691 if (crtc->state &&
2692 crtc->primary->state->rotation & (BIT(DRM_ROTATE_90) |
2693 BIT(DRM_ROTATE_270)))
Damien Lespiauc11e9282013-09-25 16:45:30 +01002694 swap(hdisplay, vdisplay);
2695
Ville Syrjäläce8d9ec2015-10-15 20:40:00 +03002696 return check_src_coords(x << 16, y << 16,
2697 hdisplay << 16, vdisplay << 16, fb);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002698}
Matt Roperaf936292014-04-01 15:22:34 -07002699EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002700
Daniel Vetter2d13b672012-12-11 13:47:23 +01002701/**
Dave Airlief453ba02008-11-07 14:05:41 -08002702 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002703 * @dev: drm device for the ioctl
2704 * @data: data pointer for the ioctl
2705 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002706 *
Dave Airlief453ba02008-11-07 14:05:41 -08002707 * Build a new CRTC configuration based on user request.
2708 *
2709 * Called by the user via ioctl.
2710 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002711 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002712 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002713 */
2714int drm_mode_setcrtc(struct drm_device *dev, void *data,
2715 struct drm_file *file_priv)
2716{
2717 struct drm_mode_config *config = &dev->mode_config;
2718 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002719 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002720 struct drm_connector **connector_set = NULL, *connector;
2721 struct drm_framebuffer *fb = NULL;
2722 struct drm_display_mode *mode = NULL;
2723 struct drm_mode_set set;
2724 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002725 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002726 int i;
2727
Dave Airliefb3b06c2011-02-08 13:55:21 +10002728 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2729 return -EINVAL;
2730
Zhao Junwang01447e92015-07-07 17:08:35 +08002731 /*
2732 * Universal plane src offsets are only 16.16, prevent havoc for
2733 * drivers using universal plane code internally.
2734 */
2735 if (crtc_req->x & 0xffff0000 || crtc_req->y & 0xffff0000)
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002736 return -ERANGE;
2737
Daniel Vetter84849902012-12-02 00:28:11 +01002738 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002739 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2740 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002741 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002742 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002743 goto out;
2744 }
Ville Syrjäläfa3ab4c2015-12-08 18:41:53 +02002745 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002746
2747 if (crtc_req->mode_valid) {
2748 /* If we have a mode we need a framebuffer. */
2749 /* If we pass -1, set the mode with the currently bound fb */
2750 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002751 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002752 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2753 ret = -EINVAL;
2754 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002755 }
Matt Roperf4510a22014-04-01 15:22:40 -07002756 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002757 /* Make refcounting symmetric with the lookup path. */
2758 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002759 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002760 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2761 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002762 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2763 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002764 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002765 goto out;
2766 }
Dave Airlief453ba02008-11-07 14:05:41 -08002767 }
2768
2769 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002770 if (!mode) {
2771 ret = -ENOMEM;
2772 goto out;
2773 }
2774
Daniel Stone934a8a82015-05-22 13:34:48 +01002775 ret = drm_mode_convert_umode(mode, &crtc_req->mode);
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002776 if (ret) {
2777 DRM_DEBUG_KMS("Invalid mode\n");
2778 goto out;
2779 }
2780
Dave Airlief453ba02008-11-07 14:05:41 -08002781 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002782
Laurent Pinchart7eb5f302015-03-09 10:41:07 +02002783 /*
2784 * Check whether the primary plane supports the fb pixel format.
2785 * Drivers not implementing the universal planes API use a
2786 * default formats list provided by the DRM core which doesn't
2787 * match real hardware capabilities. Skip the check in that
2788 * case.
2789 */
2790 if (!crtc->primary->format_default) {
2791 ret = drm_plane_check_pixel_format(crtc->primary,
2792 fb->pixel_format);
2793 if (ret) {
2794 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2795 drm_get_format_name(fb->pixel_format));
2796 goto out;
2797 }
2798 }
2799
Damien Lespiauc11e9282013-09-25 16:45:30 +01002800 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2801 mode, fb);
2802 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002803 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002804
Dave Airlief453ba02008-11-07 14:05:41 -08002805 }
2806
2807 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002808 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002809 ret = -EINVAL;
2810 goto out;
2811 }
2812
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002813 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002814 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002815 crtc_req->count_connectors);
2816 ret = -EINVAL;
2817 goto out;
2818 }
2819
2820 if (crtc_req->count_connectors > 0) {
2821 u32 out_id;
2822
2823 /* Avoid unbounded kernel memory allocation */
2824 if (crtc_req->count_connectors > config->num_connector) {
2825 ret = -EINVAL;
2826 goto out;
2827 }
2828
Thierry Reding2f6c5382014-12-10 13:03:36 +01002829 connector_set = kmalloc_array(crtc_req->count_connectors,
2830 sizeof(struct drm_connector *),
2831 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08002832 if (!connector_set) {
2833 ret = -ENOMEM;
2834 goto out;
2835 }
2836
2837 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002838 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002839 if (get_user(out_id, &set_connectors_ptr[i])) {
2840 ret = -EFAULT;
2841 goto out;
2842 }
2843
Rob Clarka2b34e22013-10-05 16:36:52 -04002844 connector = drm_connector_find(dev, out_id);
2845 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002846 DRM_DEBUG_KMS("Connector id %d unknown\n",
2847 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002848 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002849 goto out;
2850 }
Jerome Glisse94401062010-07-15 15:43:25 -04002851 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2852 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002853 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002854
2855 connector_set[i] = connector;
2856 }
2857 }
2858
2859 set.crtc = crtc;
2860 set.x = crtc_req->x;
2861 set.y = crtc_req->y;
2862 set.mode = mode;
2863 set.connectors = connector_set;
2864 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002865 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002866 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002867
2868out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002869 if (fb)
2870 drm_framebuffer_unreference(fb);
2871
Dave Airlief453ba02008-11-07 14:05:41 -08002872 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002873 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002874 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002875 return ret;
2876}
2877
Matt Roper161d0dc2014-06-10 08:28:10 -07002878/**
2879 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2880 * universal plane handler call
2881 * @crtc: crtc to update cursor for
2882 * @req: data pointer for the ioctl
2883 * @file_priv: drm file for the ioctl call
2884 *
2885 * Legacy cursor ioctl's work directly with driver buffer handles. To
2886 * translate legacy ioctl calls into universal plane handler calls, we need to
2887 * wrap the native buffer handle in a drm_framebuffer.
2888 *
2889 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2890 * buffer with a pitch of 4*width; the universal plane interface should be used
2891 * directly in cases where the hardware can support other buffer settings and
2892 * userspace wants to make use of these capabilities.
2893 *
2894 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002895 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002896 */
2897static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2898 struct drm_mode_cursor2 *req,
2899 struct drm_file *file_priv)
2900{
2901 struct drm_device *dev = crtc->dev;
2902 struct drm_framebuffer *fb = NULL;
2903 struct drm_mode_fb_cmd2 fbreq = {
2904 .width = req->width,
2905 .height = req->height,
2906 .pixel_format = DRM_FORMAT_ARGB8888,
2907 .pitches = { req->width * 4 },
2908 .handles = { req->handle },
2909 };
2910 int32_t crtc_x, crtc_y;
2911 uint32_t crtc_w = 0, crtc_h = 0;
2912 uint32_t src_w = 0, src_h = 0;
2913 int ret = 0;
2914
2915 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002916 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002917
2918 /*
2919 * Obtain fb we'll be using (either new or existing) and take an extra
2920 * reference to it if fb != null. setplane will take care of dropping
2921 * the reference if the plane update fails.
2922 */
2923 if (req->flags & DRM_MODE_CURSOR_BO) {
2924 if (req->handle) {
Chris Wilson9a6f5132015-02-25 13:45:26 +00002925 fb = internal_framebuffer_create(dev, &fbreq, file_priv);
Matt Roper161d0dc2014-06-10 08:28:10 -07002926 if (IS_ERR(fb)) {
2927 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2928 return PTR_ERR(fb);
2929 }
Matt Roper161d0dc2014-06-10 08:28:10 -07002930 } else {
2931 fb = NULL;
2932 }
2933 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002934 fb = crtc->cursor->fb;
2935 if (fb)
2936 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002937 }
2938
2939 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2940 crtc_x = req->x;
2941 crtc_y = req->y;
2942 } else {
2943 crtc_x = crtc->cursor_x;
2944 crtc_y = crtc->cursor_y;
2945 }
2946
2947 if (fb) {
2948 crtc_w = fb->width;
2949 crtc_h = fb->height;
2950 src_w = fb->width << 16;
2951 src_h = fb->height << 16;
2952 }
2953
2954 /*
2955 * setplane_internal will take care of deref'ing either the old or new
2956 * framebuffer depending on success.
2957 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002958 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002959 crtc_x, crtc_y, crtc_w, crtc_h,
2960 0, 0, src_w, src_h);
2961
2962 /* Update successful; save new cursor position, if necessary */
2963 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2964 crtc->cursor_x = req->x;
2965 crtc->cursor_y = req->y;
2966 }
2967
2968 return ret;
2969}
2970
Dave Airlie4c813d42013-06-20 11:48:52 +10002971static int drm_mode_cursor_common(struct drm_device *dev,
2972 struct drm_mode_cursor2 *req,
2973 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002974{
Dave Airlief453ba02008-11-07 14:05:41 -08002975 struct drm_crtc *crtc;
2976 int ret = 0;
2977
Dave Airliefb3b06c2011-02-08 13:55:21 +10002978 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2979 return -EINVAL;
2980
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002981 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002982 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002983
Rob Clarka2b34e22013-10-05 16:36:52 -04002984 crtc = drm_crtc_find(dev, req->crtc_id);
2985 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002986 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002987 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002988 }
Dave Airlief453ba02008-11-07 14:05:41 -08002989
Matt Roper161d0dc2014-06-10 08:28:10 -07002990 /*
2991 * If this crtc has a universal cursor plane, call that plane's update
2992 * handler rather than using legacy cursor handlers.
2993 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01002994 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002995 if (crtc->cursor) {
2996 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2997 goto out;
2998 }
2999
Dave Airlief453ba02008-11-07 14:05:41 -08003000 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10003001 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08003002 ret = -ENXIO;
3003 goto out;
3004 }
3005 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003006 if (crtc->funcs->cursor_set2)
3007 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
3008 req->width, req->height, req->hot_x, req->hot_y);
3009 else
3010 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
3011 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08003012 }
3013
3014 if (req->flags & DRM_MODE_CURSOR_MOVE) {
3015 if (crtc->funcs->cursor_move) {
3016 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
3017 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08003018 ret = -EFAULT;
3019 goto out;
3020 }
3021 }
3022out:
Daniel Vetterd059f652014-07-25 18:07:40 +02003023 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01003024
Dave Airlief453ba02008-11-07 14:05:41 -08003025 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10003026
3027}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003028
3029
3030/**
3031 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
3032 * @dev: drm device for the ioctl
3033 * @data: data pointer for the ioctl
3034 * @file_priv: drm file for the ioctl call
3035 *
3036 * Set the cursor configuration based on user request.
3037 *
3038 * Called by the user via ioctl.
3039 *
3040 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003041 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003042 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003043int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003044 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10003045{
3046 struct drm_mode_cursor *req = data;
3047 struct drm_mode_cursor2 new_req;
3048
3049 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
3050 new_req.hot_x = new_req.hot_y = 0;
3051
3052 return drm_mode_cursor_common(dev, &new_req, file_priv);
3053}
3054
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003055/**
3056 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
3057 * @dev: drm device for the ioctl
3058 * @data: data pointer for the ioctl
3059 * @file_priv: drm file for the ioctl call
3060 *
3061 * Set the cursor configuration based on user request. This implements the 2nd
3062 * version of the cursor ioctl, which allows userspace to additionally specify
3063 * the hotspot of the pointer.
3064 *
3065 * Called by the user via ioctl.
3066 *
3067 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003068 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003069 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003070int drm_mode_cursor2_ioctl(struct drm_device *dev,
3071 void *data, struct drm_file *file_priv)
3072{
3073 struct drm_mode_cursor2 *req = data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01003074
Dave Airlie4c813d42013-06-20 11:48:52 +10003075 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003076}
3077
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003078/**
3079 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
3080 * @bpp: bits per pixels
3081 * @depth: bit depth per pixel
3082 *
3083 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
3084 * Useful in fbdev emulation code, since that deals in those values.
3085 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003086uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
3087{
3088 uint32_t fmt;
3089
3090 switch (bpp) {
3091 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02003092 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003093 break;
3094 case 16:
3095 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003096 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003097 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003098 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003099 break;
3100 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003101 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003102 break;
3103 case 32:
3104 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003105 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003106 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003107 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003108 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003109 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003110 break;
3111 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003112 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3113 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003114 break;
3115 }
3116
3117 return fmt;
3118}
3119EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3120
Dave Airlief453ba02008-11-07 14:05:41 -08003121/**
3122 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003123 * @dev: drm device for the ioctl
3124 * @data: data pointer for the ioctl
3125 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003126 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003127 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003128 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003129 *
3130 * Called by the user via ioctl.
3131 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003132 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003133 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003134 */
3135int drm_mode_addfb(struct drm_device *dev,
3136 void *data, struct drm_file *file_priv)
3137{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003138 struct drm_mode_fb_cmd *or = data;
3139 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003140 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003141
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003142 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003143 r.fb_id = or->fb_id;
3144 r.width = or->width;
3145 r.height = or->height;
3146 r.pitches[0] = or->pitch;
3147 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3148 r.handles[0] = or->handle;
3149
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003150 ret = drm_mode_addfb2(dev, &r, file_priv);
3151 if (ret)
3152 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003153
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003154 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003155
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003156 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003157}
3158
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003159static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003160{
3161 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3162
3163 switch (format) {
3164 case DRM_FORMAT_C8:
3165 case DRM_FORMAT_RGB332:
3166 case DRM_FORMAT_BGR233:
3167 case DRM_FORMAT_XRGB4444:
3168 case DRM_FORMAT_XBGR4444:
3169 case DRM_FORMAT_RGBX4444:
3170 case DRM_FORMAT_BGRX4444:
3171 case DRM_FORMAT_ARGB4444:
3172 case DRM_FORMAT_ABGR4444:
3173 case DRM_FORMAT_RGBA4444:
3174 case DRM_FORMAT_BGRA4444:
3175 case DRM_FORMAT_XRGB1555:
3176 case DRM_FORMAT_XBGR1555:
3177 case DRM_FORMAT_RGBX5551:
3178 case DRM_FORMAT_BGRX5551:
3179 case DRM_FORMAT_ARGB1555:
3180 case DRM_FORMAT_ABGR1555:
3181 case DRM_FORMAT_RGBA5551:
3182 case DRM_FORMAT_BGRA5551:
3183 case DRM_FORMAT_RGB565:
3184 case DRM_FORMAT_BGR565:
3185 case DRM_FORMAT_RGB888:
3186 case DRM_FORMAT_BGR888:
3187 case DRM_FORMAT_XRGB8888:
3188 case DRM_FORMAT_XBGR8888:
3189 case DRM_FORMAT_RGBX8888:
3190 case DRM_FORMAT_BGRX8888:
3191 case DRM_FORMAT_ARGB8888:
3192 case DRM_FORMAT_ABGR8888:
3193 case DRM_FORMAT_RGBA8888:
3194 case DRM_FORMAT_BGRA8888:
3195 case DRM_FORMAT_XRGB2101010:
3196 case DRM_FORMAT_XBGR2101010:
3197 case DRM_FORMAT_RGBX1010102:
3198 case DRM_FORMAT_BGRX1010102:
3199 case DRM_FORMAT_ARGB2101010:
3200 case DRM_FORMAT_ABGR2101010:
3201 case DRM_FORMAT_RGBA1010102:
3202 case DRM_FORMAT_BGRA1010102:
3203 case DRM_FORMAT_YUYV:
3204 case DRM_FORMAT_YVYU:
3205 case DRM_FORMAT_UYVY:
3206 case DRM_FORMAT_VYUY:
3207 case DRM_FORMAT_AYUV:
3208 case DRM_FORMAT_NV12:
3209 case DRM_FORMAT_NV21:
3210 case DRM_FORMAT_NV16:
3211 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003212 case DRM_FORMAT_NV24:
3213 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003214 case DRM_FORMAT_YUV410:
3215 case DRM_FORMAT_YVU410:
3216 case DRM_FORMAT_YUV411:
3217 case DRM_FORMAT_YVU411:
3218 case DRM_FORMAT_YUV420:
3219 case DRM_FORMAT_YVU420:
3220 case DRM_FORMAT_YUV422:
3221 case DRM_FORMAT_YVU422:
3222 case DRM_FORMAT_YUV444:
3223 case DRM_FORMAT_YVU444:
3224 return 0;
3225 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003226 DRM_DEBUG_KMS("invalid pixel format %s\n",
3227 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003228 return -EINVAL;
3229 }
3230}
3231
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003232static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003233{
3234 int ret, hsub, vsub, num_planes, i;
3235
3236 ret = format_check(r);
3237 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003238 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3239 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003240 return ret;
3241 }
3242
3243 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3244 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3245 num_planes = drm_format_num_planes(r->pixel_format);
3246
3247 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003248 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003249 return -EINVAL;
3250 }
3251
3252 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003253 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003254 return -EINVAL;
3255 }
3256
3257 for (i = 0; i < num_planes; i++) {
3258 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003259 unsigned int height = r->height / (i != 0 ? vsub : 1);
3260 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003261
3262 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003263 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003264 return -EINVAL;
3265 }
3266
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003267 if ((uint64_t) width * cpp > UINT_MAX)
3268 return -ERANGE;
3269
3270 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3271 return -ERANGE;
3272
3273 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003274 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003275 return -EINVAL;
3276 }
Rob Clarke3eb3252015-02-05 14:41:52 +00003277
3278 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
3279 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
3280 r->modifier[i], i);
3281 return -EINVAL;
3282 }
Rob Clark570655b2015-01-30 20:18:11 +05303283
3284 /* modifier specific checks: */
3285 switch (r->modifier[i]) {
3286 case DRM_FORMAT_MOD_SAMSUNG_64_32_TILE:
3287 /* NOTE: the pitch restriction may be lifted later if it turns
3288 * out that no hw has this restriction:
3289 */
3290 if (r->pixel_format != DRM_FORMAT_NV12 ||
3291 width % 128 || height % 32 ||
3292 r->pitches[i] % 128) {
3293 DRM_DEBUG_KMS("bad modifier data for plane %d\n", i);
3294 return -EINVAL;
3295 }
3296 break;
3297
3298 default:
3299 break;
3300 }
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003301 }
3302
Daniel Vetterbbe16a42015-05-20 16:53:53 +02003303 for (i = num_planes; i < 4; i++) {
3304 if (r->modifier[i]) {
3305 DRM_DEBUG_KMS("non-zero modifier for unused plane %d\n", i);
3306 return -EINVAL;
3307 }
3308
3309 /* Pre-FB_MODIFIERS userspace didn't clear the structs properly. */
3310 if (!(r->flags & DRM_MODE_FB_MODIFIERS))
3311 continue;
3312
3313 if (r->handles[i]) {
3314 DRM_DEBUG_KMS("buffer object handle for unused plane %d\n", i);
3315 return -EINVAL;
3316 }
3317
3318 if (r->pitches[i]) {
3319 DRM_DEBUG_KMS("non-zero pitch for unused plane %d\n", i);
3320 return -EINVAL;
3321 }
3322
3323 if (r->offsets[i]) {
3324 DRM_DEBUG_KMS("non-zero offset for unused plane %d\n", i);
3325 return -EINVAL;
3326 }
3327 }
3328
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003329 return 0;
3330}
3331
Chris Wilson9a6f5132015-02-25 13:45:26 +00003332static struct drm_framebuffer *
3333internal_framebuffer_create(struct drm_device *dev,
Ville Syrjälä1eb83452015-11-11 19:11:29 +02003334 const struct drm_mode_fb_cmd2 *r,
Chris Wilson9a6f5132015-02-25 13:45:26 +00003335 struct drm_file *file_priv)
Matt Roperc394c2b2014-06-10 08:28:08 -07003336{
3337 struct drm_mode_config *config = &dev->mode_config;
3338 struct drm_framebuffer *fb;
3339 int ret;
3340
Rob Clarke3eb3252015-02-05 14:41:52 +00003341 if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
Matt Roperc394c2b2014-06-10 08:28:08 -07003342 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3343 return ERR_PTR(-EINVAL);
3344 }
3345
3346 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3347 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3348 r->width, config->min_width, config->max_width);
3349 return ERR_PTR(-EINVAL);
3350 }
3351 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3352 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3353 r->height, config->min_height, config->max_height);
3354 return ERR_PTR(-EINVAL);
3355 }
3356
Rob Clarke3eb3252015-02-05 14:41:52 +00003357 if (r->flags & DRM_MODE_FB_MODIFIERS &&
3358 !dev->mode_config.allow_fb_modifiers) {
3359 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
3360 return ERR_PTR(-EINVAL);
3361 }
3362
Matt Roperc394c2b2014-06-10 08:28:08 -07003363 ret = framebuffer_check(r);
3364 if (ret)
3365 return ERR_PTR(ret);
3366
3367 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3368 if (IS_ERR(fb)) {
3369 DRM_DEBUG_KMS("could not create framebuffer\n");
3370 return fb;
3371 }
3372
Matt Roperc394c2b2014-06-10 08:28:08 -07003373 return fb;
3374}
3375
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003376/**
3377 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003378 * @dev: drm device for the ioctl
3379 * @data: data pointer for the ioctl
3380 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003381 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003382 * Add a new FB to the specified CRTC, given a user request with format. This is
3383 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3384 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003385 *
3386 * Called by the user via ioctl.
3387 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003388 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003389 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003390 */
3391int drm_mode_addfb2(struct drm_device *dev,
3392 void *data, struct drm_file *file_priv)
3393{
Chris Wilson9a6f5132015-02-25 13:45:26 +00003394 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003395 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003396
Dave Airliefb3b06c2011-02-08 13:55:21 +10003397 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3398 return -EINVAL;
3399
Chris Wilson9a6f5132015-02-25 13:45:26 +00003400 fb = internal_framebuffer_create(dev, r, file_priv);
Matt Roperc394c2b2014-06-10 08:28:08 -07003401 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003402 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003403
Chris Wilson9a6f5132015-02-25 13:45:26 +00003404 /* Transfer ownership to the filp for reaping on close */
3405
3406 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3407 mutex_lock(&file_priv->fbs_lock);
3408 r->fb_id = fb->base.id;
3409 list_add(&fb->filp_head, &file_priv->fbs);
3410 mutex_unlock(&file_priv->fbs_lock);
3411
Matt Roperc394c2b2014-06-10 08:28:08 -07003412 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003413}
3414
3415/**
3416 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003417 * @dev: drm device for the ioctl
3418 * @data: data pointer for the ioctl
3419 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003420 *
Dave Airlief453ba02008-11-07 14:05:41 -08003421 * Remove the FB specified by the user.
3422 *
3423 * Called by the user via ioctl.
3424 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003425 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003426 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003427 */
3428int drm_mode_rmfb(struct drm_device *dev,
3429 void *data, struct drm_file *file_priv)
3430{
Dave Airlief453ba02008-11-07 14:05:41 -08003431 struct drm_framebuffer *fb = NULL;
3432 struct drm_framebuffer *fbl = NULL;
3433 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003434 int found = 0;
3435
Dave Airliefb3b06c2011-02-08 13:55:21 +10003436 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3437 return -EINVAL;
3438
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003439 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003440 mutex_lock(&dev->mode_config.fb_lock);
3441 fb = __drm_framebuffer_lookup(dev, *id);
3442 if (!fb)
3443 goto fail_lookup;
3444
Dave Airlief453ba02008-11-07 14:05:41 -08003445 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3446 if (fb == fbl)
3447 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003448 if (!found)
3449 goto fail_lookup;
3450
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003451 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003452 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003453 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003454
Maarten Lankhorst13803132015-09-09 16:40:56 +02003455 drm_framebuffer_unreference(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003456
Daniel Vetter2b677e82012-12-10 21:16:05 +01003457 return 0;
3458
3459fail_lookup:
3460 mutex_unlock(&dev->mode_config.fb_lock);
3461 mutex_unlock(&file_priv->fbs_lock);
3462
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003463 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003464}
3465
3466/**
3467 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003468 * @dev: drm device for the ioctl
3469 * @data: data pointer for the ioctl
3470 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003471 *
Dave Airlief453ba02008-11-07 14:05:41 -08003472 * Lookup the FB given its ID and return info about it.
3473 *
3474 * Called by the user via ioctl.
3475 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003476 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003477 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003478 */
3479int drm_mode_getfb(struct drm_device *dev,
3480 void *data, struct drm_file *file_priv)
3481{
3482 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003483 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003484 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003485
Dave Airliefb3b06c2011-02-08 13:55:21 +10003486 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3487 return -EINVAL;
3488
Daniel Vetter786b99e2012-12-02 21:53:40 +01003489 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003490 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003491 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003492
3493 r->height = fb->height;
3494 r->width = fb->width;
3495 r->depth = fb->depth;
3496 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003497 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003498 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003499 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003500 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003501 ret = fb->funcs->create_handle(fb, file_priv,
3502 &r->handle);
3503 } else {
3504 /* GET_FB() is an unprivileged ioctl so we must not
3505 * return a buffer-handle to non-master processes! For
3506 * backwards-compatibility reasons, we cannot make
3507 * GET_FB() privileged, so just return an invalid handle
3508 * for non-masters. */
3509 r->handle = 0;
3510 ret = 0;
3511 }
3512 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003513 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003514 }
Dave Airlief453ba02008-11-07 14:05:41 -08003515
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003516 drm_framebuffer_unreference(fb);
3517
Dave Airlief453ba02008-11-07 14:05:41 -08003518 return ret;
3519}
3520
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003521/**
3522 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3523 * @dev: drm device for the ioctl
3524 * @data: data pointer for the ioctl
3525 * @file_priv: drm file for the ioctl call
3526 *
3527 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3528 * rectangle list. Generic userspace which does frontbuffer rendering must call
3529 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3530 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3531 *
3532 * Modesetting drivers which always update the frontbuffer do not need to
3533 * implement the corresponding ->dirty framebuffer callback.
3534 *
3535 * Called by the user via ioctl.
3536 *
3537 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003538 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003539 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003540int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3541 void *data, struct drm_file *file_priv)
3542{
3543 struct drm_clip_rect __user *clips_ptr;
3544 struct drm_clip_rect *clips = NULL;
3545 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003546 struct drm_framebuffer *fb;
3547 unsigned flags;
3548 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003549 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003550
Dave Airliefb3b06c2011-02-08 13:55:21 +10003551 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3552 return -EINVAL;
3553
Daniel Vetter786b99e2012-12-02 21:53:40 +01003554 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003555 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003556 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003557
3558 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003559 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003560
3561 if (!num_clips != !clips_ptr) {
3562 ret = -EINVAL;
3563 goto out_err1;
3564 }
3565
3566 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3567
3568 /* If userspace annotates copy, clips must come in pairs */
3569 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3570 ret = -EINVAL;
3571 goto out_err1;
3572 }
3573
3574 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003575 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3576 ret = -EINVAL;
3577 goto out_err1;
3578 }
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003579 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003580 if (!clips) {
3581 ret = -ENOMEM;
3582 goto out_err1;
3583 }
3584
3585 ret = copy_from_user(clips, clips_ptr,
3586 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003587 if (ret) {
3588 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003589 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003590 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003591 }
3592
3593 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003594 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3595 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003596 } else {
3597 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003598 }
3599
3600out_err2:
3601 kfree(clips);
3602out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003603 drm_framebuffer_unreference(fb);
3604
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003605 return ret;
3606}
3607
3608
Dave Airlief453ba02008-11-07 14:05:41 -08003609/**
3610 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003611 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003612 *
Dave Airlief453ba02008-11-07 14:05:41 -08003613 * Destroy all the FBs associated with @filp.
3614 *
3615 * Called by the user via ioctl.
3616 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003617 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003618 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003619 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003620void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003621{
Dave Airlief453ba02008-11-07 14:05:41 -08003622 struct drm_framebuffer *fb, *tfb;
3623
Daniel Vetter1b116292014-09-24 21:51:06 +02003624 /*
3625 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003626 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003627 * avoid upsetting lockdep since the universal cursor code adds a
3628 * framebuffer while holding mutex locks.
3629 *
3630 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3631 * locks is impossible here since no one else but this function can get
3632 * at it any more.
3633 */
Dave Airlief453ba02008-11-07 14:05:41 -08003634 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003635 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003636
Maarten Lankhorst73f75702015-09-09 16:40:57 +02003637 /* This drops the fpriv->fbs reference. */
Maarten Lankhorst13803132015-09-09 16:40:56 +02003638 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003639 }
Dave Airlief453ba02008-11-07 14:05:41 -08003640}
3641
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003642/**
3643 * drm_property_create - create a new property type
3644 * @dev: drm device
3645 * @flags: flags specifying the property type
3646 * @name: name of the property
3647 * @num_values: number of pre-defined values
3648 *
3649 * This creates a new generic drm property which can then be attached to a drm
3650 * object with drm_object_attach_property. The returned property object must be
3651 * freed with drm_property_destroy.
3652 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003653 * Note that the DRM core keeps a per-device list of properties and that, if
3654 * drm_mode_config_cleanup() is called, it will destroy all properties created
3655 * by the driver.
3656 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003657 * Returns:
3658 * A pointer to the newly created property on success, NULL on failure.
3659 */
Dave Airlief453ba02008-11-07 14:05:41 -08003660struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3661 const char *name, int num_values)
3662{
3663 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003664 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003665
3666 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3667 if (!property)
3668 return NULL;
3669
Rob Clark98f75de2014-05-30 11:37:03 -04003670 property->dev = dev;
3671
Dave Airlief453ba02008-11-07 14:05:41 -08003672 if (num_values) {
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003673 property->values = kcalloc(num_values, sizeof(uint64_t),
3674 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08003675 if (!property->values)
3676 goto fail;
3677 }
3678
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003679 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3680 if (ret)
3681 goto fail;
3682
Dave Airlief453ba02008-11-07 14:05:41 -08003683 property->flags = flags;
3684 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003685 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003686
Vinson Lee471dd2e2011-11-10 11:55:40 -08003687 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003688 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003689 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3690 }
Dave Airlief453ba02008-11-07 14:05:41 -08003691
3692 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003693
3694 WARN_ON(!drm_property_type_valid(property));
3695
Dave Airlief453ba02008-11-07 14:05:41 -08003696 return property;
3697fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003698 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003699 kfree(property);
3700 return NULL;
3701}
3702EXPORT_SYMBOL(drm_property_create);
3703
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003704/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003705 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003706 * @dev: drm device
3707 * @flags: flags specifying the property type
3708 * @name: name of the property
3709 * @props: enumeration lists with property values
3710 * @num_values: number of pre-defined values
3711 *
3712 * This creates a new generic drm property which can then be attached to a drm
3713 * object with drm_object_attach_property. The returned property object must be
3714 * freed with drm_property_destroy.
3715 *
3716 * Userspace is only allowed to set one of the predefined values for enumeration
3717 * properties.
3718 *
3719 * Returns:
3720 * A pointer to the newly created property on success, NULL on failure.
3721 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003722struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3723 const char *name,
3724 const struct drm_prop_enum_list *props,
3725 int num_values)
3726{
3727 struct drm_property *property;
3728 int i, ret;
3729
3730 flags |= DRM_MODE_PROP_ENUM;
3731
3732 property = drm_property_create(dev, flags, name, num_values);
3733 if (!property)
3734 return NULL;
3735
3736 for (i = 0; i < num_values; i++) {
3737 ret = drm_property_add_enum(property, i,
3738 props[i].type,
3739 props[i].name);
3740 if (ret) {
3741 drm_property_destroy(dev, property);
3742 return NULL;
3743 }
3744 }
3745
3746 return property;
3747}
3748EXPORT_SYMBOL(drm_property_create_enum);
3749
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003750/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003751 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003752 * @dev: drm device
3753 * @flags: flags specifying the property type
3754 * @name: name of the property
3755 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003756 * @num_props: size of the @props array
3757 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003758 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003759 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003760 * object with drm_object_attach_property. The returned property object must be
3761 * freed with drm_property_destroy.
3762 *
3763 * Compared to plain enumeration properties userspace is allowed to set any
3764 * or'ed together combination of the predefined property bitflag values
3765 *
3766 * Returns:
3767 * A pointer to the newly created property on success, NULL on failure.
3768 */
Rob Clark49e27542012-05-17 02:23:26 -06003769struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3770 int flags, const char *name,
3771 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303772 int num_props,
3773 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003774{
3775 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303776 int i, ret, index = 0;
3777 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003778
3779 flags |= DRM_MODE_PROP_BITMASK;
3780
3781 property = drm_property_create(dev, flags, name, num_values);
3782 if (!property)
3783 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303784 for (i = 0; i < num_props; i++) {
3785 if (!(supported_bits & (1ULL << props[i].type)))
3786 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003787
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303788 if (WARN_ON(index >= num_values)) {
3789 drm_property_destroy(dev, property);
3790 return NULL;
3791 }
3792
3793 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003794 props[i].type,
3795 props[i].name);
3796 if (ret) {
3797 drm_property_destroy(dev, property);
3798 return NULL;
3799 }
3800 }
3801
3802 return property;
3803}
3804EXPORT_SYMBOL(drm_property_create_bitmask);
3805
Rob Clarkebc44cf2012-09-12 22:22:31 -05003806static struct drm_property *property_create_range(struct drm_device *dev,
3807 int flags, const char *name,
3808 uint64_t min, uint64_t max)
3809{
3810 struct drm_property *property;
3811
3812 property = drm_property_create(dev, flags, name, 2);
3813 if (!property)
3814 return NULL;
3815
3816 property->values[0] = min;
3817 property->values[1] = max;
3818
3819 return property;
3820}
3821
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003822/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003823 * drm_property_create_range - create a new unsigned ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003824 * @dev: drm device
3825 * @flags: flags specifying the property type
3826 * @name: name of the property
3827 * @min: minimum value of the property
3828 * @max: maximum value of the property
3829 *
3830 * This creates a new generic drm property which can then be attached to a drm
3831 * object with drm_object_attach_property. The returned property object must be
3832 * freed with drm_property_destroy.
3833 *
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003834 * Userspace is allowed to set any unsigned integer value in the (min, max)
3835 * range inclusive.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003836 *
3837 * Returns:
3838 * A pointer to the newly created property on success, NULL on failure.
3839 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003840struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3841 const char *name,
3842 uint64_t min, uint64_t max)
3843{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003844 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3845 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003846}
3847EXPORT_SYMBOL(drm_property_create_range);
3848
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003849/**
3850 * drm_property_create_signed_range - create a new signed ranged property type
3851 * @dev: drm device
3852 * @flags: flags specifying the property type
3853 * @name: name of the property
3854 * @min: minimum value of the property
3855 * @max: maximum value of the property
3856 *
3857 * This creates a new generic drm property which can then be attached to a drm
3858 * object with drm_object_attach_property. The returned property object must be
3859 * freed with drm_property_destroy.
3860 *
3861 * Userspace is allowed to set any signed integer value in the (min, max)
3862 * range inclusive.
3863 *
3864 * Returns:
3865 * A pointer to the newly created property on success, NULL on failure.
3866 */
Rob Clarkebc44cf2012-09-12 22:22:31 -05003867struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3868 int flags, const char *name,
3869 int64_t min, int64_t max)
3870{
3871 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3872 name, I642U64(min), I642U64(max));
3873}
3874EXPORT_SYMBOL(drm_property_create_signed_range);
3875
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003876/**
3877 * drm_property_create_object - create a new object property type
3878 * @dev: drm device
3879 * @flags: flags specifying the property type
3880 * @name: name of the property
3881 * @type: object type from DRM_MODE_OBJECT_* defines
3882 *
3883 * This creates a new generic drm property which can then be attached to a drm
3884 * object with drm_object_attach_property. The returned property object must be
3885 * freed with drm_property_destroy.
3886 *
3887 * Userspace is only allowed to set this to any property value of the given
3888 * @type. Only useful for atomic properties, which is enforced.
3889 *
3890 * Returns:
3891 * A pointer to the newly created property on success, NULL on failure.
3892 */
Rob Clark98f75de2014-05-30 11:37:03 -04003893struct drm_property *drm_property_create_object(struct drm_device *dev,
3894 int flags, const char *name, uint32_t type)
3895{
3896 struct drm_property *property;
3897
3898 flags |= DRM_MODE_PROP_OBJECT;
3899
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003900 if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
3901 return NULL;
3902
Rob Clark98f75de2014-05-30 11:37:03 -04003903 property = drm_property_create(dev, flags, name, 1);
3904 if (!property)
3905 return NULL;
3906
3907 property->values[0] = type;
3908
3909 return property;
3910}
3911EXPORT_SYMBOL(drm_property_create_object);
3912
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003913/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003914 * drm_property_create_bool - create a new boolean property type
3915 * @dev: drm device
3916 * @flags: flags specifying the property type
3917 * @name: name of the property
3918 *
3919 * This creates a new generic drm property which can then be attached to a drm
3920 * object with drm_object_attach_property. The returned property object must be
3921 * freed with drm_property_destroy.
3922 *
3923 * This is implemented as a ranged property with only {0, 1} as valid values.
3924 *
3925 * Returns:
3926 * A pointer to the newly created property on success, NULL on failure.
3927 */
3928struct drm_property *drm_property_create_bool(struct drm_device *dev, int flags,
3929 const char *name)
3930{
3931 return drm_property_create_range(dev, flags, name, 0, 1);
3932}
3933EXPORT_SYMBOL(drm_property_create_bool);
3934
3935/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003936 * drm_property_add_enum - add a possible value to an enumeration property
3937 * @property: enumeration property to change
3938 * @index: index of the new enumeration
3939 * @value: value of the new enumeration
3940 * @name: symbolic name of the new enumeration
3941 *
3942 * This functions adds enumerations to a property.
3943 *
3944 * It's use is deprecated, drivers should use one of the more specific helpers
3945 * to directly create the property with all enumerations already attached.
3946 *
3947 * Returns:
3948 * Zero on success, error code on failure.
3949 */
Dave Airlief453ba02008-11-07 14:05:41 -08003950int drm_property_add_enum(struct drm_property *property, int index,
3951 uint64_t value, const char *name)
3952{
3953 struct drm_property_enum *prop_enum;
3954
Rob Clark5ea22f22014-05-30 11:34:01 -04003955 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3956 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003957 return -EINVAL;
3958
3959 /*
3960 * Bitmask enum properties have the additional constraint of values
3961 * from 0 to 63
3962 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003963 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3964 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003965 return -EINVAL;
3966
Daniel Vetter3758b342014-11-19 18:38:10 +01003967 if (!list_empty(&property->enum_list)) {
3968 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003969 if (prop_enum->value == value) {
3970 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3971 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3972 return 0;
3973 }
3974 }
3975 }
3976
3977 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3978 if (!prop_enum)
3979 return -ENOMEM;
3980
3981 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3982 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3983 prop_enum->value = value;
3984
3985 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003986 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003987 return 0;
3988}
3989EXPORT_SYMBOL(drm_property_add_enum);
3990
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003991/**
3992 * drm_property_destroy - destroy a drm property
3993 * @dev: drm device
3994 * @property: property to destry
3995 *
3996 * This function frees a property including any attached resources like
3997 * enumeration values.
3998 */
Dave Airlief453ba02008-11-07 14:05:41 -08003999void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
4000{
4001 struct drm_property_enum *prop_enum, *pt;
4002
Daniel Vetter3758b342014-11-19 18:38:10 +01004003 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004004 list_del(&prop_enum->head);
4005 kfree(prop_enum);
4006 }
4007
4008 if (property->num_values)
4009 kfree(property->values);
4010 drm_mode_object_put(dev, &property->base);
4011 list_del(&property->head);
4012 kfree(property);
4013}
4014EXPORT_SYMBOL(drm_property_destroy);
4015
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004016/**
4017 * drm_object_attach_property - attach a property to a modeset object
4018 * @obj: drm modeset object
4019 * @property: property to attach
4020 * @init_val: initial value of the property
4021 *
4022 * This attaches the given property to the modeset object with the given initial
4023 * value. Currently this function cannot fail since the properties are stored in
4024 * a statically sized array.
4025 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004026void drm_object_attach_property(struct drm_mode_object *obj,
4027 struct drm_property *property,
4028 uint64_t init_val)
4029{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004030 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03004031
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004032 if (count == DRM_OBJECT_MAX_PROPERTY) {
4033 WARN(1, "Failed to attach object property (type: 0x%x). Please "
4034 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
4035 "you see this message on the same object type.\n",
4036 obj->type);
4037 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03004038 }
4039
Rob Clarkb17cd752014-12-16 18:05:30 -05004040 obj->properties->properties[count] = property;
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004041 obj->properties->values[count] = init_val;
4042 obj->properties->count++;
Rob Clark88a48e22014-12-18 16:01:50 -05004043 if (property->flags & DRM_MODE_PROP_ATOMIC)
4044 obj->properties->atomic_count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03004045}
4046EXPORT_SYMBOL(drm_object_attach_property);
4047
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004048/**
4049 * drm_object_property_set_value - set the value of a property
4050 * @obj: drm mode object to set property value for
4051 * @property: property to set
4052 * @val: value the property should be set to
4053 *
4054 * This functions sets a given property on a given object. This function only
4055 * changes the software state of the property, it does not call into the
4056 * driver's ->set_property callback.
4057 *
4058 * Returns:
4059 * Zero on success, error code on failure.
4060 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004061int drm_object_property_set_value(struct drm_mode_object *obj,
4062 struct drm_property *property, uint64_t val)
4063{
4064 int i;
4065
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004066 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004067 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004068 obj->properties->values[i] = val;
4069 return 0;
4070 }
4071 }
4072
4073 return -EINVAL;
4074}
4075EXPORT_SYMBOL(drm_object_property_set_value);
4076
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004077/**
4078 * drm_object_property_get_value - retrieve the value of a property
4079 * @obj: drm mode object to get property value from
4080 * @property: property to retrieve
4081 * @val: storage for the property value
4082 *
4083 * This function retrieves the softare state of the given property for the given
4084 * property. Since there is no driver callback to retrieve the current property
4085 * value this might be out of sync with the hardware, depending upon the driver
4086 * and property.
4087 *
4088 * Returns:
4089 * Zero on success, error code on failure.
4090 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004091int drm_object_property_get_value(struct drm_mode_object *obj,
4092 struct drm_property *property, uint64_t *val)
4093{
4094 int i;
4095
Rob Clark88a48e22014-12-18 16:01:50 -05004096 /* read-only properties bypass atomic mechanism and still store
4097 * their value in obj->properties->values[].. mostly to avoid
4098 * having to deal w/ EDID and similar props in atomic paths:
4099 */
4100 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
4101 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
4102 return drm_atomic_get_property(obj, property, val);
4103
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004104 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004105 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004106 *val = obj->properties->values[i];
4107 return 0;
4108 }
4109 }
4110
4111 return -EINVAL;
4112}
4113EXPORT_SYMBOL(drm_object_property_get_value);
4114
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004115/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004116 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004117 * @dev: DRM device
4118 * @data: ioctl data
4119 * @file_priv: DRM file info
4120 *
Daniel Vetter1a498632014-11-19 18:38:09 +01004121 * This function retrieves the metadata for a given property, like the different
4122 * possible values for an enum property or the limits for a range property.
4123 *
4124 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004125 *
4126 * Called by the user via ioctl.
4127 *
4128 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004129 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004130 */
Dave Airlief453ba02008-11-07 14:05:41 -08004131int drm_mode_getproperty_ioctl(struct drm_device *dev,
4132 void *data, struct drm_file *file_priv)
4133{
Dave Airlief453ba02008-11-07 14:05:41 -08004134 struct drm_mode_get_property *out_resp = data;
4135 struct drm_property *property;
4136 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004137 int value_count = 0;
4138 int ret = 0, i;
4139 int copied;
4140 struct drm_property_enum *prop_enum;
4141 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004142 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004143
Dave Airliefb3b06c2011-02-08 13:55:21 +10004144 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4145 return -EINVAL;
4146
Daniel Vetter84849902012-12-02 00:28:11 +01004147 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004148 property = drm_property_find(dev, out_resp->prop_id);
4149 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004150 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004151 goto done;
4152 }
Dave Airlief453ba02008-11-07 14:05:41 -08004153
Rob Clark5ea22f22014-05-30 11:34:01 -04004154 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4155 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01004156 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08004157 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08004158 }
4159
4160 value_count = property->num_values;
4161
4162 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4163 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4164 out_resp->flags = property->flags;
4165
4166 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004167 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004168 for (i = 0; i < value_count; i++) {
4169 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4170 ret = -EFAULT;
4171 goto done;
4172 }
4173 }
4174 }
4175 out_resp->count_values = value_count;
4176
Rob Clark5ea22f22014-05-30 11:34:01 -04004177 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4178 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004179 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4180 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004181 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01004182 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004183
4184 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4185 ret = -EFAULT;
4186 goto done;
4187 }
4188
4189 if (copy_to_user(&enum_ptr[copied].name,
4190 &prop_enum->name, DRM_PROP_NAME_LEN)) {
4191 ret = -EFAULT;
4192 goto done;
4193 }
4194 copied++;
4195 }
4196 }
4197 out_resp->count_enum_blobs = enum_count;
4198 }
4199
Daniel Vetter3758b342014-11-19 18:38:10 +01004200 /*
4201 * NOTE: The idea seems to have been to use this to read all the blob
4202 * property values. But nothing ever added them to the corresponding
4203 * list, userspace always used the special-purpose get_blob ioctl to
4204 * read the value for a blob property. It also doesn't make a lot of
4205 * sense to return values here when everything else is just metadata for
4206 * the property itself.
4207 */
4208 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4209 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004210done:
Daniel Vetter84849902012-12-02 00:28:11 +01004211 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004212 return ret;
4213}
4214
Daniel Stone99531d92015-05-22 13:34:49 +01004215/**
4216 * drm_property_create_blob - Create new blob property
4217 *
4218 * Creates a new blob property for a specified DRM device, optionally
4219 * copying data.
4220 *
4221 * @dev: DRM device to create property for
4222 * @length: Length to allocate for blob data
4223 * @data: If specified, copies data into blob
Daniel Stone10e8cb72015-05-22 13:34:50 +01004224 *
4225 * Returns:
4226 * New blob property with a single reference on success, or an ERR_PTR
4227 * value on failure.
Daniel Stone99531d92015-05-22 13:34:49 +01004228 */
Daniel Stone6bcacf52015-04-20 19:22:55 +01004229struct drm_property_blob *
Thierry Redingecbbe592014-05-13 11:36:13 +02004230drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004231 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08004232{
4233 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004234 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004235
Dan Carpenter9ac09342015-10-29 16:37:54 +03004236 if (!length || length > ULONG_MAX - sizeof(struct drm_property_blob))
Daniel Stone10e8cb72015-05-22 13:34:50 +01004237 return ERR_PTR(-EINVAL);
Dave Airlief453ba02008-11-07 14:05:41 -08004238
4239 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4240 if (!blob)
Daniel Stone10e8cb72015-05-22 13:34:50 +01004241 return ERR_PTR(-ENOMEM);
Dave Airlief453ba02008-11-07 14:05:41 -08004242
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004243 /* This must be explicitly initialised, so we can safely call list_del
4244 * on it in the removal handler, even if it isn't in a file list. */
4245 INIT_LIST_HEAD(&blob->head_file);
Dave Airlief453ba02008-11-07 14:05:41 -08004246 blob->length = length;
Daniel Stone6bcacf52015-04-20 19:22:55 +01004247 blob->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08004248
Daniel Stone99531d92015-05-22 13:34:49 +01004249 if (data)
4250 memcpy(blob->data, data, length);
Dave Airlief453ba02008-11-07 14:05:41 -08004251
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004252 mutex_lock(&dev->mode_config.blob_lock);
4253
4254 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4255 if (ret) {
4256 kfree(blob);
4257 mutex_unlock(&dev->mode_config.blob_lock);
Daniel Stone10e8cb72015-05-22 13:34:50 +01004258 return ERR_PTR(-EINVAL);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004259 }
4260
Daniel Stone6bcacf52015-04-20 19:22:55 +01004261 kref_init(&blob->refcount);
4262
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004263 list_add_tail(&blob->head_global,
4264 &dev->mode_config.property_blob_list);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004265
4266 mutex_unlock(&dev->mode_config.blob_lock);
4267
Dave Airlief453ba02008-11-07 14:05:41 -08004268 return blob;
4269}
Daniel Stone6bcacf52015-04-20 19:22:55 +01004270EXPORT_SYMBOL(drm_property_create_blob);
Dave Airlief453ba02008-11-07 14:05:41 -08004271
Daniel Stone6bcacf52015-04-20 19:22:55 +01004272/**
4273 * drm_property_free_blob - Blob property destructor
4274 *
4275 * Internal free function for blob properties; must not be used directly.
4276 *
Daniel Stonef102c162015-05-22 13:34:44 +01004277 * @kref: Reference
Daniel Stone6bcacf52015-04-20 19:22:55 +01004278 */
4279static void drm_property_free_blob(struct kref *kref)
Dave Airlief453ba02008-11-07 14:05:41 -08004280{
Daniel Stone6bcacf52015-04-20 19:22:55 +01004281 struct drm_property_blob *blob =
4282 container_of(kref, struct drm_property_blob, refcount);
4283
4284 WARN_ON(!mutex_is_locked(&blob->dev->mode_config.blob_lock));
4285
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004286 list_del(&blob->head_global);
4287 list_del(&blob->head_file);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004288 drm_mode_object_put(blob->dev, &blob->base);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004289
Dave Airlief453ba02008-11-07 14:05:41 -08004290 kfree(blob);
4291}
4292
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004293/**
Daniel Stone6bcacf52015-04-20 19:22:55 +01004294 * drm_property_unreference_blob - Unreference a blob property
4295 *
4296 * Drop a reference on a blob property. May free the object.
4297 *
Daniel Stonef102c162015-05-22 13:34:44 +01004298 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004299 */
4300void drm_property_unreference_blob(struct drm_property_blob *blob)
4301{
4302 struct drm_device *dev;
4303
4304 if (!blob)
4305 return;
4306
4307 dev = blob->dev;
4308
4309 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4310
4311 if (kref_put_mutex(&blob->refcount, drm_property_free_blob,
4312 &dev->mode_config.blob_lock))
4313 mutex_unlock(&dev->mode_config.blob_lock);
4314 else
4315 might_lock(&dev->mode_config.blob_lock);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004316}
4317EXPORT_SYMBOL(drm_property_unreference_blob);
4318
4319/**
4320 * drm_property_unreference_blob_locked - Unreference a blob property with blob_lock held
4321 *
4322 * Drop a reference on a blob property. May free the object. This must be
4323 * called with blob_lock held.
4324 *
Daniel Stonef102c162015-05-22 13:34:44 +01004325 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004326 */
4327static void drm_property_unreference_blob_locked(struct drm_property_blob *blob)
4328{
4329 if (!blob)
4330 return;
4331
4332 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4333
4334 kref_put(&blob->refcount, drm_property_free_blob);
4335}
4336
4337/**
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004338 * drm_property_destroy_user_blobs - destroy all blobs created by this client
4339 * @dev: DRM device
4340 * @file_priv: destroy all blobs owned by this file handle
4341 */
4342void drm_property_destroy_user_blobs(struct drm_device *dev,
4343 struct drm_file *file_priv)
4344{
4345 struct drm_property_blob *blob, *bt;
4346
4347 mutex_lock(&dev->mode_config.blob_lock);
4348
4349 list_for_each_entry_safe(blob, bt, &file_priv->blobs, head_file) {
4350 list_del_init(&blob->head_file);
4351 drm_property_unreference_blob_locked(blob);
4352 }
4353
4354 mutex_unlock(&dev->mode_config.blob_lock);
4355}
4356
4357/**
Daniel Stone6bcacf52015-04-20 19:22:55 +01004358 * drm_property_reference_blob - Take a reference on an existing property
4359 *
4360 * Take a new reference on an existing blob property.
4361 *
Daniel Stonef102c162015-05-22 13:34:44 +01004362 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004363 */
4364struct drm_property_blob *drm_property_reference_blob(struct drm_property_blob *blob)
4365{
4366 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4367 kref_get(&blob->refcount);
4368 return blob;
4369}
4370EXPORT_SYMBOL(drm_property_reference_blob);
4371
4372/*
4373 * Like drm_property_lookup_blob, but does not return an additional reference.
4374 * Must be called with blob_lock held.
4375 */
4376static struct drm_property_blob *__drm_property_lookup_blob(struct drm_device *dev,
4377 uint32_t id)
4378{
4379 struct drm_mode_object *obj = NULL;
4380 struct drm_property_blob *blob;
4381
4382 WARN_ON(!mutex_is_locked(&dev->mode_config.blob_lock));
4383
4384 mutex_lock(&dev->mode_config.idr_mutex);
4385 obj = idr_find(&dev->mode_config.crtc_idr, id);
4386 if (!obj || (obj->type != DRM_MODE_OBJECT_BLOB) || (obj->id != id))
4387 blob = NULL;
4388 else
4389 blob = obj_to_blob(obj);
4390 mutex_unlock(&dev->mode_config.idr_mutex);
4391
Dave Airlief453ba02008-11-07 14:05:41 -08004392 return blob;
4393}
4394
Daniel Stone6bcacf52015-04-20 19:22:55 +01004395/**
4396 * drm_property_lookup_blob - look up a blob property and take a reference
4397 * @dev: drm device
4398 * @id: id of the blob property
4399 *
4400 * If successful, this takes an additional reference to the blob property.
4401 * callers need to make sure to eventually unreference the returned property
4402 * again, using @drm_property_unreference_blob.
4403 */
4404struct drm_property_blob *drm_property_lookup_blob(struct drm_device *dev,
4405 uint32_t id)
Dave Airlief453ba02008-11-07 14:05:41 -08004406{
Daniel Stone6bcacf52015-04-20 19:22:55 +01004407 struct drm_property_blob *blob;
4408
4409 mutex_lock(&dev->mode_config.blob_lock);
4410 blob = __drm_property_lookup_blob(dev, id);
4411 if (blob) {
4412 if (!kref_get_unless_zero(&blob->refcount))
4413 blob = NULL;
4414 }
4415 mutex_unlock(&dev->mode_config.blob_lock);
4416
4417 return blob;
4418}
4419EXPORT_SYMBOL(drm_property_lookup_blob);
4420
4421/**
Daniel Stoned2ed3432015-04-20 19:22:53 +01004422 * drm_property_replace_global_blob - atomically replace existing blob property
4423 * @dev: drm device
4424 * @replace: location of blob property pointer to be replaced
4425 * @length: length of data for new blob, or 0 for no data
4426 * @data: content for new blob, or NULL for no data
4427 * @obj_holds_id: optional object for property holding blob ID
4428 * @prop_holds_id: optional property holding blob ID
4429 * @return 0 on success or error on failure
4430 *
4431 * This function will atomically replace a global property in the blob list,
4432 * optionally updating a property which holds the ID of that property. It is
4433 * guaranteed to be atomic: no caller will be allowed to see intermediate
4434 * results, and either the entire operation will succeed and clean up the
4435 * previous property, or it will fail and the state will be unchanged.
4436 *
4437 * If length is 0 or data is NULL, no new blob will be created, and the holding
4438 * property, if specified, will be set to 0.
4439 *
4440 * Access to the replace pointer is assumed to be protected by the caller, e.g.
4441 * by holding the relevant modesetting object lock for its parent.
4442 *
4443 * For example, a drm_connector has a 'PATH' property, which contains the ID
4444 * of a blob property with the value of the MST path information. Calling this
4445 * function with replace pointing to the connector's path_blob_ptr, length and
4446 * data set for the new path information, obj_holds_id set to the connector's
4447 * base object, and prop_holds_id set to the path property name, will perform
4448 * a completely atomic update. The access to path_blob_ptr is protected by the
4449 * caller holding a lock on the connector.
4450 */
4451static int drm_property_replace_global_blob(struct drm_device *dev,
4452 struct drm_property_blob **replace,
4453 size_t length,
4454 const void *data,
4455 struct drm_mode_object *obj_holds_id,
4456 struct drm_property *prop_holds_id)
4457{
4458 struct drm_property_blob *new_blob = NULL;
4459 struct drm_property_blob *old_blob = NULL;
4460 int ret;
4461
4462 WARN_ON(replace == NULL);
4463
4464 old_blob = *replace;
4465
4466 if (length && data) {
4467 new_blob = drm_property_create_blob(dev, length, data);
Daniel Stone10e8cb72015-05-22 13:34:50 +01004468 if (IS_ERR(new_blob))
4469 return PTR_ERR(new_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004470 }
4471
4472 /* This does not need to be synchronised with blob_lock, as the
4473 * get_properties ioctl locks all modesetting objects, and
4474 * obj_holds_id must be locked before calling here, so we cannot
4475 * have its value out of sync with the list membership modified
4476 * below under blob_lock. */
4477 if (obj_holds_id) {
4478 ret = drm_object_property_set_value(obj_holds_id,
4479 prop_holds_id,
4480 new_blob ?
4481 new_blob->base.id : 0);
4482 if (ret != 0)
4483 goto err_created;
4484 }
4485
Markus Elfringec530822015-07-05 21:55:10 +02004486 drm_property_unreference_blob(old_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004487 *replace = new_blob;
4488
4489 return 0;
4490
4491err_created:
Daniel Stone6bcacf52015-04-20 19:22:55 +01004492 drm_property_unreference_blob(new_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004493 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004494}
4495
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004496/**
4497 * drm_mode_getblob_ioctl - get the contents of a blob property value
4498 * @dev: DRM device
4499 * @data: ioctl data
4500 * @file_priv: DRM file info
4501 *
4502 * This function retrieves the contents of a blob property. The value stored in
4503 * an object's blob property is just a normal modeset object id.
4504 *
4505 * Called by the user via ioctl.
4506 *
4507 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004508 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004509 */
Dave Airlief453ba02008-11-07 14:05:41 -08004510int drm_mode_getblob_ioctl(struct drm_device *dev,
4511 void *data, struct drm_file *file_priv)
4512{
Dave Airlief453ba02008-11-07 14:05:41 -08004513 struct drm_mode_get_blob *out_resp = data;
4514 struct drm_property_blob *blob;
4515 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004516 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004517
Dave Airliefb3b06c2011-02-08 13:55:21 +10004518 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4519 return -EINVAL;
4520
Daniel Vetter84849902012-12-02 00:28:11 +01004521 drm_modeset_lock_all(dev);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004522 mutex_lock(&dev->mode_config.blob_lock);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004523 blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
Rob Clarka2b34e22013-10-05 16:36:52 -04004524 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004525 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004526 goto done;
4527 }
Dave Airlief453ba02008-11-07 14:05:41 -08004528
4529 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004530 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004531 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004532 ret = -EFAULT;
4533 goto done;
4534 }
4535 }
4536 out_resp->length = blob->length;
4537
4538done:
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004539 mutex_unlock(&dev->mode_config.blob_lock);
Daniel Vetter84849902012-12-02 00:28:11 +01004540 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004541 return ret;
4542}
4543
Dave Airliecc7096f2014-10-22 12:03:04 +10004544/**
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004545 * drm_mode_createblob_ioctl - create a new blob property
4546 * @dev: DRM device
4547 * @data: ioctl data
4548 * @file_priv: DRM file info
4549 *
4550 * This function creates a new blob property with user-defined values. In order
4551 * to give us sensible validation and checking when creating, rather than at
4552 * every potential use, we also require a type to be provided upfront.
4553 *
4554 * Called by the user via ioctl.
4555 *
4556 * Returns:
4557 * Zero on success, negative errno on failure.
4558 */
4559int drm_mode_createblob_ioctl(struct drm_device *dev,
4560 void *data, struct drm_file *file_priv)
4561{
4562 struct drm_mode_create_blob *out_resp = data;
4563 struct drm_property_blob *blob;
4564 void __user *blob_ptr;
4565 int ret = 0;
4566
4567 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4568 return -EINVAL;
4569
4570 blob = drm_property_create_blob(dev, out_resp->length, NULL);
4571 if (IS_ERR(blob))
4572 return PTR_ERR(blob);
4573
4574 blob_ptr = (void __user *)(unsigned long)out_resp->data;
4575 if (copy_from_user(blob->data, blob_ptr, out_resp->length)) {
4576 ret = -EFAULT;
4577 goto out_blob;
4578 }
4579
4580 /* Dropping the lock between create_blob and our access here is safe
4581 * as only the same file_priv can remove the blob; at this point, it is
4582 * not associated with any file_priv. */
4583 mutex_lock(&dev->mode_config.blob_lock);
4584 out_resp->blob_id = blob->base.id;
Maneet Singh8731b262015-10-08 10:10:24 -04004585 list_add_tail(&blob->head_file, &file_priv->blobs);
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004586 mutex_unlock(&dev->mode_config.blob_lock);
4587
4588 return 0;
4589
4590out_blob:
4591 drm_property_unreference_blob(blob);
4592 return ret;
4593}
4594
4595/**
4596 * drm_mode_destroyblob_ioctl - destroy a user blob property
4597 * @dev: DRM device
4598 * @data: ioctl data
4599 * @file_priv: DRM file info
4600 *
4601 * Destroy an existing user-defined blob property.
4602 *
4603 * Called by the user via ioctl.
4604 *
4605 * Returns:
4606 * Zero on success, negative errno on failure.
4607 */
4608int drm_mode_destroyblob_ioctl(struct drm_device *dev,
4609 void *data, struct drm_file *file_priv)
4610{
4611 struct drm_mode_destroy_blob *out_resp = data;
4612 struct drm_property_blob *blob = NULL, *bt;
4613 bool found = false;
4614 int ret = 0;
4615
4616 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4617 return -EINVAL;
4618
4619 mutex_lock(&dev->mode_config.blob_lock);
4620 blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
4621 if (!blob) {
4622 ret = -ENOENT;
4623 goto err;
4624 }
4625
4626 /* Ensure the property was actually created by this user. */
4627 list_for_each_entry(bt, &file_priv->blobs, head_file) {
4628 if (bt == blob) {
4629 found = true;
4630 break;
4631 }
4632 }
4633
4634 if (!found) {
4635 ret = -EPERM;
4636 goto err;
4637 }
4638
4639 /* We must drop head_file here, because we may not be the last
4640 * reference on the blob. */
4641 list_del_init(&blob->head_file);
4642 drm_property_unreference_blob_locked(blob);
4643 mutex_unlock(&dev->mode_config.blob_lock);
4644
4645 return 0;
4646
4647err:
4648 mutex_unlock(&dev->mode_config.blob_lock);
4649 return ret;
4650}
4651
4652/**
Dave Airliecc7096f2014-10-22 12:03:04 +10004653 * drm_mode_connector_set_path_property - set tile property on connector
4654 * @connector: connector to set property on.
Daniel Stoned2ed3432015-04-20 19:22:53 +01004655 * @path: path to use for property; must not be NULL.
Dave Airliecc7096f2014-10-22 12:03:04 +10004656 *
4657 * This creates a property to expose to userspace to specify a
4658 * connector path. This is mainly used for DisplayPort MST where
4659 * connectors have a topology and we want to allow userspace to give
4660 * them more meaningful names.
4661 *
4662 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004663 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004664 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004665int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004666 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004667{
4668 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004669 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004670
Daniel Stoned2ed3432015-04-20 19:22:53 +01004671 ret = drm_property_replace_global_blob(dev,
4672 &connector->path_blob_ptr,
4673 strlen(path) + 1,
4674 path,
4675 &connector->base,
4676 dev->mode_config.path_property);
Dave Airlie43aba7e2014-06-05 14:01:31 +10004677 return ret;
4678}
4679EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4680
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004681/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004682 * drm_mode_connector_set_tile_property - set tile property on connector
4683 * @connector: connector to set property on.
4684 *
4685 * This looks up the tile information for a connector, and creates a
4686 * property for userspace to parse if it exists. The property is of
4687 * the form of 8 integers using ':' as a separator.
4688 *
4689 * Returns:
4690 * Zero on success, errno on failure.
4691 */
4692int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4693{
4694 struct drm_device *dev = connector->dev;
Dave Airlie6f134d72014-10-20 16:30:50 +10004695 char tile[256];
Daniel Stoned2ed3432015-04-20 19:22:53 +01004696 int ret;
Dave Airlie6f134d72014-10-20 16:30:50 +10004697
4698 if (!connector->has_tile) {
Daniel Stoned2ed3432015-04-20 19:22:53 +01004699 ret = drm_property_replace_global_blob(dev,
4700 &connector->tile_blob_ptr,
4701 0,
4702 NULL,
4703 &connector->base,
4704 dev->mode_config.tile_property);
Dave Airlie6f134d72014-10-20 16:30:50 +10004705 return ret;
4706 }
4707
4708 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4709 connector->tile_group->id, connector->tile_is_single_monitor,
4710 connector->num_h_tile, connector->num_v_tile,
4711 connector->tile_h_loc, connector->tile_v_loc,
4712 connector->tile_h_size, connector->tile_v_size);
Dave Airlie6f134d72014-10-20 16:30:50 +10004713
Daniel Stoned2ed3432015-04-20 19:22:53 +01004714 ret = drm_property_replace_global_blob(dev,
4715 &connector->tile_blob_ptr,
4716 strlen(tile) + 1,
4717 tile,
4718 &connector->base,
4719 dev->mode_config.tile_property);
Dave Airlie6f134d72014-10-20 16:30:50 +10004720 return ret;
4721}
4722EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4723
4724/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004725 * drm_mode_connector_update_edid_property - update the edid property of a connector
4726 * @connector: drm connector
4727 * @edid: new value of the edid property
4728 *
4729 * This function creates a new blob modeset object and assigns its id to the
4730 * connector's edid property.
4731 *
4732 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004733 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004734 */
Dave Airlief453ba02008-11-07 14:05:41 -08004735int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004736 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004737{
4738 struct drm_device *dev = connector->dev;
Daniel Stoned2ed3432015-04-20 19:22:53 +01004739 size_t size = 0;
Thierry Redingecbbe592014-05-13 11:36:13 +02004740 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004741
Thomas Wood4cf2b282014-06-18 17:52:33 +01004742 /* ignore requests to set edid when overridden */
4743 if (connector->override_edid)
4744 return 0;
4745
Daniel Stoned2ed3432015-04-20 19:22:53 +01004746 if (edid)
Shixin Zenge24ff462015-07-03 08:46:50 +02004747 size = EDID_LENGTH * (1 + edid->extensions);
Dave Airlief453ba02008-11-07 14:05:41 -08004748
Daniel Stoned2ed3432015-04-20 19:22:53 +01004749 ret = drm_property_replace_global_blob(dev,
4750 &connector->edid_blob_ptr,
4751 size,
4752 edid,
4753 &connector->base,
4754 dev->mode_config.edid_property);
Dave Airlief453ba02008-11-07 14:05:41 -08004755 return ret;
4756}
4757EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4758
Rob Clark3843e712014-12-16 18:05:29 -05004759/* Some properties could refer to dynamic refcnt'd objects, or things that
4760 * need special locking to handle lifetime issues (ie. to ensure the prop
4761 * value doesn't become invalid part way through the property update due to
4762 * race). The value returned by reference via 'obj' should be passed back
4763 * to drm_property_change_valid_put() after the property is set (and the
4764 * object to which the property is attached has a chance to take it's own
4765 * reference).
4766 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05004767bool drm_property_change_valid_get(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004768 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004769{
Thierry Reding2ca651d2014-12-10 13:03:39 +01004770 int i;
4771
Paulo Zanoni26a34812012-05-15 18:08:59 -03004772 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4773 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004774
Rob Clark3843e712014-12-16 18:05:29 -05004775 *ref = NULL;
4776
Rob Clark5ea22f22014-05-30 11:34:01 -04004777 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004778 if (value < property->values[0] || value > property->values[1])
4779 return false;
4780 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004781 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4782 int64_t svalue = U642I64(value);
Thierry Reding4dfd9092014-12-10 13:03:34 +01004783
Rob Clarkebc44cf2012-09-12 22:22:31 -05004784 if (svalue < U642I64(property->values[0]) ||
4785 svalue > U642I64(property->values[1]))
4786 return false;
4787 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004788 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004789 uint64_t valid_mask = 0;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004790
Rob Clark49e27542012-05-17 02:23:26 -06004791 for (i = 0; i < property->num_values; i++)
4792 valid_mask |= (1ULL << property->values[i]);
4793 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004794 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Daniel Stone6bcacf52015-04-20 19:22:55 +01004795 struct drm_property_blob *blob;
4796
4797 if (value == 0)
4798 return true;
4799
4800 blob = drm_property_lookup_blob(property->dev, value);
4801 if (blob) {
4802 *ref = &blob->base;
4803 return true;
4804 } else {
4805 return false;
4806 }
Rob Clark98f75de2014-05-30 11:37:03 -04004807 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004808 /* a zero value for an object property translates to null: */
4809 if (value == 0)
4810 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004811
4812 /* handle refcnt'd objects specially: */
4813 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4814 struct drm_framebuffer *fb;
4815 fb = drm_framebuffer_lookup(property->dev, value);
4816 if (fb) {
4817 *ref = &fb->base;
4818 return true;
4819 } else {
4820 return false;
4821 }
4822 } else {
4823 return _object_find(property->dev, value, property->values[0]) != NULL;
4824 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004825 }
Thierry Reding2ca651d2014-12-10 13:03:39 +01004826
4827 for (i = 0; i < property->num_values; i++)
4828 if (property->values[i] == value)
4829 return true;
4830 return false;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004831}
4832
Rob Clarkd34f20d2014-12-18 16:01:56 -05004833void drm_property_change_valid_put(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004834 struct drm_mode_object *ref)
4835{
4836 if (!ref)
4837 return;
4838
4839 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4840 if (property->values[0] == DRM_MODE_OBJECT_FB)
4841 drm_framebuffer_unreference(obj_to_fb(ref));
Daniel Stoneda9b2a32015-05-25 19:11:49 +01004842 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4843 drm_property_unreference_blob(obj_to_blob(ref));
Rob Clark3843e712014-12-16 18:05:29 -05004844}
4845
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004846/**
4847 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4848 * @dev: DRM device
4849 * @data: ioctl data
4850 * @file_priv: DRM file info
4851 *
4852 * This function sets the current value for a connectors's property. It also
4853 * calls into a driver's ->set_property callback to update the hardware state
4854 *
4855 * Called by the user via ioctl.
4856 *
4857 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004858 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004859 */
Dave Airlief453ba02008-11-07 14:05:41 -08004860int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4861 void *data, struct drm_file *file_priv)
4862{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004863 struct drm_mode_connector_set_property *conn_set_prop = data;
4864 struct drm_mode_obj_set_property obj_set_prop = {
4865 .value = conn_set_prop->value,
4866 .prop_id = conn_set_prop->prop_id,
4867 .obj_id = conn_set_prop->connector_id,
4868 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4869 };
Dave Airlief453ba02008-11-07 14:05:41 -08004870
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004871 /* It does all the locking and checking we need */
4872 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004873}
4874
Paulo Zanonic5431882012-05-15 18:09:02 -03004875static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4876 struct drm_property *property,
4877 uint64_t value)
4878{
4879 int ret = -EINVAL;
4880 struct drm_connector *connector = obj_to_connector(obj);
4881
4882 /* Do DPMS ourselves */
4883 if (property == connector->dev->mode_config.dpms_property) {
Daniel Vetter3558c112015-12-04 09:45:59 +01004884 ret = (*connector->funcs->dpms)(connector, (int)value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004885 } else if (connector->funcs->set_property)
4886 ret = connector->funcs->set_property(connector, property, value);
4887
4888 /* store the property value if successful */
4889 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004890 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004891 return ret;
4892}
4893
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004894static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4895 struct drm_property *property,
4896 uint64_t value)
4897{
4898 int ret = -EINVAL;
4899 struct drm_crtc *crtc = obj_to_crtc(obj);
4900
4901 if (crtc->funcs->set_property)
4902 ret = crtc->funcs->set_property(crtc, property, value);
4903 if (!ret)
4904 drm_object_property_set_value(obj, property, value);
4905
4906 return ret;
4907}
4908
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004909/**
4910 * drm_mode_plane_set_obj_prop - set the value of a property
4911 * @plane: drm plane object to set property value for
4912 * @property: property to set
4913 * @value: value the property should be set to
4914 *
4915 * This functions sets a given property on a given plane object. This function
4916 * calls the driver's ->set_property callback and changes the software state of
4917 * the property if the callback succeeds.
4918 *
4919 * Returns:
4920 * Zero on success, error code on failure.
4921 */
4922int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4923 struct drm_property *property,
4924 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004925{
4926 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004927 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004928
4929 if (plane->funcs->set_property)
4930 ret = plane->funcs->set_property(plane, property, value);
4931 if (!ret)
4932 drm_object_property_set_value(obj, property, value);
4933
4934 return ret;
4935}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004936EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004937
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004938/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004939 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004940 * @dev: DRM device
4941 * @data: ioctl data
4942 * @file_priv: DRM file info
4943 *
4944 * This function retrieves the current value for an object's property. Compared
4945 * to the connector specific ioctl this one is extended to also work on crtc and
4946 * plane objects.
4947 *
4948 * Called by the user via ioctl.
4949 *
4950 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004951 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004952 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004953int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4954 struct drm_file *file_priv)
4955{
4956 struct drm_mode_obj_get_properties *arg = data;
4957 struct drm_mode_object *obj;
4958 int ret = 0;
Paulo Zanonic5431882012-05-15 18:09:02 -03004959
4960 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4961 return -EINVAL;
4962
Daniel Vetter84849902012-12-02 00:28:11 +01004963 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004964
4965 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4966 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004967 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004968 goto out;
4969 }
4970 if (!obj->properties) {
4971 ret = -EINVAL;
4972 goto out;
4973 }
4974
Rob Clark88a48e22014-12-18 16:01:50 -05004975 ret = get_properties(obj, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05004976 (uint32_t __user *)(unsigned long)(arg->props_ptr),
4977 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
4978 &arg->count_props);
Paulo Zanonic5431882012-05-15 18:09:02 -03004979
Paulo Zanonic5431882012-05-15 18:09:02 -03004980out:
Daniel Vetter84849902012-12-02 00:28:11 +01004981 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004982 return ret;
4983}
4984
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004985/**
4986 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4987 * @dev: DRM device
4988 * @data: ioctl data
4989 * @file_priv: DRM file info
4990 *
4991 * This function sets the current value for an object's property. It also calls
4992 * into a driver's ->set_property callback to update the hardware state.
4993 * Compared to the connector specific ioctl this one is extended to also work on
4994 * crtc and plane objects.
4995 *
4996 * Called by the user via ioctl.
4997 *
4998 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004999 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005000 */
Paulo Zanonic5431882012-05-15 18:09:02 -03005001int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
5002 struct drm_file *file_priv)
5003{
5004 struct drm_mode_obj_set_property *arg = data;
5005 struct drm_mode_object *arg_obj;
5006 struct drm_mode_object *prop_obj;
5007 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05005008 int i, ret = -EINVAL;
5009 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03005010
5011 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5012 return -EINVAL;
5013
Daniel Vetter84849902012-12-02 00:28:11 +01005014 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03005015
5016 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005017 if (!arg_obj) {
5018 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03005019 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005020 }
Paulo Zanonic5431882012-05-15 18:09:02 -03005021 if (!arg_obj->properties)
5022 goto out;
5023
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03005024 for (i = 0; i < arg_obj->properties->count; i++)
Rob Clarkb17cd752014-12-16 18:05:30 -05005025 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
Paulo Zanonic5431882012-05-15 18:09:02 -03005026 break;
5027
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03005028 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03005029 goto out;
5030
5031 prop_obj = drm_mode_object_find(dev, arg->prop_id,
5032 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005033 if (!prop_obj) {
5034 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03005035 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005036 }
Paulo Zanonic5431882012-05-15 18:09:02 -03005037 property = obj_to_property(prop_obj);
5038
Rob Clark3843e712014-12-16 18:05:29 -05005039 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03005040 goto out;
5041
5042 switch (arg_obj->type) {
5043 case DRM_MODE_OBJECT_CONNECTOR:
5044 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
5045 arg->value);
5046 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03005047 case DRM_MODE_OBJECT_CRTC:
5048 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
5049 break;
Rob Clark4d939142012-05-17 02:23:27 -06005050 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01005051 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
5052 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06005053 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03005054 }
5055
Rob Clark3843e712014-12-16 18:05:29 -05005056 drm_property_change_valid_put(property, ref);
5057
Paulo Zanonic5431882012-05-15 18:09:02 -03005058out:
Daniel Vetter84849902012-12-02 00:28:11 +01005059 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03005060 return ret;
5061}
5062
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005063/**
5064 * drm_mode_connector_attach_encoder - attach a connector to an encoder
5065 * @connector: connector to attach
5066 * @encoder: encoder to attach @connector to
5067 *
5068 * This function links up a connector to an encoder. Note that the routing
5069 * restrictions between encoders and crtcs are exposed to userspace through the
5070 * possible_clones and possible_crtcs bitmasks.
5071 *
5072 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005073 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005074 */
Dave Airlief453ba02008-11-07 14:05:41 -08005075int drm_mode_connector_attach_encoder(struct drm_connector *connector,
5076 struct drm_encoder *encoder)
5077{
5078 int i;
5079
Thierry Redingeb47fe82015-11-16 18:19:53 +01005080 /*
5081 * In the past, drivers have attempted to model the static association
5082 * of connector to encoder in simple connector/encoder devices using a
5083 * direct assignment of connector->encoder = encoder. This connection
5084 * is a logical one and the responsibility of the core, so drivers are
5085 * expected not to mess with this.
5086 *
5087 * Note that the error return should've been enough here, but a large
5088 * majority of drivers ignores the return value, so add in a big WARN
5089 * to get people's attention.
5090 */
5091 if (WARN_ON(connector->encoder))
5092 return -EINVAL;
5093
Dave Airlief453ba02008-11-07 14:05:41 -08005094 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
5095 if (connector->encoder_ids[i] == 0) {
5096 connector->encoder_ids[i] = encoder->base.id;
5097 return 0;
5098 }
5099 }
5100 return -ENOMEM;
5101}
5102EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
5103
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005104/**
5105 * drm_mode_crtc_set_gamma_size - set the gamma table size
5106 * @crtc: CRTC to set the gamma table size for
5107 * @gamma_size: size of the gamma table
5108 *
5109 * Drivers which support gamma tables should set this to the supported gamma
5110 * table size when initializing the CRTC. Currently the drm core only supports a
5111 * fixed gamma table size.
5112 *
5113 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005114 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005115 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01005116int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005117 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08005118{
5119 crtc->gamma_size = gamma_size;
5120
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01005121 crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
5122 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08005123 if (!crtc->gamma_store) {
5124 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01005125 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08005126 }
5127
Sascha Hauer4cae5b82012-02-01 11:38:23 +01005128 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08005129}
5130EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
5131
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005132/**
5133 * drm_mode_gamma_set_ioctl - set the gamma table
5134 * @dev: DRM device
5135 * @data: ioctl data
5136 * @file_priv: DRM file info
5137 *
5138 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
5139 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
5140 *
5141 * Called by the user via ioctl.
5142 *
5143 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005144 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005145 */
Dave Airlief453ba02008-11-07 14:05:41 -08005146int drm_mode_gamma_set_ioctl(struct drm_device *dev,
5147 void *data, struct drm_file *file_priv)
5148{
5149 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08005150 struct drm_crtc *crtc;
5151 void *r_base, *g_base, *b_base;
5152 int size;
5153 int ret = 0;
5154
Dave Airliefb3b06c2011-02-08 13:55:21 +10005155 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5156 return -EINVAL;
5157
Daniel Vetter84849902012-12-02 00:28:11 +01005158 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04005159 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5160 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005161 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08005162 goto out;
5163 }
Dave Airlief453ba02008-11-07 14:05:41 -08005164
Laurent Pinchartebe0f242012-05-17 13:27:24 +02005165 if (crtc->funcs->gamma_set == NULL) {
5166 ret = -ENOSYS;
5167 goto out;
5168 }
5169
Dave Airlief453ba02008-11-07 14:05:41 -08005170 /* memcpy into gamma store */
5171 if (crtc_lut->gamma_size != crtc->gamma_size) {
5172 ret = -EINVAL;
5173 goto out;
5174 }
5175
5176 size = crtc_lut->gamma_size * (sizeof(uint16_t));
5177 r_base = crtc->gamma_store;
5178 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
5179 ret = -EFAULT;
5180 goto out;
5181 }
5182
5183 g_base = r_base + size;
5184 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
5185 ret = -EFAULT;
5186 goto out;
5187 }
5188
5189 b_base = g_base + size;
5190 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
5191 ret = -EFAULT;
5192 goto out;
5193 }
5194
James Simmons72034252010-08-03 01:33:19 +01005195 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08005196
5197out:
Daniel Vetter84849902012-12-02 00:28:11 +01005198 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08005199 return ret;
5200
5201}
5202
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005203/**
5204 * drm_mode_gamma_get_ioctl - get the gamma table
5205 * @dev: DRM device
5206 * @data: ioctl data
5207 * @file_priv: DRM file info
5208 *
5209 * Copy the current gamma table into the storage provided. This also provides
5210 * the gamma table size the driver expects, which can be used to size the
5211 * allocated storage.
5212 *
5213 * Called by the user via ioctl.
5214 *
5215 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005216 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005217 */
Dave Airlief453ba02008-11-07 14:05:41 -08005218int drm_mode_gamma_get_ioctl(struct drm_device *dev,
5219 void *data, struct drm_file *file_priv)
5220{
5221 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08005222 struct drm_crtc *crtc;
5223 void *r_base, *g_base, *b_base;
5224 int size;
5225 int ret = 0;
5226
Dave Airliefb3b06c2011-02-08 13:55:21 +10005227 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5228 return -EINVAL;
5229
Daniel Vetter84849902012-12-02 00:28:11 +01005230 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04005231 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5232 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005233 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08005234 goto out;
5235 }
Dave Airlief453ba02008-11-07 14:05:41 -08005236
5237 /* memcpy into gamma store */
5238 if (crtc_lut->gamma_size != crtc->gamma_size) {
5239 ret = -EINVAL;
5240 goto out;
5241 }
5242
5243 size = crtc_lut->gamma_size * (sizeof(uint16_t));
5244 r_base = crtc->gamma_store;
5245 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
5246 ret = -EFAULT;
5247 goto out;
5248 }
5249
5250 g_base = r_base + size;
5251 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
5252 ret = -EFAULT;
5253 goto out;
5254 }
5255
5256 b_base = g_base + size;
5257 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
5258 ret = -EFAULT;
5259 goto out;
5260 }
5261out:
Daniel Vetter84849902012-12-02 00:28:11 +01005262 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08005263 return ret;
5264}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005265
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005266/**
5267 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
5268 * @dev: DRM device
5269 * @data: ioctl data
5270 * @file_priv: DRM file info
5271 *
5272 * This schedules an asynchronous update on a given CRTC, called page flip.
5273 * Optionally a drm event is generated to signal the completion of the event.
5274 * Generic drivers cannot assume that a pageflip with changed framebuffer
5275 * properties (including driver specific metadata like tiling layout) will work,
5276 * but some drivers support e.g. pixel format changes through the pageflip
5277 * ioctl.
5278 *
5279 * Called by the user via ioctl.
5280 *
5281 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005282 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005283 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005284int drm_mode_page_flip_ioctl(struct drm_device *dev,
5285 void *data, struct drm_file *file_priv)
5286{
5287 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005288 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02005289 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005290 struct drm_pending_vblank_event *e = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005291 int ret = -EINVAL;
5292
5293 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
5294 page_flip->reserved != 0)
5295 return -EINVAL;
5296
Keith Packard62f21042013-07-22 18:50:00 -07005297 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
5298 return -EINVAL;
5299
Rob Clarka2b34e22013-10-05 16:36:52 -04005300 crtc = drm_crtc_find(dev, page_flip->crtc_id);
5301 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005302 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005303
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01005304 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07005305 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01005306 /* The framebuffer is currently unbound, presumably
5307 * due to a hotplug event, that userspace has not
5308 * yet discovered.
5309 */
5310 ret = -EBUSY;
5311 goto out;
5312 }
5313
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005314 if (crtc->funcs->page_flip == NULL)
5315 goto out;
5316
Daniel Vetter786b99e2012-12-02 21:53:40 +01005317 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03005318 if (!fb) {
5319 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005320 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03005321 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005322
Ville Syrjälä2afa701d2015-10-15 20:40:02 +03005323 if (crtc->state) {
5324 const struct drm_plane_state *state = crtc->primary->state;
5325
5326 ret = check_src_coords(state->src_x, state->src_y,
5327 state->src_w, state->src_h, fb);
5328 } else {
5329 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
5330 }
Damien Lespiauc11e9282013-09-25 16:45:30 +01005331 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02005332 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02005333
Matt Roperf4510a22014-04-01 15:22:40 -07005334 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02005335 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
5336 ret = -EINVAL;
5337 goto out;
5338 }
5339
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005340 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
Daniel Vetter2dd500f2016-01-11 22:40:56 +01005341 e = kzalloc(sizeof *e, GFP_KERNEL);
5342 if (!e) {
5343 ret = -ENOMEM;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005344 goto out;
5345 }
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08005346 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Thierry Redingf76511b2014-12-10 13:03:40 +01005347 e->event.base.length = sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005348 e->event.user_data = page_flip->user_data;
Daniel Vetter2dd500f2016-01-11 22:40:56 +01005349 ret = drm_event_reserve_init(dev, file_priv, &e->base, &e->event.base);
5350 if (ret) {
5351 kfree(e);
5352 goto out;
5353 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005354 }
5355
Daniel Vetter3d30a592014-07-27 13:42:42 +02005356 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07005357 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005358 if (ret) {
Daniel Vetter2dd500f2016-01-11 22:40:56 +01005359 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT)
5360 drm_event_cancel_free(dev, &e->base);
Daniel Vetterb0d12322012-12-11 01:07:12 +01005361 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02005362 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01005363 } else {
Daniel Vetter3cb43cc2015-07-07 08:43:03 +02005364 crtc->primary->fb = fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01005365 /* Unref only the old framebuffer. */
5366 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005367 }
5368
5369out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01005370 if (fb)
5371 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02005372 if (crtc->primary->old_fb)
5373 drm_framebuffer_unreference(crtc->primary->old_fb);
5374 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02005375 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01005376
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005377 return ret;
5378}
Chris Wilsoneb033552011-01-24 15:11:08 +00005379
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005380/**
5381 * drm_mode_config_reset - call ->reset callbacks
5382 * @dev: drm device
5383 *
5384 * This functions calls all the crtc's, encoder's and connector's ->reset
5385 * callback. Drivers can use this in e.g. their driver load or resume code to
5386 * reset hardware and software state.
5387 */
Chris Wilsoneb033552011-01-24 15:11:08 +00005388void drm_mode_config_reset(struct drm_device *dev)
5389{
5390 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005391 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00005392 struct drm_encoder *encoder;
5393 struct drm_connector *connector;
5394
Daniel Vettere4f62542015-07-09 23:44:35 +02005395 drm_for_each_plane(plane, dev)
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005396 if (plane->funcs->reset)
5397 plane->funcs->reset(plane);
5398
Daniel Vettere4f62542015-07-09 23:44:35 +02005399 drm_for_each_crtc(crtc, dev)
Chris Wilsoneb033552011-01-24 15:11:08 +00005400 if (crtc->funcs->reset)
5401 crtc->funcs->reset(crtc);
5402
Daniel Vettere4f62542015-07-09 23:44:35 +02005403 drm_for_each_encoder(encoder, dev)
Chris Wilsoneb033552011-01-24 15:11:08 +00005404 if (encoder->funcs->reset)
5405 encoder->funcs->reset(encoder);
5406
Daniel Vetterf8c2ba32015-07-29 08:32:43 +02005407 mutex_lock(&dev->mode_config.mutex);
Dave Airlie4eebf602015-08-17 14:13:53 +10005408 drm_for_each_connector(connector, dev)
Chris Wilsoneb033552011-01-24 15:11:08 +00005409 if (connector->funcs->reset)
5410 connector->funcs->reset(connector);
Daniel Vetterf8c2ba32015-07-29 08:32:43 +02005411 mutex_unlock(&dev->mode_config.mutex);
Chris Wilsoneb033552011-01-24 15:11:08 +00005412}
5413EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10005414
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005415/**
5416 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
5417 * @dev: DRM device
5418 * @data: ioctl data
5419 * @file_priv: DRM file info
5420 *
5421 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
5422 * TTM or something else entirely) and returns the resulting buffer handle. This
5423 * handle can then be wrapped up into a framebuffer modeset object.
5424 *
5425 * Note that userspace is not allowed to use such objects for render
5426 * acceleration - drivers must create their own private ioctls for such a use
5427 * case.
5428 *
5429 * Called by the user via ioctl.
5430 *
5431 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005432 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005433 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005434int drm_mode_create_dumb_ioctl(struct drm_device *dev,
5435 void *data, struct drm_file *file_priv)
5436{
5437 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01005438 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10005439
5440 if (!dev->driver->dumb_create)
5441 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01005442 if (!args->width || !args->height || !args->bpp)
5443 return -EINVAL;
5444
5445 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02005446 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01005447 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02005448 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01005449 return -EINVAL;
5450 stride = cpp * args->width;
5451 if (args->height > 0xffffffffU / stride)
5452 return -EINVAL;
5453
5454 /* test for wrap-around */
5455 size = args->height * stride;
5456 if (PAGE_ALIGN(size) == 0)
5457 return -EINVAL;
5458
Thierry Redingf6085952014-11-03 11:14:14 +01005459 /*
5460 * handle, pitch and size are output parameters. Zero them out to
5461 * prevent drivers from accidentally using uninitialized data. Since
5462 * not all existing userspace is clearing these fields properly we
5463 * cannot reject IOCTL with garbage in them.
5464 */
5465 args->handle = 0;
5466 args->pitch = 0;
5467 args->size = 0;
5468
Dave Airlieff72145b2011-02-07 12:16:14 +10005469 return dev->driver->dumb_create(file_priv, dev, args);
5470}
5471
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005472/**
5473 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5474 * @dev: DRM device
5475 * @data: ioctl data
5476 * @file_priv: DRM file info
5477 *
5478 * Allocate an offset in the drm device node's address space to be able to
5479 * memory map a dumb buffer.
5480 *
5481 * Called by the user via ioctl.
5482 *
5483 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005484 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005485 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005486int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5487 void *data, struct drm_file *file_priv)
5488{
5489 struct drm_mode_map_dumb *args = data;
5490
5491 /* call driver ioctl to get mmap offset */
5492 if (!dev->driver->dumb_map_offset)
5493 return -ENOSYS;
5494
5495 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5496}
5497
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005498/**
5499 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5500 * @dev: DRM device
5501 * @data: ioctl data
5502 * @file_priv: DRM file info
5503 *
5504 * This destroys the userspace handle for the given dumb backing storage buffer.
5505 * Since buffer objects must be reference counted in the kernel a buffer object
5506 * won't be immediately freed if a framebuffer modeset object still uses it.
5507 *
5508 * Called by the user via ioctl.
5509 *
5510 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005511 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005512 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005513int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5514 void *data, struct drm_file *file_priv)
5515{
5516 struct drm_mode_destroy_dumb *args = data;
5517
5518 if (!dev->driver->dumb_destroy)
5519 return -ENOSYS;
5520
5521 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5522}
Dave Airlie248dbc22011-11-29 20:02:54 +00005523
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005524/**
5525 * drm_fb_get_bpp_depth - get the bpp/depth values for format
5526 * @format: pixel format (DRM_FORMAT_*)
5527 * @depth: storage for the depth value
5528 * @bpp: storage for the bpp value
5529 *
5530 * This only supports RGB formats here for compat with code that doesn't use
5531 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00005532 */
5533void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5534 int *bpp)
5535{
5536 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02005537 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02005538 case DRM_FORMAT_RGB332:
5539 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00005540 *depth = 8;
5541 *bpp = 8;
5542 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005543 case DRM_FORMAT_XRGB1555:
5544 case DRM_FORMAT_XBGR1555:
5545 case DRM_FORMAT_RGBX5551:
5546 case DRM_FORMAT_BGRX5551:
5547 case DRM_FORMAT_ARGB1555:
5548 case DRM_FORMAT_ABGR1555:
5549 case DRM_FORMAT_RGBA5551:
5550 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005551 *depth = 15;
5552 *bpp = 16;
5553 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005554 case DRM_FORMAT_RGB565:
5555 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005556 *depth = 16;
5557 *bpp = 16;
5558 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005559 case DRM_FORMAT_RGB888:
5560 case DRM_FORMAT_BGR888:
5561 *depth = 24;
5562 *bpp = 24;
5563 break;
5564 case DRM_FORMAT_XRGB8888:
5565 case DRM_FORMAT_XBGR8888:
5566 case DRM_FORMAT_RGBX8888:
5567 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005568 *depth = 24;
5569 *bpp = 32;
5570 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005571 case DRM_FORMAT_XRGB2101010:
5572 case DRM_FORMAT_XBGR2101010:
5573 case DRM_FORMAT_RGBX1010102:
5574 case DRM_FORMAT_BGRX1010102:
5575 case DRM_FORMAT_ARGB2101010:
5576 case DRM_FORMAT_ABGR2101010:
5577 case DRM_FORMAT_RGBA1010102:
5578 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005579 *depth = 30;
5580 *bpp = 32;
5581 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005582 case DRM_FORMAT_ARGB8888:
5583 case DRM_FORMAT_ABGR8888:
5584 case DRM_FORMAT_RGBA8888:
5585 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005586 *depth = 32;
5587 *bpp = 32;
5588 break;
5589 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005590 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5591 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005592 *depth = 0;
5593 *bpp = 0;
5594 break;
5595 }
5596}
5597EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005598
5599/**
5600 * drm_format_num_planes - get the number of planes for format
5601 * @format: pixel format (DRM_FORMAT_*)
5602 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005603 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005604 * The number of planes used by the specified pixel format.
5605 */
5606int drm_format_num_planes(uint32_t format)
5607{
5608 switch (format) {
5609 case DRM_FORMAT_YUV410:
5610 case DRM_FORMAT_YVU410:
5611 case DRM_FORMAT_YUV411:
5612 case DRM_FORMAT_YVU411:
5613 case DRM_FORMAT_YUV420:
5614 case DRM_FORMAT_YVU420:
5615 case DRM_FORMAT_YUV422:
5616 case DRM_FORMAT_YVU422:
5617 case DRM_FORMAT_YUV444:
5618 case DRM_FORMAT_YVU444:
5619 return 3;
5620 case DRM_FORMAT_NV12:
5621 case DRM_FORMAT_NV21:
5622 case DRM_FORMAT_NV16:
5623 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005624 case DRM_FORMAT_NV24:
5625 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005626 return 2;
5627 default:
5628 return 1;
5629 }
5630}
5631EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005632
5633/**
5634 * drm_format_plane_cpp - determine the bytes per pixel value
5635 * @format: pixel format (DRM_FORMAT_*)
5636 * @plane: plane index
5637 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005638 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005639 * The bytes per pixel value for the specified plane.
5640 */
5641int drm_format_plane_cpp(uint32_t format, int plane)
5642{
5643 unsigned int depth;
5644 int bpp;
5645
5646 if (plane >= drm_format_num_planes(format))
5647 return 0;
5648
5649 switch (format) {
5650 case DRM_FORMAT_YUYV:
5651 case DRM_FORMAT_YVYU:
5652 case DRM_FORMAT_UYVY:
5653 case DRM_FORMAT_VYUY:
5654 return 2;
5655 case DRM_FORMAT_NV12:
5656 case DRM_FORMAT_NV21:
5657 case DRM_FORMAT_NV16:
5658 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005659 case DRM_FORMAT_NV24:
5660 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005661 return plane ? 2 : 1;
5662 case DRM_FORMAT_YUV410:
5663 case DRM_FORMAT_YVU410:
5664 case DRM_FORMAT_YUV411:
5665 case DRM_FORMAT_YVU411:
5666 case DRM_FORMAT_YUV420:
5667 case DRM_FORMAT_YVU420:
5668 case DRM_FORMAT_YUV422:
5669 case DRM_FORMAT_YVU422:
5670 case DRM_FORMAT_YUV444:
5671 case DRM_FORMAT_YVU444:
5672 return 1;
5673 default:
5674 drm_fb_get_bpp_depth(format, &depth, &bpp);
5675 return bpp >> 3;
5676 }
5677}
5678EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005679
5680/**
5681 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5682 * @format: pixel format (DRM_FORMAT_*)
5683 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005684 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005685 * The horizontal chroma subsampling factor for the
5686 * specified pixel format.
5687 */
5688int drm_format_horz_chroma_subsampling(uint32_t format)
5689{
5690 switch (format) {
5691 case DRM_FORMAT_YUV411:
5692 case DRM_FORMAT_YVU411:
5693 case DRM_FORMAT_YUV410:
5694 case DRM_FORMAT_YVU410:
5695 return 4;
5696 case DRM_FORMAT_YUYV:
5697 case DRM_FORMAT_YVYU:
5698 case DRM_FORMAT_UYVY:
5699 case DRM_FORMAT_VYUY:
5700 case DRM_FORMAT_NV12:
5701 case DRM_FORMAT_NV21:
5702 case DRM_FORMAT_NV16:
5703 case DRM_FORMAT_NV61:
5704 case DRM_FORMAT_YUV422:
5705 case DRM_FORMAT_YVU422:
5706 case DRM_FORMAT_YUV420:
5707 case DRM_FORMAT_YVU420:
5708 return 2;
5709 default:
5710 return 1;
5711 }
5712}
5713EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5714
5715/**
5716 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5717 * @format: pixel format (DRM_FORMAT_*)
5718 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005719 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005720 * The vertical chroma subsampling factor for the
5721 * specified pixel format.
5722 */
5723int drm_format_vert_chroma_subsampling(uint32_t format)
5724{
5725 switch (format) {
5726 case DRM_FORMAT_YUV410:
5727 case DRM_FORMAT_YVU410:
5728 return 4;
5729 case DRM_FORMAT_YUV420:
5730 case DRM_FORMAT_YVU420:
5731 case DRM_FORMAT_NV12:
5732 case DRM_FORMAT_NV21:
5733 return 2;
5734 default:
5735 return 1;
5736 }
5737}
5738EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005739
5740/**
Ville Syrjälä4c617162016-02-09 17:29:44 +02005741 * drm_format_plane_width - width of the plane given the first plane
5742 * @width: width of the first plane
5743 * @format: pixel format
5744 * @plane: plane index
5745 *
5746 * Returns:
5747 * The width of @plane, given that the width of the first plane is @width.
5748 */
5749int drm_format_plane_width(int width, uint32_t format, int plane)
5750{
5751 if (plane >= drm_format_num_planes(format))
5752 return 0;
5753
5754 if (plane == 0)
5755 return width;
5756
5757 return width / drm_format_horz_chroma_subsampling(format);
5758}
5759EXPORT_SYMBOL(drm_format_plane_width);
5760
5761/**
5762 * drm_format_plane_height - height of the plane given the first plane
5763 * @height: height of the first plane
5764 * @format: pixel format
5765 * @plane: plane index
5766 *
5767 * Returns:
5768 * The height of @plane, given that the height of the first plane is @height.
5769 */
5770int drm_format_plane_height(int height, uint32_t format, int plane)
5771{
5772 if (plane >= drm_format_num_planes(format))
5773 return 0;
5774
5775 if (plane == 0)
5776 return height;
5777
5778 return height / drm_format_vert_chroma_subsampling(format);
5779}
5780EXPORT_SYMBOL(drm_format_plane_height);
5781
5782/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305783 * drm_rotation_simplify() - Try to simplify the rotation
5784 * @rotation: Rotation to be simplified
5785 * @supported_rotations: Supported rotations
5786 *
5787 * Attempt to simplify the rotation to a form that is supported.
5788 * Eg. if the hardware supports everything except DRM_REFLECT_X
5789 * one could call this function like this:
5790 *
5791 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5792 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5793 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5794 *
5795 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5796 * transforms the hardware supports, this function may not
5797 * be able to produce a supported transform, so the caller should
5798 * check the result afterwards.
5799 */
5800unsigned int drm_rotation_simplify(unsigned int rotation,
5801 unsigned int supported_rotations)
5802{
5803 if (rotation & ~supported_rotations) {
5804 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
Joonas Lahtinen14152c82015-10-01 10:00:58 +03005805 rotation = (rotation & DRM_REFLECT_MASK) |
5806 BIT((ffs(rotation & DRM_ROTATE_MASK) + 1) % 4);
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305807 }
5808
5809 return rotation;
5810}
5811EXPORT_SYMBOL(drm_rotation_simplify);
5812
5813/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005814 * drm_mode_config_init - initialize DRM mode_configuration structure
5815 * @dev: DRM device
5816 *
5817 * Initialize @dev's mode_config structure, used for tracking the graphics
5818 * configuration of @dev.
5819 *
5820 * Since this initializes the modeset locks, no locking is possible. Which is no
5821 * problem, since this should happen single threaded at init time. It is the
5822 * driver's problem to ensure this guarantee.
5823 *
5824 */
5825void drm_mode_config_init(struct drm_device *dev)
5826{
5827 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005828 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005829 mutex_init(&dev->mode_config.idr_mutex);
5830 mutex_init(&dev->mode_config.fb_lock);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01005831 mutex_init(&dev->mode_config.blob_lock);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005832 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5833 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5834 INIT_LIST_HEAD(&dev->mode_config.connector_list);
5835 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5836 INIT_LIST_HEAD(&dev->mode_config.property_list);
5837 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5838 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5839 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005840 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005841
5842 drm_modeset_lock_all(dev);
Rob Clark6b4959f2014-12-18 16:01:53 -05005843 drm_mode_create_standard_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005844 drm_modeset_unlock_all(dev);
5845
5846 /* Just to be sure */
5847 dev->mode_config.num_fb = 0;
5848 dev->mode_config.num_connector = 0;
5849 dev->mode_config.num_crtc = 0;
5850 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005851 dev->mode_config.num_overlay_plane = 0;
5852 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005853}
5854EXPORT_SYMBOL(drm_mode_config_init);
5855
5856/**
5857 * drm_mode_config_cleanup - free up DRM mode_config info
5858 * @dev: DRM device
5859 *
5860 * Free up all the connectors and CRTCs associated with this DRM device, then
5861 * free up the framebuffers and associated buffer objects.
5862 *
5863 * Note that since this /should/ happen single-threaded at driver/device
5864 * teardown time, no locking is required. It's the driver's job to ensure that
5865 * this guarantee actually holds true.
5866 *
5867 * FIXME: cleanup any dangling user buffer objects too
5868 */
5869void drm_mode_config_cleanup(struct drm_device *dev)
5870{
5871 struct drm_connector *connector, *ot;
5872 struct drm_crtc *crtc, *ct;
5873 struct drm_encoder *encoder, *enct;
5874 struct drm_framebuffer *fb, *fbt;
5875 struct drm_property *property, *pt;
5876 struct drm_property_blob *blob, *bt;
5877 struct drm_plane *plane, *plt;
5878
5879 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5880 head) {
5881 encoder->funcs->destroy(encoder);
5882 }
5883
5884 list_for_each_entry_safe(connector, ot,
5885 &dev->mode_config.connector_list, head) {
5886 connector->funcs->destroy(connector);
5887 }
5888
5889 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5890 head) {
5891 drm_property_destroy(dev, property);
5892 }
5893
5894 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01005895 head_global) {
Daniel Stone6bcacf52015-04-20 19:22:55 +01005896 drm_property_unreference_blob(blob);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005897 }
5898
5899 /*
5900 * Single-threaded teardown context, so it's not required to grab the
5901 * fb_lock to protect against concurrent fb_list access. Contrary, it
5902 * would actually deadlock with the drm_framebuffer_cleanup function.
5903 *
5904 * Also, if there are any framebuffers left, that's a driver leak now,
5905 * so politely WARN about this.
5906 */
5907 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5908 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
Maarten Lankhorstc099b552015-09-09 13:46:21 +02005909 drm_framebuffer_free(&fb->refcount);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005910 }
5911
5912 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5913 head) {
5914 plane->funcs->destroy(plane);
5915 }
5916
5917 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5918 crtc->funcs->destroy(crtc);
5919 }
5920
Dave Airlie138f9eb2014-10-20 16:17:17 +10005921 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005922 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005923 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005924}
5925EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305926
5927struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5928 unsigned int supported_rotations)
5929{
5930 static const struct drm_prop_enum_list props[] = {
5931 { DRM_ROTATE_0, "rotate-0" },
5932 { DRM_ROTATE_90, "rotate-90" },
5933 { DRM_ROTATE_180, "rotate-180" },
5934 { DRM_ROTATE_270, "rotate-270" },
5935 { DRM_REFLECT_X, "reflect-x" },
5936 { DRM_REFLECT_Y, "reflect-y" },
5937 };
5938
5939 return drm_property_create_bitmask(dev, 0, "rotation",
5940 props, ARRAY_SIZE(props),
5941 supported_rotations);
5942}
5943EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005944
5945/**
5946 * DOC: Tile group
5947 *
5948 * Tile groups are used to represent tiled monitors with a unique
5949 * integer identifier. Tiled monitors using DisplayID v1.3 have
5950 * a unique 8-byte handle, we store this in a tile group, so we
5951 * have a common identifier for all tiles in a monitor group.
5952 */
5953static void drm_tile_group_free(struct kref *kref)
5954{
5955 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5956 struct drm_device *dev = tg->dev;
5957 mutex_lock(&dev->mode_config.idr_mutex);
5958 idr_remove(&dev->mode_config.tile_idr, tg->id);
5959 mutex_unlock(&dev->mode_config.idr_mutex);
5960 kfree(tg);
5961}
5962
5963/**
5964 * drm_mode_put_tile_group - drop a reference to a tile group.
5965 * @dev: DRM device
5966 * @tg: tile group to drop reference to.
5967 *
5968 * drop reference to tile group and free if 0.
5969 */
5970void drm_mode_put_tile_group(struct drm_device *dev,
5971 struct drm_tile_group *tg)
5972{
5973 kref_put(&tg->refcount, drm_tile_group_free);
5974}
5975
5976/**
5977 * drm_mode_get_tile_group - get a reference to an existing tile group
5978 * @dev: DRM device
5979 * @topology: 8-bytes unique per monitor.
5980 *
5981 * Use the unique bytes to get a reference to an existing tile group.
5982 *
5983 * RETURNS:
5984 * tile group or NULL if not found.
5985 */
5986struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5987 char topology[8])
5988{
5989 struct drm_tile_group *tg;
5990 int id;
5991 mutex_lock(&dev->mode_config.idr_mutex);
5992 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5993 if (!memcmp(tg->group_data, topology, 8)) {
5994 if (!kref_get_unless_zero(&tg->refcount))
5995 tg = NULL;
5996 mutex_unlock(&dev->mode_config.idr_mutex);
5997 return tg;
5998 }
5999 }
6000 mutex_unlock(&dev->mode_config.idr_mutex);
6001 return NULL;
6002}
Rob Clark81ddd1b2015-03-27 13:01:52 -04006003EXPORT_SYMBOL(drm_mode_get_tile_group);
Dave Airlie138f9eb2014-10-20 16:17:17 +10006004
6005/**
6006 * drm_mode_create_tile_group - create a tile group from a displayid description
6007 * @dev: DRM device
6008 * @topology: 8-bytes unique per monitor.
6009 *
6010 * Create a tile group for the unique monitor, and get a unique
6011 * identifier for the tile group.
6012 *
6013 * RETURNS:
6014 * new tile group or error.
6015 */
6016struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
6017 char topology[8])
6018{
6019 struct drm_tile_group *tg;
6020 int ret;
6021
6022 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
6023 if (!tg)
6024 return ERR_PTR(-ENOMEM);
6025
6026 kref_init(&tg->refcount);
6027 memcpy(tg->group_data, topology, 8);
6028 tg->dev = dev;
6029
6030 mutex_lock(&dev->mode_config.idr_mutex);
6031 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
6032 if (ret >= 0) {
6033 tg->id = ret;
6034 } else {
6035 kfree(tg);
6036 tg = ERR_PTR(ret);
6037 }
6038
6039 mutex_unlock(&dev->mode_config.idr_mutex);
6040 return tg;
6041}
Rob Clark81ddd1b2015-03-27 13:01:52 -04006042EXPORT_SYMBOL(drm_mode_create_tile_group);