blob: 9b05dc76379e3fb2d6d6bbd34858ed5c32bdeabc [file] [log] [blame]
Dave Airlief453ba02008-11-07 14:05:41 -08001/*
2 * Copyright (c) 2006-2008 Intel Corporation
3 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
4 * Copyright (c) 2008 Red Hat Inc.
5 *
6 * DRM core CRTC related functions
7 *
8 * Permission to use, copy, modify, distribute, and sell this software and its
9 * documentation for any purpose is hereby granted without fee, provided that
10 * the above copyright notice appear in all copies and that both that copyright
11 * notice and this permission notice appear in supporting documentation, and
12 * that the name of the copyright holders not be used in advertising or
13 * publicity pertaining to distribution of the software without specific,
14 * written prior permission. The copyright holders make no representations
15 * about the suitability of this software for any purpose. It is provided "as
16 * is" without express or implied warranty.
17 *
18 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
20 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
21 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
22 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
23 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24 * OF THIS SOFTWARE.
25 *
26 * Authors:
27 * Keith Packard
28 * Eric Anholt <eric@anholt.net>
29 * Dave Airlie <airlied@linux.ie>
30 * Jesse Barnes <jesse.barnes@intel.com>
31 */
Ville Syrjälä6ba6d032013-06-10 11:15:10 +030032#include <linux/ctype.h>
Dave Airlief453ba02008-11-07 14:05:41 -080033#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040035#include <linux/export.h>
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/drmP.h>
37#include <drm/drm_crtc.h>
38#include <drm/drm_edid.h>
39#include <drm/drm_fourcc.h>
Rob Clark51fd3712013-11-19 12:10:12 -050040#include <drm/drm_modeset_lock.h>
Rob Clark88a48e22014-12-18 16:01:50 -050041#include <drm/drm_atomic.h>
Dave Airlief453ba02008-11-07 14:05:41 -080042
Daniel Vetter8bd441b2014-01-23 15:35:24 +010043#include "drm_crtc_internal.h"
Daniel Vetter67d0ec42014-09-10 12:43:53 +020044#include "drm_internal.h"
Daniel Vetter8bd441b2014-01-23 15:35:24 +010045
Chris Wilson9a6f5132015-02-25 13:45:26 +000046static struct drm_framebuffer *
47internal_framebuffer_create(struct drm_device *dev,
48 struct drm_mode_fb_cmd2 *r,
49 struct drm_file *file_priv);
Matt Roperc394c2b2014-06-10 08:28:08 -070050
Dave Airlief453ba02008-11-07 14:05:41 -080051/* Avoid boilerplate. I'm tired of typing. */
52#define DRM_ENUM_NAME_FN(fnname, list) \
Ville Syrjäläd20d3172013-06-07 15:43:07 +000053 const char *fnname(int val) \
Dave Airlief453ba02008-11-07 14:05:41 -080054 { \
55 int i; \
56 for (i = 0; i < ARRAY_SIZE(list); i++) { \
57 if (list[i].type == val) \
58 return list[i].name; \
59 } \
60 return "(unknown)"; \
61 }
62
63/*
64 * Global properties
65 */
Thierry Reding4dfd9092014-12-10 13:03:34 +010066static const struct drm_prop_enum_list drm_dpms_enum_list[] = {
67 { DRM_MODE_DPMS_ON, "On" },
Dave Airlief453ba02008-11-07 14:05:41 -080068 { DRM_MODE_DPMS_STANDBY, "Standby" },
69 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
70 { DRM_MODE_DPMS_OFF, "Off" }
71};
72
73DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
74
Thierry Reding4dfd9092014-12-10 13:03:34 +010075static const struct drm_prop_enum_list drm_plane_type_enum_list[] = {
Rob Clark9922ab52014-04-01 20:16:57 -040076 { DRM_PLANE_TYPE_OVERLAY, "Overlay" },
77 { DRM_PLANE_TYPE_PRIMARY, "Primary" },
78 { DRM_PLANE_TYPE_CURSOR, "Cursor" },
79};
80
Dave Airlief453ba02008-11-07 14:05:41 -080081/*
82 * Optional properties
83 */
Thierry Reding4dfd9092014-12-10 13:03:34 +010084static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] = {
Jesse Barnes53bd8382009-07-01 10:04:40 -070085 { DRM_MODE_SCALE_NONE, "None" },
86 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
87 { DRM_MODE_SCALE_CENTER, "Center" },
88 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
Dave Airlief453ba02008-11-07 14:05:41 -080089};
90
Vandana Kannanff587e42014-06-11 10:46:48 +053091static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
92 { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
93 { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
94 { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
95};
96
Dave Airlief453ba02008-11-07 14:05:41 -080097/*
98 * Non-global properties, but "required" for certain connectors.
99 */
Thierry Reding4dfd9092014-12-10 13:03:34 +0100100static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800101 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
102 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
103 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
104};
105
106DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
107
Thierry Reding4dfd9092014-12-10 13:03:34 +0100108static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800109 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
110 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
111 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
112};
113
114DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
115 drm_dvi_i_subconnector_enum_list)
116
Thierry Reding4dfd9092014-12-10 13:03:34 +0100117static const struct drm_prop_enum_list drm_tv_select_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800118 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
119 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
120 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
121 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200122 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800123};
124
125DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
126
Thierry Reding4dfd9092014-12-10 13:03:34 +0100127static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] = {
Dave Airlief453ba02008-11-07 14:05:41 -0800128 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
129 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
130 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
131 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200132 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800133};
134
135DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
136 drm_tv_subconnector_enum_list)
137
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000138static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000139 { DRM_MODE_DIRTY_OFF, "Off" },
140 { DRM_MODE_DIRTY_ON, "On" },
141 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
142};
143
Dave Airlief453ba02008-11-07 14:05:41 -0800144struct drm_conn_prop_enum_list {
145 int type;
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000146 const char *name;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400147 struct ida ida;
Dave Airlief453ba02008-11-07 14:05:41 -0800148};
149
150/*
151 * Connector and encoder types.
152 */
Thierry Reding4dfd9092014-12-10 13:03:34 +0100153static struct drm_conn_prop_enum_list drm_connector_enum_list[] = {
154 { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400155 { DRM_MODE_CONNECTOR_VGA, "VGA" },
156 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
157 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
158 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
159 { DRM_MODE_CONNECTOR_Composite, "Composite" },
160 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
161 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
162 { DRM_MODE_CONNECTOR_Component, "Component" },
163 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
164 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
165 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
166 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
167 { DRM_MODE_CONNECTOR_TV, "TV" },
168 { DRM_MODE_CONNECTOR_eDP, "eDP" },
169 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300170 { DRM_MODE_CONNECTOR_DSI, "DSI" },
Dave Airlief453ba02008-11-07 14:05:41 -0800171};
172
Thierry Reding4dfd9092014-12-10 13:03:34 +0100173static const struct drm_prop_enum_list drm_encoder_enum_list[] = {
174 { DRM_MODE_ENCODER_NONE, "None" },
Dave Airlief453ba02008-11-07 14:05:41 -0800175 { DRM_MODE_ENCODER_DAC, "DAC" },
176 { DRM_MODE_ENCODER_TMDS, "TMDS" },
177 { DRM_MODE_ENCODER_LVDS, "LVDS" },
178 { DRM_MODE_ENCODER_TVDAC, "TV" },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200179 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300180 { DRM_MODE_ENCODER_DSI, "DSI" },
Dave Airlie182407a2014-05-02 11:09:54 +1000181 { DRM_MODE_ENCODER_DPMST, "DP MST" },
Dave Airlief453ba02008-11-07 14:05:41 -0800182};
183
Thierry Reding4dfd9092014-12-10 13:03:34 +0100184static const struct drm_prop_enum_list drm_subpixel_enum_list[] = {
Jesse Barnesac1bb362014-02-10 15:32:44 -0800185 { SubPixelUnknown, "Unknown" },
186 { SubPixelHorizontalRGB, "Horizontal RGB" },
187 { SubPixelHorizontalBGR, "Horizontal BGR" },
188 { SubPixelVerticalRGB, "Vertical RGB" },
189 { SubPixelVerticalBGR, "Vertical BGR" },
190 { SubPixelNone, "None" },
191};
192
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400193void drm_connector_ida_init(void)
194{
195 int i;
196
197 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
198 ida_init(&drm_connector_enum_list[i].ida);
199}
200
201void drm_connector_ida_destroy(void)
202{
203 int i;
204
205 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
206 ida_destroy(&drm_connector_enum_list[i].ida);
207}
208
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100209/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100210 * drm_get_connector_status_name - return a string for connector status
211 * @status: connector status to compute name of
212 *
213 * In contrast to the other drm_get_*_name functions this one here returns a
214 * const pointer and hence is threadsafe.
215 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000216const char *drm_get_connector_status_name(enum drm_connector_status status)
Dave Airlief453ba02008-11-07 14:05:41 -0800217{
218 if (status == connector_status_connected)
219 return "connected";
220 else if (status == connector_status_disconnected)
221 return "disconnected";
222 else
223 return "unknown";
224}
Lespiau, Damiened7951d2013-05-10 12:36:42 +0000225EXPORT_SYMBOL(drm_get_connector_status_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800226
Jesse Barnesac1bb362014-02-10 15:32:44 -0800227/**
228 * drm_get_subpixel_order_name - return a string for a given subpixel enum
229 * @order: enum of subpixel_order
230 *
231 * Note you could abuse this and return something out of bounds, but that
232 * would be a caller error. No unscrubbed user data should make it here.
233 */
234const char *drm_get_subpixel_order_name(enum subpixel_order order)
235{
236 return drm_subpixel_enum_list[order].name;
237}
238EXPORT_SYMBOL(drm_get_subpixel_order_name);
239
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300240static char printable_char(int c)
241{
242 return isascii(c) && isprint(c) ? c : '?';
243}
244
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100245/**
246 * drm_get_format_name - return a string for drm fourcc format
247 * @format: format to compute name of
248 *
249 * Note that the buffer used by this function is globally shared and owned by
250 * the function itself.
251 *
252 * FIXME: This isn't really multithreading safe.
253 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000254const char *drm_get_format_name(uint32_t format)
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300255{
256 static char buf[32];
257
258 snprintf(buf, sizeof(buf),
259 "%c%c%c%c %s-endian (0x%08x)",
260 printable_char(format & 0xff),
261 printable_char((format >> 8) & 0xff),
262 printable_char((format >> 16) & 0xff),
263 printable_char((format >> 24) & 0x7f),
264 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
265 format);
266
267 return buf;
268}
269EXPORT_SYMBOL(drm_get_format_name);
270
Dave Airlie2ee39452014-07-24 11:53:45 +1000271/*
272 * Internal function to assign a slot in the object idr and optionally
273 * register the object into the idr.
274 */
275static int drm_mode_object_get_reg(struct drm_device *dev,
276 struct drm_mode_object *obj,
277 uint32_t obj_type,
278 bool register_obj)
279{
280 int ret;
281
282 mutex_lock(&dev->mode_config.idr_mutex);
283 ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
284 if (ret >= 0) {
285 /*
286 * Set up the object linking under the protection of the idr
287 * lock so that other users can't see inconsistent state.
288 */
289 obj->id = ret;
290 obj->type = obj_type;
291 }
292 mutex_unlock(&dev->mode_config.idr_mutex);
293
294 return ret < 0 ? ret : 0;
295}
296
Dave Airlief453ba02008-11-07 14:05:41 -0800297/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100298 * drm_mode_object_get - allocate a new modeset identifier
Dave Airlief453ba02008-11-07 14:05:41 -0800299 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100300 * @obj: object pointer, used to generate unique ID
301 * @obj_type: object type
Dave Airlief453ba02008-11-07 14:05:41 -0800302 *
Dave Airlief453ba02008-11-07 14:05:41 -0800303 * Create a unique identifier based on @ptr in @dev's identifier space. Used
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100304 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
305 * modeset identifiers are _not_ reference counted. Hence don't use this for
306 * reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800307 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100308 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -0800309 * New unique (relative to other objects in @dev) integer identifier for the
310 * object.
311 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100312int drm_mode_object_get(struct drm_device *dev,
313 struct drm_mode_object *obj, uint32_t obj_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800314{
Dave Airlie2ee39452014-07-24 11:53:45 +1000315 return drm_mode_object_get_reg(dev, obj, obj_type, true);
316}
Dave Airlief453ba02008-11-07 14:05:41 -0800317
Dave Airlie2ee39452014-07-24 11:53:45 +1000318static void drm_mode_object_register(struct drm_device *dev,
319 struct drm_mode_object *obj)
320{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000321 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlie2ee39452014-07-24 11:53:45 +1000322 idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000323 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800324}
325
326/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100327 * drm_mode_object_put - free a modeset identifer
Dave Airlief453ba02008-11-07 14:05:41 -0800328 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100329 * @object: object to free
Dave Airlief453ba02008-11-07 14:05:41 -0800330 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100331 * Free @id from @dev's unique identifier pool. Note that despite the _get
332 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
333 * for reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800334 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100335void drm_mode_object_put(struct drm_device *dev,
336 struct drm_mode_object *object)
Dave Airlief453ba02008-11-07 14:05:41 -0800337{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000338 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800339 idr_remove(&dev->mode_config.crtc_idr, object->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000340 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800341}
342
Rob Clark98f75de2014-05-30 11:37:03 -0400343static struct drm_mode_object *_object_find(struct drm_device *dev,
344 uint32_t id, uint32_t type)
345{
346 struct drm_mode_object *obj = NULL;
347
348 mutex_lock(&dev->mode_config.idr_mutex);
349 obj = idr_find(&dev->mode_config.crtc_idr, id);
Daniel Vetter168c02e2014-07-24 12:12:45 +0200350 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
351 obj = NULL;
352 if (obj && obj->id != id)
353 obj = NULL;
354 /* don't leak out unref'd fb's */
Daniel Stone6bcacf52015-04-20 19:22:55 +0100355 if (obj &&
356 (obj->type == DRM_MODE_OBJECT_FB ||
357 obj->type == DRM_MODE_OBJECT_BLOB))
Rob Clark98f75de2014-05-30 11:37:03 -0400358 obj = NULL;
359 mutex_unlock(&dev->mode_config.idr_mutex);
360
361 return obj;
362}
363
Daniel Vetter786b99e2012-12-02 21:53:40 +0100364/**
365 * drm_mode_object_find - look up a drm object with static lifetime
366 * @dev: drm device
367 * @id: id of the mode object
368 * @type: type of the mode object
369 *
370 * Note that framebuffers cannot be looked up with this functions - since those
Rob Clark98f75de2014-05-30 11:37:03 -0400371 * are reference counted, they need special treatment. Even with
372 * DRM_MODE_OBJECT_ANY (although that will simply return NULL
373 * rather than WARN_ON()).
Daniel Vetter786b99e2012-12-02 21:53:40 +0100374 */
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200375struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
376 uint32_t id, uint32_t type)
Dave Airlief453ba02008-11-07 14:05:41 -0800377{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000378 struct drm_mode_object *obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800379
Daniel Vetter786b99e2012-12-02 21:53:40 +0100380 /* Framebuffers are reference counted and need their own lookup
381 * function.*/
Daniel Stone6bcacf52015-04-20 19:22:55 +0100382 WARN_ON(type == DRM_MODE_OBJECT_FB || type == DRM_MODE_OBJECT_BLOB);
Rob Clark98f75de2014-05-30 11:37:03 -0400383 obj = _object_find(dev, id, type);
Dave Airlief453ba02008-11-07 14:05:41 -0800384 return obj;
385}
386EXPORT_SYMBOL(drm_mode_object_find);
387
388/**
Dave Airlief453ba02008-11-07 14:05:41 -0800389 * drm_framebuffer_init - initialize a framebuffer
390 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100391 * @fb: framebuffer to be initialized
392 * @funcs: ... with these functions
Dave Airlief453ba02008-11-07 14:05:41 -0800393 *
Dave Airlief453ba02008-11-07 14:05:41 -0800394 * Allocates an ID for the framebuffer's parent mode object, sets its mode
395 * functions & device file and adds it to the master fd list.
396 *
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100397 * IMPORTANT:
398 * This functions publishes the fb and makes it available for concurrent access
399 * by other users. Which means by this point the fb _must_ be fully set up -
400 * since all the fb attributes are invariant over its lifetime, no further
401 * locking but only correct reference counting is required.
402 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100403 * Returns:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200404 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800405 */
406int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
407 const struct drm_framebuffer_funcs *funcs)
408{
409 int ret;
410
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100411 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000412 kref_init(&fb->refcount);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100413 INIT_LIST_HEAD(&fb->filp_head);
414 fb->dev = dev;
415 fb->funcs = funcs;
Rob Clarkf7eff602012-09-05 21:48:38 +0000416
Dave Airlief453ba02008-11-07 14:05:41 -0800417 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200418 if (ret)
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100419 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800420
Dave Airlief453ba02008-11-07 14:05:41 -0800421 dev->mode_config.num_fb++;
422 list_add(&fb->head, &dev->mode_config.fb_list);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100423out:
424 mutex_unlock(&dev->mode_config.fb_lock);
Dave Airlief453ba02008-11-07 14:05:41 -0800425
426 return 0;
427}
428EXPORT_SYMBOL(drm_framebuffer_init);
429
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200430/* dev->mode_config.fb_lock must be held! */
431static void __drm_framebuffer_unregister(struct drm_device *dev,
432 struct drm_framebuffer *fb)
433{
434 mutex_lock(&dev->mode_config.idr_mutex);
435 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
436 mutex_unlock(&dev->mode_config.idr_mutex);
437
438 fb->base.id = 0;
439}
440
Rob Clarkf7eff602012-09-05 21:48:38 +0000441static void drm_framebuffer_free(struct kref *kref)
442{
443 struct drm_framebuffer *fb =
444 container_of(kref, struct drm_framebuffer, refcount);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200445 struct drm_device *dev = fb->dev;
446
447 /*
448 * The lookup idr holds a weak reference, which has not necessarily been
449 * removed at this point. Check for that.
450 */
451 mutex_lock(&dev->mode_config.fb_lock);
452 if (fb->base.id) {
453 /* Mark fb as reaped and drop idr ref. */
454 __drm_framebuffer_unregister(dev, fb);
455 }
456 mutex_unlock(&dev->mode_config.fb_lock);
457
Rob Clarkf7eff602012-09-05 21:48:38 +0000458 fb->funcs->destroy(fb);
459}
460
Daniel Vetter2b677e82012-12-10 21:16:05 +0100461static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
462 uint32_t id)
463{
464 struct drm_mode_object *obj = NULL;
465 struct drm_framebuffer *fb;
466
467 mutex_lock(&dev->mode_config.idr_mutex);
468 obj = idr_find(&dev->mode_config.crtc_idr, id);
469 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
470 fb = NULL;
471 else
472 fb = obj_to_fb(obj);
473 mutex_unlock(&dev->mode_config.idr_mutex);
474
475 return fb;
476}
477
Rob Clarkf7eff602012-09-05 21:48:38 +0000478/**
Daniel Vetter786b99e2012-12-02 21:53:40 +0100479 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
480 * @dev: drm device
481 * @id: id of the fb object
482 *
483 * If successful, this grabs an additional reference to the framebuffer -
484 * callers need to make sure to eventually unreference the returned framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100485 * again, using @drm_framebuffer_unreference.
Daniel Vetter786b99e2012-12-02 21:53:40 +0100486 */
487struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
488 uint32_t id)
489{
Daniel Vetter786b99e2012-12-02 21:53:40 +0100490 struct drm_framebuffer *fb;
491
492 mutex_lock(&dev->mode_config.fb_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100493 fb = __drm_framebuffer_lookup(dev, id);
Daniel Vetter83f45fc2014-08-06 09:10:18 +0200494 if (fb) {
495 if (!kref_get_unless_zero(&fb->refcount))
496 fb = NULL;
497 }
Daniel Vetter786b99e2012-12-02 21:53:40 +0100498 mutex_unlock(&dev->mode_config.fb_lock);
499
500 return fb;
501}
502EXPORT_SYMBOL(drm_framebuffer_lookup);
503
504/**
Rob Clarkf7eff602012-09-05 21:48:38 +0000505 * drm_framebuffer_unreference - unref a framebuffer
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100506 * @fb: framebuffer to unref
507 *
508 * This functions decrements the fb's refcount and frees it if it drops to zero.
Rob Clarkf7eff602012-09-05 21:48:38 +0000509 */
510void drm_framebuffer_unreference(struct drm_framebuffer *fb)
511{
Rob Clark82912722014-03-18 10:07:08 -0400512 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000513 kref_put(&fb->refcount, drm_framebuffer_free);
514}
515EXPORT_SYMBOL(drm_framebuffer_unreference);
516
517/**
518 * drm_framebuffer_reference - incr the fb refcnt
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100519 * @fb: framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100520 *
521 * This functions increments the fb's refcount.
Rob Clarkf7eff602012-09-05 21:48:38 +0000522 */
523void drm_framebuffer_reference(struct drm_framebuffer *fb)
524{
Rob Clark82912722014-03-18 10:07:08 -0400525 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000526 kref_get(&fb->refcount);
527}
528EXPORT_SYMBOL(drm_framebuffer_reference);
529
Dave Airlief453ba02008-11-07 14:05:41 -0800530/**
Daniel Vetter36206362012-12-10 20:42:17 +0100531 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
532 * @fb: fb to unregister
533 *
534 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
535 * those used for fbdev. Note that the caller must hold a reference of it's own,
536 * i.e. the object may not be destroyed through this call (since it'll lead to a
537 * locking inversion).
538 */
539void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
540{
Daniel Vetter2b677e82012-12-10 21:16:05 +0100541 struct drm_device *dev = fb->dev;
542
543 mutex_lock(&dev->mode_config.fb_lock);
544 /* Mark fb as reaped and drop idr ref. */
545 __drm_framebuffer_unregister(dev, fb);
546 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100547}
548EXPORT_SYMBOL(drm_framebuffer_unregister_private);
549
550/**
Dave Airlief453ba02008-11-07 14:05:41 -0800551 * drm_framebuffer_cleanup - remove a framebuffer object
552 * @fb: framebuffer to remove
553 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100554 * Cleanup framebuffer. This function is intended to be used from the drivers
555 * ->destroy callback. It can also be used to clean up driver private
556 * framebuffers embedded into a larger structure.
Daniel Vetter36206362012-12-10 20:42:17 +0100557 *
558 * Note that this function does not remove the fb from active usuage - if it is
559 * still used anywhere, hilarity can ensue since userspace could call getfb on
560 * the id and get back -EINVAL. Obviously no concern at driver unload time.
561 *
562 * Also, the framebuffer will not be removed from the lookup idr - for
563 * user-created framebuffers this will happen in in the rmfb ioctl. For
564 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
565 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800566 */
567void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
568{
569 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100570
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100571 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000572 list_del(&fb->head);
573 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100574 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000575}
576EXPORT_SYMBOL(drm_framebuffer_cleanup);
577
578/**
579 * drm_framebuffer_remove - remove and unreference a framebuffer object
580 * @fb: framebuffer to remove
581 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000582 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100583 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100584 * passed-in framebuffer. Might take the modeset locks.
585 *
586 * Note that this function optimizes the cleanup away if the caller holds the
587 * last reference to the framebuffer. It is also guaranteed to not take the
588 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000589 */
590void drm_framebuffer_remove(struct drm_framebuffer *fb)
591{
592 struct drm_device *dev = fb->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800593 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800594 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000595 struct drm_mode_set set;
596 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800597
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100598 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100599
Daniel Vetterb62584e2012-12-11 16:51:35 +0100600 /*
601 * drm ABI mandates that we remove any deleted framebuffers from active
602 * useage. But since most sane clients only remove framebuffers they no
603 * longer need, try to optimize this away.
604 *
605 * Since we're holding a reference ourselves, observing a refcount of 1
606 * means that we're the last holder and can skip it. Also, the refcount
607 * can never increase from 1 again, so we don't need any barriers or
608 * locks.
609 *
610 * Note that userspace could try to race with use and instate a new
611 * usage _after_ we've cleared all current ones. End result will be an
612 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
613 * in this manner.
614 */
615 if (atomic_read(&fb->refcount.refcount) > 1) {
616 drm_modeset_lock_all(dev);
617 /* remove from any CRTC */
Daniel Vetter6295d602015-07-09 23:44:25 +0200618 drm_for_each_crtc(crtc, dev) {
Matt Roperf4510a22014-04-01 15:22:40 -0700619 if (crtc->primary->fb == fb) {
Daniel Vetterb62584e2012-12-11 16:51:35 +0100620 /* should turn off the crtc */
621 memset(&set, 0, sizeof(struct drm_mode_set));
622 set.crtc = crtc;
623 set.fb = NULL;
624 ret = drm_mode_set_config_internal(&set);
625 if (ret)
626 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
627 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000628 }
Dave Airlief453ba02008-11-07 14:05:41 -0800629
Daniel Vetter6295d602015-07-09 23:44:25 +0200630 drm_for_each_plane(plane, dev) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300631 if (plane->fb == fb)
632 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800633 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100634 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800635 }
636
Rob Clarkf7eff602012-09-05 21:48:38 +0000637 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800638}
Rob Clarkf7eff602012-09-05 21:48:38 +0000639EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800640
Rob Clark51fd3712013-11-19 12:10:12 -0500641DEFINE_WW_CLASS(crtc_ww_class);
642
Dave Airlief453ba02008-11-07 14:05:41 -0800643/**
Matt Ropere13161a2014-04-01 15:22:38 -0700644 * drm_crtc_init_with_planes - Initialise a new CRTC object with
645 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800646 * @dev: DRM device
647 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700648 * @primary: Primary plane for CRTC
649 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800650 * @funcs: callbacks for the new CRTC
651 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000652 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200653 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100654 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200655 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800656 */
Matt Ropere13161a2014-04-01 15:22:38 -0700657int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
658 struct drm_plane *primary,
Matt Roperfc1d3e42014-06-10 08:28:11 -0700659 struct drm_plane *cursor,
Matt Ropere13161a2014-04-01 15:22:38 -0700660 const struct drm_crtc_funcs *funcs)
Dave Airlief453ba02008-11-07 14:05:41 -0800661{
Rob Clark51fd3712013-11-19 12:10:12 -0500662 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200663 int ret;
664
Benjamin Gaignard522cf912015-03-17 12:05:29 +0100665 WARN_ON(primary && primary->type != DRM_PLANE_TYPE_PRIMARY);
666 WARN_ON(cursor && cursor->type != DRM_PLANE_TYPE_CURSOR);
667
Dave Airlief453ba02008-11-07 14:05:41 -0800668 crtc->dev = dev;
669 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000670 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800671
Rob Clark51fd3712013-11-19 12:10:12 -0500672 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200673 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
674 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100675 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800676
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300677 crtc->base.properties = &crtc->properties;
678
Rob Clark51fd3712013-11-19 12:10:12 -0500679 list_add_tail(&crtc->head, &config->crtc_list);
680 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200681
Matt Ropere13161a2014-04-01 15:22:38 -0700682 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700683 crtc->cursor = cursor;
Matt Ropere13161a2014-04-01 15:22:38 -0700684 if (primary)
685 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Roperfc1d3e42014-06-10 08:28:11 -0700686 if (cursor)
687 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700688
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100689 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
690 drm_object_attach_property(&crtc->base, config->prop_active, 0);
Daniel Stone955f3c32015-05-25 19:11:52 +0100691 drm_object_attach_property(&crtc->base, config->prop_mode_id, 0);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100692 }
693
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100694 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800695}
Matt Ropere13161a2014-04-01 15:22:38 -0700696EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800697
698/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000699 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800700 * @crtc: CRTC to cleanup
701 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000702 * This function cleans up @crtc and removes it from the DRM mode setting
703 * core. Note that the function does *not* free the crtc structure itself,
704 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800705 */
706void drm_crtc_cleanup(struct drm_crtc *crtc)
707{
708 struct drm_device *dev = crtc->dev;
709
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000710 kfree(crtc->gamma_store);
711 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800712
Rob Clark51fd3712013-11-19 12:10:12 -0500713 drm_modeset_lock_fini(&crtc->mutex);
714
Dave Airlief453ba02008-11-07 14:05:41 -0800715 drm_mode_object_put(dev, &crtc->base);
716 list_del(&crtc->head);
717 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100718
719 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
720 if (crtc->state && crtc->funcs->atomic_destroy_state)
721 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100722
723 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800724}
725EXPORT_SYMBOL(drm_crtc_cleanup);
726
727/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000728 * drm_crtc_index - find the index of a registered CRTC
729 * @crtc: CRTC to find index for
730 *
731 * Given a registered CRTC, return the index of that CRTC within a DRM
732 * device's list of CRTCs.
733 */
734unsigned int drm_crtc_index(struct drm_crtc *crtc)
735{
736 unsigned int index = 0;
737 struct drm_crtc *tmp;
738
739 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
740 if (tmp == crtc)
741 return index;
742
743 index++;
744 }
745
746 BUG();
747}
748EXPORT_SYMBOL(drm_crtc_index);
749
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100750/*
Dave Airlief453ba02008-11-07 14:05:41 -0800751 * drm_mode_remove - remove and free a mode
752 * @connector: connector list to modify
753 * @mode: mode to remove
754 *
Dave Airlief453ba02008-11-07 14:05:41 -0800755 * Remove @mode from @connector's mode list, then free it.
756 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100757static void drm_mode_remove(struct drm_connector *connector,
758 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800759{
760 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100761 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800762}
Dave Airlief453ba02008-11-07 14:05:41 -0800763
764/**
Boris Brezillonb5571e92014-07-22 12:09:10 +0200765 * drm_display_info_set_bus_formats - set the supported bus formats
766 * @info: display info to store bus formats in
Boris Brezillone37bfa12015-01-23 21:09:30 +0100767 * @formats: array containing the supported bus formats
768 * @num_formats: the number of entries in the fmts array
Boris Brezillonb5571e92014-07-22 12:09:10 +0200769 *
770 * Store the supported bus formats in display info structure.
771 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
772 * a full list of available formats.
773 */
774int drm_display_info_set_bus_formats(struct drm_display_info *info,
775 const u32 *formats,
776 unsigned int num_formats)
777{
778 u32 *fmts = NULL;
779
780 if (!formats && num_formats)
781 return -EINVAL;
782
783 if (formats && num_formats) {
784 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
785 GFP_KERNEL);
Dan Carpenter944579c2015-01-28 09:43:35 +0300786 if (!fmts)
Boris Brezillonb5571e92014-07-22 12:09:10 +0200787 return -ENOMEM;
788 }
789
790 kfree(info->bus_formats);
791 info->bus_formats = fmts;
792 info->num_bus_formats = num_formats;
793
794 return 0;
795}
796EXPORT_SYMBOL(drm_display_info_set_bus_formats);
797
798/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200799 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
800 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200801 *
802 * The kernel supports per-connector configration of its consoles through
803 * use of the video= parameter. This function parses that option and
804 * extracts the user's specified mode (or enable/disable status) for a
805 * particular connector. This is typically only used during the early fbdev
806 * setup.
807 */
808static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
809{
810 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
811 char *option = NULL;
812
813 if (fb_get_options(connector->name, &option))
814 return;
815
816 if (!drm_mode_parse_command_line_for_connector(option,
817 connector,
818 mode))
819 return;
820
821 if (mode->force) {
822 const char *s;
823
824 switch (mode->force) {
825 case DRM_FORCE_OFF:
826 s = "OFF";
827 break;
828 case DRM_FORCE_ON_DIGITAL:
829 s = "ON - dig";
830 break;
831 default:
832 case DRM_FORCE_ON:
833 s = "ON";
834 break;
835 }
836
837 DRM_INFO("forcing %s connector %s\n", connector->name, s);
838 connector->force = mode->force;
839 }
840
841 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
842 connector->name,
843 mode->xres, mode->yres,
844 mode->refresh_specified ? mode->refresh : 60,
845 mode->rb ? " reduced blanking" : "",
846 mode->margins ? " with margins" : "",
847 mode->interlace ? " interlaced" : "");
848}
849
850/**
Dave Airlief453ba02008-11-07 14:05:41 -0800851 * drm_connector_init - Init a preallocated connector
852 * @dev: DRM device
853 * @connector: the connector to init
854 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100855 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800856 *
Dave Airlief453ba02008-11-07 14:05:41 -0800857 * Initialises a preallocated connector. Connectors should be
858 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200859 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100860 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200861 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800862 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200863int drm_connector_init(struct drm_device *dev,
864 struct drm_connector *connector,
865 const struct drm_connector_funcs *funcs,
866 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800867{
Rob Clarkae16c592014-12-18 16:01:54 -0500868 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200869 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400870 struct ida *connector_ida =
871 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200872
Daniel Vetter84849902012-12-02 00:28:11 +0100873 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800874
Dave Airlie2ee39452014-07-24 11:53:45 +1000875 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200876 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300877 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200878
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300879 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800880 connector->dev = dev;
881 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800882 connector->connector_type = connector_type;
883 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400884 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
885 if (connector->connector_type_id < 0) {
886 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300887 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400888 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300889 connector->name =
890 kasprintf(GFP_KERNEL, "%s-%d",
891 drm_connector_enum_list[connector_type].name,
892 connector->connector_type_id);
893 if (!connector->name) {
894 ret = -ENOMEM;
895 goto out_put;
896 }
897
Dave Airlief453ba02008-11-07 14:05:41 -0800898 INIT_LIST_HEAD(&connector->probed_modes);
899 INIT_LIST_HEAD(&connector->modes);
900 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000901 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800902
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200903 drm_connector_get_cmdline_mode(connector);
904
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100905 /* We should add connectors at the end to avoid upsetting the connector
906 * index too much. */
Rob Clarkae16c592014-12-18 16:01:54 -0500907 list_add_tail(&connector->head, &config->connector_list);
908 config->num_connector++;
Dave Airlief453ba02008-11-07 14:05:41 -0800909
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200910 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500911 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500912 config->edid_property,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200913 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800914
Rob Clark58495562012-10-11 20:50:56 -0500915 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500916 config->dpms_property, 0);
917
918 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
919 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
920 }
Dave Airlief453ba02008-11-07 14:05:41 -0800921
Thomas Wood30f65702014-06-18 17:52:32 +0100922 connector->debugfs_entry = NULL;
923
Jani Nikula2abdd312014-05-14 16:58:19 +0300924out_put:
925 if (ret)
926 drm_mode_object_put(dev, &connector->base);
927
928out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100929 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200930
931 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800932}
933EXPORT_SYMBOL(drm_connector_init);
934
935/**
936 * drm_connector_cleanup - cleans up an initialised connector
937 * @connector: connector to cleanup
938 *
Dave Airlief453ba02008-11-07 14:05:41 -0800939 * Cleans up the connector but doesn't free the object.
940 */
941void drm_connector_cleanup(struct drm_connector *connector)
942{
943 struct drm_device *dev = connector->dev;
944 struct drm_display_mode *mode, *t;
945
Dave Airlie40d9b042014-10-20 16:29:33 +1000946 if (connector->tile_group) {
947 drm_mode_put_tile_group(dev, connector->tile_group);
948 connector->tile_group = NULL;
949 }
950
Dave Airlief453ba02008-11-07 14:05:41 -0800951 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
952 drm_mode_remove(connector, mode);
953
954 list_for_each_entry_safe(mode, t, &connector->modes, head)
955 drm_mode_remove(connector, mode);
956
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400957 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
958 connector->connector_type_id);
959
Boris Brezillonb5571e92014-07-22 12:09:10 +0200960 kfree(connector->display_info.bus_formats);
Dave Airlief453ba02008-11-07 14:05:41 -0800961 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300962 kfree(connector->name);
963 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800964 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000965 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100966
967 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
968 if (connector->state && connector->funcs->atomic_destroy_state)
969 connector->funcs->atomic_destroy_state(connector,
970 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100971
972 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800973}
974EXPORT_SYMBOL(drm_connector_cleanup);
975
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100976/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200977 * drm_connector_index - find the index of a registered connector
978 * @connector: connector to find index for
979 *
980 * Given a registered connector, return the index of that connector within a DRM
981 * device's list of connectors.
982 */
983unsigned int drm_connector_index(struct drm_connector *connector)
984{
985 unsigned int index = 0;
986 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100987 struct drm_mode_config *config = &connector->dev->mode_config;
988
989 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +0200990
991 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
992 if (tmp == connector)
993 return index;
994
995 index++;
996 }
997
998 BUG();
999}
1000EXPORT_SYMBOL(drm_connector_index);
1001
1002/**
Thomas Wood34ea3d32014-05-29 16:57:41 +01001003 * drm_connector_register - register a connector
1004 * @connector: the connector to register
1005 *
1006 * Register userspace interfaces for a connector
1007 *
1008 * Returns:
1009 * Zero on success, error code on failure.
1010 */
1011int drm_connector_register(struct drm_connector *connector)
1012{
Thomas Wood30f65702014-06-18 17:52:32 +01001013 int ret;
1014
Dave Airlie2ee39452014-07-24 11:53:45 +10001015 drm_mode_object_register(connector->dev, &connector->base);
1016
Thomas Wood30f65702014-06-18 17:52:32 +01001017 ret = drm_sysfs_connector_add(connector);
1018 if (ret)
1019 return ret;
1020
1021 ret = drm_debugfs_connector_add(connector);
1022 if (ret) {
1023 drm_sysfs_connector_remove(connector);
1024 return ret;
1025 }
1026
1027 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +01001028}
1029EXPORT_SYMBOL(drm_connector_register);
1030
1031/**
1032 * drm_connector_unregister - unregister a connector
1033 * @connector: the connector to unregister
1034 *
1035 * Unregister userspace interfaces for a connector
1036 */
1037void drm_connector_unregister(struct drm_connector *connector)
1038{
1039 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001040 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001041}
1042EXPORT_SYMBOL(drm_connector_unregister);
1043
1044
1045/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001046 * drm_connector_unplug_all - unregister connector userspace interfaces
1047 * @dev: drm device
1048 *
1049 * This function unregisters all connector userspace interfaces in sysfs. Should
1050 * be call when the device is disconnected, e.g. from an usb driver's
1051 * ->disconnect callback.
1052 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001053void drm_connector_unplug_all(struct drm_device *dev)
1054{
1055 struct drm_connector *connector;
1056
1057 /* taking the mode config mutex ends up in a clash with sysfs */
1058 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001059 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001060
1061}
1062EXPORT_SYMBOL(drm_connector_unplug_all);
1063
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001064/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001065 * drm_encoder_init - Init a preallocated encoder
1066 * @dev: drm device
1067 * @encoder: the encoder to init
1068 * @funcs: callbacks for this encoder
1069 * @encoder_type: user visible type of the encoder
1070 *
1071 * Initialises a preallocated encoder. Encoder should be
1072 * subclassed as part of driver encoder objects.
1073 *
1074 * Returns:
1075 * Zero on success, error code on failure.
1076 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001077int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001078 struct drm_encoder *encoder,
1079 const struct drm_encoder_funcs *funcs,
1080 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001081{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001082 int ret;
1083
Daniel Vetter84849902012-12-02 00:28:11 +01001084 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001085
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001086 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1087 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001088 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001089
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001090 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001091 encoder->encoder_type = encoder_type;
1092 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001093 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1094 drm_encoder_enum_list[encoder_type].name,
1095 encoder->base.id);
1096 if (!encoder->name) {
1097 ret = -ENOMEM;
1098 goto out_put;
1099 }
Dave Airlief453ba02008-11-07 14:05:41 -08001100
1101 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1102 dev->mode_config.num_encoder++;
1103
Jani Nikulae5748942014-05-14 16:58:20 +03001104out_put:
1105 if (ret)
1106 drm_mode_object_put(dev, &encoder->base);
1107
1108out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001109 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001110
1111 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001112}
1113EXPORT_SYMBOL(drm_encoder_init);
1114
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001115/**
1116 * drm_encoder_cleanup - cleans up an initialised encoder
1117 * @encoder: encoder to cleanup
1118 *
1119 * Cleans up the encoder but doesn't free the object.
1120 */
Dave Airlief453ba02008-11-07 14:05:41 -08001121void drm_encoder_cleanup(struct drm_encoder *encoder)
1122{
1123 struct drm_device *dev = encoder->dev;
Thierry Reding4dfd9092014-12-10 13:03:34 +01001124
Daniel Vetter84849902012-12-02 00:28:11 +01001125 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001126 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001127 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001128 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001129 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001130 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001131
1132 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001133}
1134EXPORT_SYMBOL(drm_encoder_cleanup);
1135
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001136/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001137 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001138 * @dev: DRM device
1139 * @plane: plane object to init
1140 * @possible_crtcs: bitmask of possible CRTCs
1141 * @funcs: callbacks for the new plane
1142 * @formats: array of supported formats (%DRM_FORMAT_*)
1143 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001144 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001145 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001146 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001147 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001148 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001149 * Zero on success, error code on failure.
1150 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001151int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1152 unsigned long possible_crtcs,
1153 const struct drm_plane_funcs *funcs,
1154 const uint32_t *formats, uint32_t format_count,
1155 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001156{
Rob Clark6b4959f2014-12-18 16:01:53 -05001157 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001158 int ret;
1159
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001160 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1161 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001162 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001163
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001164 drm_modeset_lock_init(&plane->mutex);
1165
Rob Clark4d939142012-05-17 02:23:27 -06001166 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001167 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001168 plane->funcs = funcs;
Thierry Reding2f6c5382014-12-10 13:03:36 +01001169 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1170 GFP_KERNEL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001171 if (!plane->format_types) {
1172 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1173 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001174 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001175 }
1176
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001177 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001178 plane->format_count = format_count;
1179 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001180 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001181
Rob Clark6b4959f2014-12-18 16:01:53 -05001182 list_add_tail(&plane->head, &config->plane_list);
1183 config->num_total_plane++;
Matt Roperdc415ff2014-04-01 15:22:36 -07001184 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Rob Clark6b4959f2014-12-18 16:01:53 -05001185 config->num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001186
Rob Clark9922ab52014-04-01 20:16:57 -04001187 drm_object_attach_property(&plane->base,
Rob Clark6b4959f2014-12-18 16:01:53 -05001188 config->plane_type_property,
Rob Clark9922ab52014-04-01 20:16:57 -04001189 plane->type);
1190
Rob Clark6b4959f2014-12-18 16:01:53 -05001191 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1192 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1193 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1194 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1195 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1196 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1197 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1198 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1199 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1200 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1201 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1202 }
1203
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001204 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001205}
Matt Roperdc415ff2014-04-01 15:22:36 -07001206EXPORT_SYMBOL(drm_universal_plane_init);
1207
1208/**
1209 * drm_plane_init - Initialize a legacy plane
1210 * @dev: DRM device
1211 * @plane: plane object to init
1212 * @possible_crtcs: bitmask of possible CRTCs
1213 * @funcs: callbacks for the new plane
1214 * @formats: array of supported formats (%DRM_FORMAT_*)
1215 * @format_count: number of elements in @formats
1216 * @is_primary: plane type (primary vs overlay)
1217 *
1218 * Legacy API to initialize a DRM plane.
1219 *
1220 * New drivers should call drm_universal_plane_init() instead.
1221 *
1222 * Returns:
1223 * Zero on success, error code on failure.
1224 */
1225int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1226 unsigned long possible_crtcs,
1227 const struct drm_plane_funcs *funcs,
1228 const uint32_t *formats, uint32_t format_count,
1229 bool is_primary)
1230{
1231 enum drm_plane_type type;
1232
1233 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1234 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1235 formats, format_count, type);
1236}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001237EXPORT_SYMBOL(drm_plane_init);
1238
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001239/**
1240 * drm_plane_cleanup - Clean up the core plane usage
1241 * @plane: plane to cleanup
1242 *
1243 * This function cleans up @plane and removes it from the DRM mode setting
1244 * core. Note that the function does *not* free the plane structure itself,
1245 * this is the responsibility of the caller.
1246 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001247void drm_plane_cleanup(struct drm_plane *plane)
1248{
1249 struct drm_device *dev = plane->dev;
1250
Daniel Vetter84849902012-12-02 00:28:11 +01001251 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001252 kfree(plane->format_types);
1253 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001254
1255 BUG_ON(list_empty(&plane->head));
1256
1257 list_del(&plane->head);
1258 dev->mode_config.num_total_plane--;
1259 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1260 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001261 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001262
1263 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1264 if (plane->state && plane->funcs->atomic_destroy_state)
1265 plane->funcs->atomic_destroy_state(plane, plane->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001266
1267 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001268}
1269EXPORT_SYMBOL(drm_plane_cleanup);
1270
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001271/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001272 * drm_plane_index - find the index of a registered plane
1273 * @plane: plane to find index for
1274 *
1275 * Given a registered plane, return the index of that CRTC within a DRM
1276 * device's list of planes.
1277 */
1278unsigned int drm_plane_index(struct drm_plane *plane)
1279{
1280 unsigned int index = 0;
1281 struct drm_plane *tmp;
1282
1283 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1284 if (tmp == plane)
1285 return index;
1286
1287 index++;
1288 }
1289
1290 BUG();
1291}
1292EXPORT_SYMBOL(drm_plane_index);
1293
1294/**
Chandra Konduruf81338a2015-04-09 17:36:21 -07001295 * drm_plane_from_index - find the registered plane at an index
1296 * @dev: DRM device
1297 * @idx: index of registered plane to find for
1298 *
1299 * Given a plane index, return the registered plane from DRM device's
1300 * list of planes with matching index.
1301 */
1302struct drm_plane *
1303drm_plane_from_index(struct drm_device *dev, int idx)
1304{
1305 struct drm_plane *plane;
1306 unsigned int i = 0;
1307
Daniel Vetter6295d602015-07-09 23:44:25 +02001308 drm_for_each_plane(plane, dev) {
Chandra Konduruf81338a2015-04-09 17:36:21 -07001309 if (i == idx)
1310 return plane;
1311 i++;
1312 }
1313 return NULL;
1314}
1315EXPORT_SYMBOL(drm_plane_from_index);
1316
1317/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001318 * drm_plane_force_disable - Forcibly disable a plane
1319 * @plane: plane to disable
1320 *
1321 * Forces the plane to be disabled.
1322 *
1323 * Used when the plane's current framebuffer is destroyed,
1324 * and when restoring fbdev mode.
1325 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001326void drm_plane_force_disable(struct drm_plane *plane)
1327{
1328 int ret;
1329
Daniel Vetter3d30a592014-07-27 13:42:42 +02001330 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001331 return;
1332
Daniel Vetter3d30a592014-07-27 13:42:42 +02001333 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001334 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001335 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001336 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001337 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001338 return;
1339 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001340 /* disconnect the plane from the fb and crtc: */
Daniel Vetter220dd2b2015-02-27 12:58:13 +01001341 drm_framebuffer_unreference(plane->old_fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02001342 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001343 plane->fb = NULL;
1344 plane->crtc = NULL;
1345}
1346EXPORT_SYMBOL(drm_plane_force_disable);
1347
Rob Clark6b4959f2014-12-18 16:01:53 -05001348static int drm_mode_create_standard_properties(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -08001349{
Rob Clark356af0e2014-12-18 16:01:52 -05001350 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001351
1352 /*
1353 * Standard properties (apply to all connectors)
1354 */
Rob Clark356af0e2014-12-18 16:01:52 -05001355 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
Dave Airlief453ba02008-11-07 14:05:41 -08001356 DRM_MODE_PROP_IMMUTABLE,
1357 "EDID", 0);
Rob Clark356af0e2014-12-18 16:01:52 -05001358 if (!prop)
1359 return -ENOMEM;
1360 dev->mode_config.edid_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001361
Rob Clark356af0e2014-12-18 16:01:52 -05001362 prop = drm_property_create_enum(dev, 0,
Sascha Hauer4a67d392012-02-06 10:58:17 +01001363 "DPMS", drm_dpms_enum_list,
1364 ARRAY_SIZE(drm_dpms_enum_list));
Rob Clark356af0e2014-12-18 16:01:52 -05001365 if (!prop)
1366 return -ENOMEM;
1367 dev->mode_config.dpms_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001368
Rob Clark356af0e2014-12-18 16:01:52 -05001369 prop = drm_property_create(dev,
1370 DRM_MODE_PROP_BLOB |
1371 DRM_MODE_PROP_IMMUTABLE,
1372 "PATH", 0);
1373 if (!prop)
1374 return -ENOMEM;
1375 dev->mode_config.path_property = prop;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001376
Rob Clark356af0e2014-12-18 16:01:52 -05001377 prop = drm_property_create(dev,
1378 DRM_MODE_PROP_BLOB |
1379 DRM_MODE_PROP_IMMUTABLE,
1380 "TILE", 0);
1381 if (!prop)
1382 return -ENOMEM;
1383 dev->mode_config.tile_property = prop;
Dave Airlie6f134d72014-10-20 16:30:50 +10001384
Rob Clark6b4959f2014-12-18 16:01:53 -05001385 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Rob Clark9922ab52014-04-01 20:16:57 -04001386 "type", drm_plane_type_enum_list,
1387 ARRAY_SIZE(drm_plane_type_enum_list));
Rob Clark6b4959f2014-12-18 16:01:53 -05001388 if (!prop)
1389 return -ENOMEM;
1390 dev->mode_config.plane_type_property = prop;
1391
1392 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1393 "SRC_X", 0, UINT_MAX);
1394 if (!prop)
1395 return -ENOMEM;
1396 dev->mode_config.prop_src_x = prop;
1397
1398 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1399 "SRC_Y", 0, UINT_MAX);
1400 if (!prop)
1401 return -ENOMEM;
1402 dev->mode_config.prop_src_y = prop;
1403
1404 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1405 "SRC_W", 0, UINT_MAX);
1406 if (!prop)
1407 return -ENOMEM;
1408 dev->mode_config.prop_src_w = prop;
1409
1410 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1411 "SRC_H", 0, UINT_MAX);
1412 if (!prop)
1413 return -ENOMEM;
1414 dev->mode_config.prop_src_h = prop;
1415
1416 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1417 "CRTC_X", INT_MIN, INT_MAX);
1418 if (!prop)
1419 return -ENOMEM;
1420 dev->mode_config.prop_crtc_x = prop;
1421
1422 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1423 "CRTC_Y", INT_MIN, INT_MAX);
1424 if (!prop)
1425 return -ENOMEM;
1426 dev->mode_config.prop_crtc_y = prop;
1427
1428 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1429 "CRTC_W", 0, INT_MAX);
1430 if (!prop)
1431 return -ENOMEM;
1432 dev->mode_config.prop_crtc_w = prop;
1433
1434 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1435 "CRTC_H", 0, INT_MAX);
1436 if (!prop)
1437 return -ENOMEM;
1438 dev->mode_config.prop_crtc_h = prop;
1439
1440 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1441 "FB_ID", DRM_MODE_OBJECT_FB);
1442 if (!prop)
1443 return -ENOMEM;
1444 dev->mode_config.prop_fb_id = prop;
1445
1446 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1447 "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1448 if (!prop)
1449 return -ENOMEM;
1450 dev->mode_config.prop_crtc_id = prop;
Rob Clark9922ab52014-04-01 20:16:57 -04001451
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001452 prop = drm_property_create_bool(dev, DRM_MODE_PROP_ATOMIC,
1453 "ACTIVE");
1454 if (!prop)
1455 return -ENOMEM;
1456 dev->mode_config.prop_active = prop;
1457
Daniel Stone955f3c32015-05-25 19:11:52 +01001458 prop = drm_property_create(dev,
1459 DRM_MODE_PROP_ATOMIC | DRM_MODE_PROP_BLOB,
1460 "MODE_ID", 0);
1461 if (!prop)
1462 return -ENOMEM;
1463 dev->mode_config.prop_mode_id = prop;
1464
Rob Clark9922ab52014-04-01 20:16:57 -04001465 return 0;
1466}
1467
Dave Airlief453ba02008-11-07 14:05:41 -08001468/**
1469 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1470 * @dev: DRM device
1471 *
1472 * Called by a driver the first time a DVI-I connector is made.
1473 */
1474int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1475{
1476 struct drm_property *dvi_i_selector;
1477 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001478
1479 if (dev->mode_config.dvi_i_select_subconnector_property)
1480 return 0;
1481
1482 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001483 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001484 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001485 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001486 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001487 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1488
Sascha Hauer4a67d392012-02-06 10:58:17 +01001489 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001490 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001491 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001492 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001493 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1494
1495 return 0;
1496}
1497EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1498
1499/**
1500 * drm_create_tv_properties - create TV specific connector properties
1501 * @dev: DRM device
1502 * @num_modes: number of different TV formats (modes) supported
1503 * @modes: array of pointers to strings containing name of each format
1504 *
1505 * Called by a driver's TV initialization routine, this function creates
1506 * the TV specific connector properties for a given device. Caller is
1507 * responsible for allocating a list of format names and passing them to
1508 * this routine.
1509 */
Thierry Reding2f763312014-10-13 12:45:57 +02001510int drm_mode_create_tv_properties(struct drm_device *dev,
1511 unsigned int num_modes,
Dave Airlief453ba02008-11-07 14:05:41 -08001512 char *modes[])
1513{
1514 struct drm_property *tv_selector;
1515 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001516 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001517
1518 if (dev->mode_config.tv_select_subconnector_property)
1519 return 0;
1520
1521 /*
1522 * Basic connector properties
1523 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001524 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001525 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001526 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001527 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001528 dev->mode_config.tv_select_subconnector_property = tv_selector;
1529
1530 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001531 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1532 "subconnector",
1533 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001534 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001535 dev->mode_config.tv_subconnector_property = tv_subconnector;
1536
1537 /*
1538 * Other, TV specific properties: margins & TV modes.
1539 */
1540 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001541 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001542
1543 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001544 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001545
1546 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001547 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001548
1549 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001550 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001551
1552 dev->mode_config.tv_mode_property =
1553 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1554 "mode", num_modes);
1555 for (i = 0; i < num_modes; i++)
1556 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1557 i, modes[i]);
1558
Francisco Jerezb6b79022009-08-02 04:19:20 +02001559 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001560 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001561
1562 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001563 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001564
1565 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001566 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001567
Francisco Jereza75f0232009-08-12 02:30:10 +02001568 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001569 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001570
1571 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001572 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001573
1574 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001575 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001576
Dave Airlief453ba02008-11-07 14:05:41 -08001577 return 0;
1578}
1579EXPORT_SYMBOL(drm_mode_create_tv_properties);
1580
1581/**
1582 * drm_mode_create_scaling_mode_property - create scaling mode property
1583 * @dev: DRM device
1584 *
1585 * Called by a driver the first time it's needed, must be attached to desired
1586 * connectors.
1587 */
1588int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1589{
1590 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001591
1592 if (dev->mode_config.scaling_mode_property)
1593 return 0;
1594
1595 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001596 drm_property_create_enum(dev, 0, "scaling mode",
1597 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001598 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001599
1600 dev->mode_config.scaling_mode_property = scaling_mode;
1601
1602 return 0;
1603}
1604EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1605
1606/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301607 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1608 * @dev: DRM device
1609 *
1610 * Called by a driver the first time it's needed, must be attached to desired
1611 * connectors.
1612 *
1613 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001614 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301615 */
1616int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1617{
1618 if (dev->mode_config.aspect_ratio_property)
1619 return 0;
1620
1621 dev->mode_config.aspect_ratio_property =
1622 drm_property_create_enum(dev, 0, "aspect ratio",
1623 drm_aspect_ratio_enum_list,
1624 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1625
1626 if (dev->mode_config.aspect_ratio_property == NULL)
1627 return -ENOMEM;
1628
1629 return 0;
1630}
1631EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1632
1633/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001634 * drm_mode_create_dirty_property - create dirty property
1635 * @dev: DRM device
1636 *
1637 * Called by a driver the first time it's needed, must be attached to desired
1638 * connectors.
1639 */
1640int drm_mode_create_dirty_info_property(struct drm_device *dev)
1641{
1642 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001643
1644 if (dev->mode_config.dirty_info_property)
1645 return 0;
1646
1647 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001648 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001649 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001650 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001651 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001652 dev->mode_config.dirty_info_property = dirty_info;
1653
1654 return 0;
1655}
1656EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1657
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001658/**
1659 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1660 * @dev: DRM device
1661 *
1662 * Create the the suggested x/y offset property for connectors.
1663 */
1664int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1665{
1666 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1667 return 0;
1668
1669 dev->mode_config.suggested_x_property =
1670 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1671
1672 dev->mode_config.suggested_y_property =
1673 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1674
1675 if (dev->mode_config.suggested_x_property == NULL ||
1676 dev->mode_config.suggested_y_property == NULL)
1677 return -ENOMEM;
1678 return 0;
1679}
1680EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1681
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001682static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001683{
1684 uint32_t total_objects = 0;
1685
1686 total_objects += dev->mode_config.num_crtc;
1687 total_objects += dev->mode_config.num_connector;
1688 total_objects += dev->mode_config.num_encoder;
1689
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01001690 group->id_list = kcalloc(total_objects, sizeof(uint32_t), GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08001691 if (!group->id_list)
1692 return -ENOMEM;
1693
1694 group->num_crtcs = 0;
1695 group->num_connectors = 0;
1696 group->num_encoders = 0;
1697 return 0;
1698}
1699
Dave Airliead222792014-05-02 13:22:19 +10001700void drm_mode_group_destroy(struct drm_mode_group *group)
1701{
1702 kfree(group->id_list);
1703 group->id_list = NULL;
1704}
1705
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001706/*
1707 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1708 * the drm core's responsibility to set up mode control groups.
1709 */
Dave Airlief453ba02008-11-07 14:05:41 -08001710int drm_mode_group_init_legacy_group(struct drm_device *dev,
1711 struct drm_mode_group *group)
1712{
1713 struct drm_crtc *crtc;
1714 struct drm_encoder *encoder;
1715 struct drm_connector *connector;
1716 int ret;
1717
Thierry Reding0cc0b222014-12-10 13:03:37 +01001718 ret = drm_mode_group_init(dev, group);
1719 if (ret)
Dave Airlief453ba02008-11-07 14:05:41 -08001720 return ret;
1721
1722 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1723 group->id_list[group->num_crtcs++] = crtc->base.id;
1724
1725 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1726 group->id_list[group->num_crtcs + group->num_encoders++] =
1727 encoder->base.id;
1728
1729 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1730 group->id_list[group->num_crtcs + group->num_encoders +
1731 group->num_connectors++] = connector->base.id;
1732
1733 return 0;
1734}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001735EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001736
Dave Airlie2390cd12014-06-05 14:01:29 +10001737void drm_reinit_primary_mode_group(struct drm_device *dev)
1738{
1739 drm_modeset_lock_all(dev);
1740 drm_mode_group_destroy(&dev->primary->mode_group);
1741 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1742 drm_modeset_unlock_all(dev);
1743}
1744EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1745
Dave Airlief453ba02008-11-07 14:05:41 -08001746/**
Dave Airlief453ba02008-11-07 14:05:41 -08001747 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001748 * @dev: drm device for the ioctl
1749 * @data: data pointer for the ioctl
1750 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001751 *
Dave Airlief453ba02008-11-07 14:05:41 -08001752 * Construct a set of configuration description structures and return
1753 * them to the user, including CRTC, connector and framebuffer configuration.
1754 *
1755 * Called by the user via ioctl.
1756 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001757 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001758 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001759 */
1760int drm_mode_getresources(struct drm_device *dev, void *data,
1761 struct drm_file *file_priv)
1762{
1763 struct drm_mode_card_res *card_res = data;
1764 struct list_head *lh;
1765 struct drm_framebuffer *fb;
1766 struct drm_connector *connector;
1767 struct drm_crtc *crtc;
1768 struct drm_encoder *encoder;
1769 int ret = 0;
1770 int connector_count = 0;
1771 int crtc_count = 0;
1772 int fb_count = 0;
1773 int encoder_count = 0;
1774 int copied = 0, i;
1775 uint32_t __user *fb_id;
1776 uint32_t __user *crtc_id;
1777 uint32_t __user *connector_id;
1778 uint32_t __user *encoder_id;
1779 struct drm_mode_group *mode_group;
1780
Dave Airliefb3b06c2011-02-08 13:55:21 +10001781 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1782 return -EINVAL;
1783
Dave Airlief453ba02008-11-07 14:05:41 -08001784
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001785 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001786 /*
1787 * For the non-control nodes we need to limit the list of resources
1788 * by IDs in the group list for this node
1789 */
1790 list_for_each(lh, &file_priv->fbs)
1791 fb_count++;
1792
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001793 /* handle this in 4 parts */
1794 /* FBs */
1795 if (card_res->count_fbs >= fb_count) {
1796 copied = 0;
1797 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1798 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1799 if (put_user(fb->base.id, fb_id + copied)) {
1800 mutex_unlock(&file_priv->fbs_lock);
1801 return -EFAULT;
1802 }
1803 copied++;
1804 }
1805 }
1806 card_res->count_fbs = fb_count;
1807 mutex_unlock(&file_priv->fbs_lock);
1808
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001809 /* mode_config.mutex protects the connector list against e.g. DP MST
1810 * connector hot-adding. CRTC/Plane lists are invariant. */
1811 mutex_lock(&dev->mode_config.mutex);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001812 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001813
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001814 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001815 list_for_each(lh, &dev->mode_config.crtc_list)
1816 crtc_count++;
1817
1818 list_for_each(lh, &dev->mode_config.connector_list)
1819 connector_count++;
1820
1821 list_for_each(lh, &dev->mode_config.encoder_list)
1822 encoder_count++;
1823 } else {
1824
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001825 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001826 crtc_count = mode_group->num_crtcs;
1827 connector_count = mode_group->num_connectors;
1828 encoder_count = mode_group->num_encoders;
1829 }
1830
1831 card_res->max_height = dev->mode_config.max_height;
1832 card_res->min_height = dev->mode_config.min_height;
1833 card_res->max_width = dev->mode_config.max_width;
1834 card_res->min_width = dev->mode_config.min_width;
1835
Dave Airlief453ba02008-11-07 14:05:41 -08001836 /* CRTCs */
1837 if (card_res->count_crtcs >= crtc_count) {
1838 copied = 0;
1839 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001840 if (!mode_group) {
Daniel Vetter6295d602015-07-09 23:44:25 +02001841 drm_for_each_crtc(crtc, dev) {
Jerome Glisse94401062010-07-15 15:43:25 -04001842 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001843 if (put_user(crtc->base.id, crtc_id + copied)) {
1844 ret = -EFAULT;
1845 goto out;
1846 }
1847 copied++;
1848 }
1849 } else {
1850 for (i = 0; i < mode_group->num_crtcs; i++) {
1851 if (put_user(mode_group->id_list[i],
1852 crtc_id + copied)) {
1853 ret = -EFAULT;
1854 goto out;
1855 }
1856 copied++;
1857 }
1858 }
1859 }
1860 card_res->count_crtcs = crtc_count;
1861
1862 /* Encoders */
1863 if (card_res->count_encoders >= encoder_count) {
1864 copied = 0;
1865 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001866 if (!mode_group) {
Daniel Vetter6295d602015-07-09 23:44:25 +02001867 drm_for_each_encoder(encoder, dev) {
Jerome Glisse94401062010-07-15 15:43:25 -04001868 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001869 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001870 if (put_user(encoder->base.id, encoder_id +
1871 copied)) {
1872 ret = -EFAULT;
1873 goto out;
1874 }
1875 copied++;
1876 }
1877 } else {
1878 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1879 if (put_user(mode_group->id_list[i],
1880 encoder_id + copied)) {
1881 ret = -EFAULT;
1882 goto out;
1883 }
1884 copied++;
1885 }
1886
1887 }
1888 }
1889 card_res->count_encoders = encoder_count;
1890
1891 /* Connectors */
1892 if (card_res->count_connectors >= connector_count) {
1893 copied = 0;
1894 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001895 if (!mode_group) {
Daniel Vetter6295d602015-07-09 23:44:25 +02001896 drm_for_each_connector(connector, dev) {
Jerome Glisse94401062010-07-15 15:43:25 -04001897 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1898 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001899 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001900 if (put_user(connector->base.id,
1901 connector_id + copied)) {
1902 ret = -EFAULT;
1903 goto out;
1904 }
1905 copied++;
1906 }
1907 } else {
1908 int start = mode_group->num_crtcs +
1909 mode_group->num_encoders;
1910 for (i = start; i < start + mode_group->num_connectors; i++) {
1911 if (put_user(mode_group->id_list[i],
1912 connector_id + copied)) {
1913 ret = -EFAULT;
1914 goto out;
1915 }
1916 copied++;
1917 }
1918 }
1919 }
1920 card_res->count_connectors = connector_count;
1921
Jerome Glisse94401062010-07-15 15:43:25 -04001922 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001923 card_res->count_connectors, card_res->count_encoders);
1924
1925out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001926 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001927 return ret;
1928}
1929
1930/**
1931 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001932 * @dev: drm device for the ioctl
1933 * @data: data pointer for the ioctl
1934 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001935 *
Dave Airlief453ba02008-11-07 14:05:41 -08001936 * Construct a CRTC configuration structure to return to the user.
1937 *
1938 * Called by the user via ioctl.
1939 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001940 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001941 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001942 */
1943int drm_mode_getcrtc(struct drm_device *dev,
1944 void *data, struct drm_file *file_priv)
1945{
1946 struct drm_mode_crtc *crtc_resp = data;
1947 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001948
Dave Airliefb3b06c2011-02-08 13:55:21 +10001949 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1950 return -EINVAL;
1951
Rob Clarka2b34e22013-10-05 16:36:52 -04001952 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001953 if (!crtc)
1954 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001955
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001956 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08001957 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07001958 if (crtc->primary->fb)
1959 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08001960 else
1961 crtc_resp->fb_id = 0;
1962
Daniel Vetter31c946e2015-02-22 12:24:17 +01001963 if (crtc->state) {
1964 crtc_resp->x = crtc->primary->state->src_x >> 16;
1965 crtc_resp->y = crtc->primary->state->src_y >> 16;
1966 if (crtc->state->enable) {
Daniel Stone934a8a82015-05-22 13:34:48 +01001967 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->state->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +01001968 crtc_resp->mode_valid = 1;
Dave Airlief453ba02008-11-07 14:05:41 -08001969
Daniel Vetter31c946e2015-02-22 12:24:17 +01001970 } else {
1971 crtc_resp->mode_valid = 0;
1972 }
Dave Airlief453ba02008-11-07 14:05:41 -08001973 } else {
Daniel Vetter31c946e2015-02-22 12:24:17 +01001974 crtc_resp->x = crtc->x;
1975 crtc_resp->y = crtc->y;
1976 if (crtc->enabled) {
Daniel Stone934a8a82015-05-22 13:34:48 +01001977 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +01001978 crtc_resp->mode_valid = 1;
1979
1980 } else {
1981 crtc_resp->mode_valid = 0;
1982 }
Dave Airlief453ba02008-11-07 14:05:41 -08001983 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001984 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08001985
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001986 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001987}
1988
Damien Lespiau61d8e322013-09-25 16:45:22 +01001989static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1990 const struct drm_file *file_priv)
1991{
1992 /*
1993 * If user-space hasn't configured the driver to expose the stereo 3D
1994 * modes, don't expose them.
1995 */
1996 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1997 return false;
1998
1999 return true;
2000}
2001
Daniel Vetterabd69c52014-11-25 23:50:05 +01002002static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
2003{
2004 /* For atomic drivers only state objects are synchronously updated and
2005 * protected by modeset locks, so check those first. */
2006 if (connector->state)
2007 return connector->state->best_encoder;
2008 return connector->encoder;
2009}
2010
Rob Clark95cbf112014-12-18 16:01:49 -05002011/* helper for getconnector and getproperties ioctls */
Rob Clark88a48e22014-12-18 16:01:50 -05002012static int get_properties(struct drm_mode_object *obj, bool atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002013 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
2014 uint32_t *arg_count_props)
2015{
Rob Clark88a48e22014-12-18 16:01:50 -05002016 int props_count;
2017 int i, ret, copied;
2018
2019 props_count = obj->properties->count;
2020 if (!atomic)
2021 props_count -= obj->properties->atomic_count;
Rob Clark95cbf112014-12-18 16:01:49 -05002022
2023 if ((*arg_count_props >= props_count) && props_count) {
Rob Clark88a48e22014-12-18 16:01:50 -05002024 for (i = 0, copied = 0; copied < props_count; i++) {
Rob Clark95cbf112014-12-18 16:01:49 -05002025 struct drm_property *prop = obj->properties->properties[i];
2026 uint64_t val;
2027
Rob Clark88a48e22014-12-18 16:01:50 -05002028 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
2029 continue;
2030
Rob Clark95cbf112014-12-18 16:01:49 -05002031 ret = drm_object_property_get_value(obj, prop, &val);
2032 if (ret)
2033 return ret;
2034
2035 if (put_user(prop->base.id, prop_ptr + copied))
2036 return -EFAULT;
2037
2038 if (put_user(val, prop_values + copied))
2039 return -EFAULT;
2040
2041 copied++;
2042 }
2043 }
2044 *arg_count_props = props_count;
2045
2046 return 0;
2047}
2048
Dave Airlief453ba02008-11-07 14:05:41 -08002049/**
2050 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002051 * @dev: drm device for the ioctl
2052 * @data: data pointer for the ioctl
2053 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002054 *
Dave Airlief453ba02008-11-07 14:05:41 -08002055 * Construct a connector configuration structure to return to the user.
2056 *
2057 * Called by the user via ioctl.
2058 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002059 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002060 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002061 */
2062int drm_mode_getconnector(struct drm_device *dev, void *data,
2063 struct drm_file *file_priv)
2064{
2065 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002066 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002067 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08002068 struct drm_display_mode *mode;
2069 int mode_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002070 int encoders_count = 0;
2071 int ret = 0;
2072 int copied = 0;
2073 int i;
2074 struct drm_mode_modeinfo u_mode;
2075 struct drm_mode_modeinfo __user *mode_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002076 uint32_t __user *encoder_ptr;
2077
Dave Airliefb3b06c2011-02-08 13:55:21 +10002078 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2079 return -EINVAL;
2080
Dave Airlief453ba02008-11-07 14:05:41 -08002081 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
2082
Jerome Glisse94401062010-07-15 15:43:25 -04002083 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08002084
Daniel Vetter7b240562012-12-12 00:35:33 +01002085 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08002086
Rob Clarka2b34e22013-10-05 16:36:52 -04002087 connector = drm_connector_find(dev, out_resp->connector_id);
2088 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002089 ret = -ENOENT;
Tommi Rantala04bdf442015-04-03 10:45:29 +03002090 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08002091 }
Dave Airlief453ba02008-11-07 14:05:41 -08002092
Thierry Reding01073b02014-12-10 13:03:38 +01002093 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
2094 if (connector->encoder_ids[i] != 0)
Dave Airlief453ba02008-11-07 14:05:41 -08002095 encoders_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002096
2097 if (out_resp->count_modes == 0) {
2098 connector->funcs->fill_modes(connector,
2099 dev->mode_config.max_width,
2100 dev->mode_config.max_height);
2101 }
2102
2103 /* delayed so we get modes regardless of pre-fill_modes state */
2104 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002105 if (drm_mode_expose_to_userspace(mode, file_priv))
2106 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002107
2108 out_resp->connector_id = connector->base.id;
2109 out_resp->connector_type = connector->connector_type;
2110 out_resp->connector_type_id = connector->connector_type_id;
2111 out_resp->mm_width = connector->display_info.width_mm;
2112 out_resp->mm_height = connector->display_info.height_mm;
2113 out_resp->subpixel = connector->display_info.subpixel_order;
2114 out_resp->connection = connector->status;
Daniel Vetter2caa80e2015-02-22 11:38:36 +01002115
2116 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002117 encoder = drm_connector_get_encoder(connector);
2118 if (encoder)
2119 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002120 else
2121 out_resp->encoder_id = 0;
2122
2123 /*
2124 * This ioctl is called twice, once to determine how much space is
2125 * needed, and the 2nd time to fill it.
2126 */
2127 if ((out_resp->count_modes >= mode_count) && mode_count) {
2128 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002129 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002130 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002131 if (!drm_mode_expose_to_userspace(mode, file_priv))
2132 continue;
2133
Daniel Stone934a8a82015-05-22 13:34:48 +01002134 drm_mode_convert_to_umode(&u_mode, mode);
Dave Airlief453ba02008-11-07 14:05:41 -08002135 if (copy_to_user(mode_ptr + copied,
2136 &u_mode, sizeof(u_mode))) {
2137 ret = -EFAULT;
2138 goto out;
2139 }
2140 copied++;
2141 }
2142 }
2143 out_resp->count_modes = mode_count;
2144
Rob Clark88a48e22014-12-18 16:01:50 -05002145 ret = get_properties(&connector->base, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002146 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2147 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2148 &out_resp->count_props);
2149 if (ret)
2150 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002151
2152 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2153 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002154 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002155 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2156 if (connector->encoder_ids[i] != 0) {
2157 if (put_user(connector->encoder_ids[i],
2158 encoder_ptr + copied)) {
2159 ret = -EFAULT;
2160 goto out;
2161 }
2162 copied++;
2163 }
2164 }
2165 }
2166 out_resp->count_encoders = encoders_count;
2167
2168out:
Rob Clarkccfc0862014-12-18 16:01:48 -05002169 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Tommi Rantala04bdf442015-04-03 10:45:29 +03002170
2171out_unlock:
Daniel Vetter7b240562012-12-12 00:35:33 +01002172 mutex_unlock(&dev->mode_config.mutex);
2173
Dave Airlief453ba02008-11-07 14:05:41 -08002174 return ret;
2175}
2176
Daniel Vetterabd69c52014-11-25 23:50:05 +01002177static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2178{
2179 struct drm_connector *connector;
2180 struct drm_device *dev = encoder->dev;
2181 bool uses_atomic = false;
2182
2183 /* For atomic drivers only state objects are synchronously updated and
2184 * protected by modeset locks, so check those first. */
Daniel Vetter6295d602015-07-09 23:44:25 +02002185 drm_for_each_connector(connector, dev) {
Daniel Vetterabd69c52014-11-25 23:50:05 +01002186 if (!connector->state)
2187 continue;
2188
2189 uses_atomic = true;
2190
2191 if (connector->state->best_encoder != encoder)
2192 continue;
2193
2194 return connector->state->crtc;
2195 }
2196
2197 /* Don't return stale data (e.g. pending async disable). */
2198 if (uses_atomic)
2199 return NULL;
2200
2201 return encoder->crtc;
2202}
2203
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002204/**
2205 * drm_mode_getencoder - get encoder configuration
2206 * @dev: drm device for the ioctl
2207 * @data: data pointer for the ioctl
2208 * @file_priv: drm file for the ioctl call
2209 *
2210 * Construct a encoder configuration structure to return to the user.
2211 *
2212 * Called by the user via ioctl.
2213 *
2214 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002215 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002216 */
Dave Airlief453ba02008-11-07 14:05:41 -08002217int drm_mode_getencoder(struct drm_device *dev, void *data,
2218 struct drm_file *file_priv)
2219{
2220 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002221 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002222 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002223
Dave Airliefb3b06c2011-02-08 13:55:21 +10002224 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2225 return -EINVAL;
2226
Rob Clarka2b34e22013-10-05 16:36:52 -04002227 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002228 if (!encoder)
2229 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002230
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002231 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002232 crtc = drm_encoder_get_crtc(encoder);
2233 if (crtc)
2234 enc_resp->crtc_id = crtc->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002235 else
2236 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002237 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2238
Dave Airlief453ba02008-11-07 14:05:41 -08002239 enc_resp->encoder_type = encoder->encoder_type;
2240 enc_resp->encoder_id = encoder->base.id;
2241 enc_resp->possible_crtcs = encoder->possible_crtcs;
2242 enc_resp->possible_clones = encoder->possible_clones;
2243
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002244 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002245}
2246
2247/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002248 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002249 * @dev: DRM device
2250 * @data: ioctl data
2251 * @file_priv: DRM file info
2252 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002253 * Construct a list of plane ids to return to the user.
2254 *
2255 * Called by the user via ioctl.
2256 *
2257 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002258 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002259 */
2260int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002261 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002262{
2263 struct drm_mode_get_plane_res *plane_resp = data;
2264 struct drm_mode_config *config;
2265 struct drm_plane *plane;
2266 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002267 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002268 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002269
2270 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2271 return -EINVAL;
2272
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002273 config = &dev->mode_config;
2274
Matt Roper681e7ec2014-04-01 15:22:42 -07002275 if (file_priv->universal_planes)
2276 num_planes = config->num_total_plane;
2277 else
2278 num_planes = config->num_overlay_plane;
2279
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002280 /*
2281 * This ioctl is called twice, once to determine how much space is
2282 * needed, and the 2nd time to fill it.
2283 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002284 if (num_planes &&
2285 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002286 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002287
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002288 /* Plane lists are invariant, no locking needed. */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002289 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002290 /*
2291 * Unless userspace set the 'universal planes'
2292 * capability bit, only advertise overlays.
2293 */
2294 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2295 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002296 continue;
2297
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002298 if (put_user(plane->base.id, plane_ptr + copied))
2299 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002300 copied++;
2301 }
2302 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002303 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002304
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002305 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002306}
2307
2308/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002309 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002310 * @dev: DRM device
2311 * @data: ioctl data
2312 * @file_priv: DRM file info
2313 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002314 * Construct a plane configuration structure to return to the user.
2315 *
2316 * Called by the user via ioctl.
2317 *
2318 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002319 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002320 */
2321int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002322 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002323{
2324 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002325 struct drm_plane *plane;
2326 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002327
2328 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2329 return -EINVAL;
2330
Rob Clarka2b34e22013-10-05 16:36:52 -04002331 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002332 if (!plane)
2333 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002334
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002335 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002336 if (plane->crtc)
2337 plane_resp->crtc_id = plane->crtc->base.id;
2338 else
2339 plane_resp->crtc_id = 0;
2340
2341 if (plane->fb)
2342 plane_resp->fb_id = plane->fb->base.id;
2343 else
2344 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002345 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002346
2347 plane_resp->plane_id = plane->base.id;
2348 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002349 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002350
2351 /*
2352 * This ioctl is called twice, once to determine how much space is
2353 * needed, and the 2nd time to fill it.
2354 */
2355 if (plane->format_count &&
2356 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002357 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002358 if (copy_to_user(format_ptr,
2359 plane->format_types,
2360 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002361 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002362 }
2363 }
2364 plane_resp->count_format_types = plane->format_count;
2365
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002366 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002367}
2368
Laurent Pinchartead86102015-03-05 02:25:43 +02002369/**
2370 * drm_plane_check_pixel_format - Check if the plane supports the pixel format
2371 * @plane: plane to check for format support
2372 * @format: the pixel format
2373 *
2374 * Returns:
2375 * Zero of @plane has @format in its list of supported pixel formats, -EINVAL
2376 * otherwise.
2377 */
2378int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
2379{
2380 unsigned int i;
2381
2382 for (i = 0; i < plane->format_count; i++) {
2383 if (format == plane->format_types[i])
2384 return 0;
2385 }
2386
2387 return -EINVAL;
2388}
2389
Matt Roperb36552b2014-06-10 08:28:09 -07002390/*
2391 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002392 *
Matt Roperb36552b2014-06-10 08:28:09 -07002393 * Note that we assume an extra reference has already been taken on fb. If the
2394 * update fails, this reference will be dropped before return; if it succeeds,
2395 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002396 *
Matt Roperb36552b2014-06-10 08:28:09 -07002397 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002398 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002399static int __setplane_internal(struct drm_plane *plane,
2400 struct drm_crtc *crtc,
2401 struct drm_framebuffer *fb,
2402 int32_t crtc_x, int32_t crtc_y,
2403 uint32_t crtc_w, uint32_t crtc_h,
2404 /* src_{x,y,w,h} values are 16.16 fixed point */
2405 uint32_t src_x, uint32_t src_y,
2406 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002407{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002408 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002409 unsigned int fb_width, fb_height;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002410
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002411 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002412 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002413 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002414 ret = plane->funcs->disable_plane(plane);
2415 if (!ret) {
2416 plane->crtc = NULL;
2417 plane->fb = NULL;
2418 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002419 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002420 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002421 goto out;
2422 }
2423
Matt Roper7f994f32014-05-29 08:06:51 -07002424 /* Check whether this plane is usable on this CRTC */
2425 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2426 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2427 ret = -EINVAL;
2428 goto out;
2429 }
2430
Ville Syrjälä62443be2011-12-20 00:06:47 +02002431 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +02002432 ret = drm_plane_check_pixel_format(plane, fb->pixel_format);
2433 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002434 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2435 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002436 goto out;
2437 }
2438
Matt Roper3968be92015-04-13 11:06:13 -07002439 /* Give drivers some help against integer overflows */
2440 if (crtc_w > INT_MAX ||
2441 crtc_x > INT_MAX - (int32_t) crtc_w ||
2442 crtc_h > INT_MAX ||
2443 crtc_y > INT_MAX - (int32_t) crtc_h) {
2444 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2445 crtc_w, crtc_h, crtc_x, crtc_y);
2446 return -ERANGE;
2447 }
2448
2449
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002450 fb_width = fb->width << 16;
2451 fb_height = fb->height << 16;
2452
2453 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002454 if (src_w > fb_width ||
2455 src_x > fb_width - src_w ||
2456 src_h > fb_height ||
2457 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002458 DRM_DEBUG_KMS("Invalid source coordinates "
2459 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002460 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2461 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2462 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2463 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002464 ret = -ENOSPC;
2465 goto out;
2466 }
2467
Daniel Vetter3d30a592014-07-27 13:42:42 +02002468 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002469 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002470 crtc_x, crtc_y, crtc_w, crtc_h,
2471 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002472 if (!ret) {
2473 plane->crtc = crtc;
2474 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002475 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002476 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002477 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002478 }
2479
2480out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002481 if (fb)
2482 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002483 if (plane->old_fb)
2484 drm_framebuffer_unreference(plane->old_fb);
2485 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002486
2487 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002488}
Matt Roperb36552b2014-06-10 08:28:09 -07002489
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002490static int setplane_internal(struct drm_plane *plane,
2491 struct drm_crtc *crtc,
2492 struct drm_framebuffer *fb,
2493 int32_t crtc_x, int32_t crtc_y,
2494 uint32_t crtc_w, uint32_t crtc_h,
2495 /* src_{x,y,w,h} values are 16.16 fixed point */
2496 uint32_t src_x, uint32_t src_y,
2497 uint32_t src_w, uint32_t src_h)
2498{
2499 int ret;
2500
2501 drm_modeset_lock_all(plane->dev);
2502 ret = __setplane_internal(plane, crtc, fb,
2503 crtc_x, crtc_y, crtc_w, crtc_h,
2504 src_x, src_y, src_w, src_h);
2505 drm_modeset_unlock_all(plane->dev);
2506
2507 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002508}
2509
2510/**
2511 * drm_mode_setplane - configure a plane's configuration
2512 * @dev: DRM device
2513 * @data: ioctl data*
2514 * @file_priv: DRM file info
2515 *
2516 * Set plane configuration, including placement, fb, scaling, and other factors.
2517 * Or pass a NULL fb to disable (planes may be disabled without providing a
2518 * valid crtc).
2519 *
2520 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002521 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002522 */
2523int drm_mode_setplane(struct drm_device *dev, void *data,
2524 struct drm_file *file_priv)
2525{
2526 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002527 struct drm_plane *plane;
2528 struct drm_crtc *crtc = NULL;
2529 struct drm_framebuffer *fb = NULL;
2530
2531 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2532 return -EINVAL;
2533
Matt Roperb36552b2014-06-10 08:28:09 -07002534 /*
2535 * First, find the plane, crtc, and fb objects. If not available,
2536 * we don't bother to call the driver.
2537 */
Rob Clark933f6222014-11-25 20:33:11 -05002538 plane = drm_plane_find(dev, plane_req->plane_id);
2539 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002540 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2541 plane_req->plane_id);
2542 return -ENOENT;
2543 }
Matt Roperb36552b2014-06-10 08:28:09 -07002544
2545 if (plane_req->fb_id) {
2546 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2547 if (!fb) {
2548 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2549 plane_req->fb_id);
2550 return -ENOENT;
2551 }
2552
Rob Clark933f6222014-11-25 20:33:11 -05002553 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2554 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002555 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2556 plane_req->crtc_id);
2557 return -ENOENT;
2558 }
Matt Roperb36552b2014-06-10 08:28:09 -07002559 }
2560
Matt Roper161d0dc2014-06-10 08:28:10 -07002561 /*
2562 * setplane_internal will take care of deref'ing either the old or new
2563 * framebuffer depending on success.
2564 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002565 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002566 plane_req->crtc_x, plane_req->crtc_y,
2567 plane_req->crtc_w, plane_req->crtc_h,
2568 plane_req->src_x, plane_req->src_y,
2569 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002570}
2571
2572/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002573 * drm_mode_set_config_internal - helper to call ->set_config
2574 * @set: modeset config to set
2575 *
2576 * This is a little helper to wrap internal calls to the ->set_config driver
2577 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +01002578 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002579 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002580 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002581 */
2582int drm_mode_set_config_internal(struct drm_mode_set *set)
2583{
2584 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002585 struct drm_framebuffer *fb;
2586 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002587 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002588
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002589 /*
2590 * NOTE: ->set_config can also disable other crtcs (if we steal all
2591 * connectors from it), hence we need to refcount the fbs across all
2592 * crtcs. Atomic modeset will have saner semantics ...
2593 */
2594 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002595 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002596
Daniel Vetterb0d12322012-12-11 01:07:12 +01002597 fb = set->fb;
2598
2599 ret = crtc->funcs->set_config(set);
2600 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002601 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002602 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002603 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002604
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002605 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002606 if (tmp->primary->fb)
2607 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002608 if (tmp->primary->old_fb)
2609 drm_framebuffer_unreference(tmp->primary->old_fb);
2610 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002611 }
2612
2613 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002614}
2615EXPORT_SYMBOL(drm_mode_set_config_internal);
2616
Matt Roperaf936292014-04-01 15:22:34 -07002617/**
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002618 * drm_crtc_get_hv_timing - Fetches hdisplay/vdisplay for given mode
2619 * @mode: mode to query
2620 * @hdisplay: hdisplay value to fill in
2621 * @vdisplay: vdisplay value to fill in
2622 *
2623 * The vdisplay value will be doubled if the specified mode is a stereo mode of
2624 * the appropriate layout.
2625 */
2626void drm_crtc_get_hv_timing(const struct drm_display_mode *mode,
2627 int *hdisplay, int *vdisplay)
2628{
2629 struct drm_display_mode adjusted;
2630
2631 drm_mode_copy(&adjusted, mode);
2632 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY);
2633 *hdisplay = adjusted.crtc_hdisplay;
2634 *vdisplay = adjusted.crtc_vdisplay;
2635}
2636EXPORT_SYMBOL(drm_crtc_get_hv_timing);
2637
2638/**
Matt Roperaf936292014-04-01 15:22:34 -07002639 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2640 * CRTC viewport
2641 * @crtc: CRTC that framebuffer will be displayed on
2642 * @x: x panning
2643 * @y: y panning
2644 * @mode: mode that framebuffer will be displayed under
2645 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002646 */
Matt Roperaf936292014-04-01 15:22:34 -07002647int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2648 int x, int y,
2649 const struct drm_display_mode *mode,
2650 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002651
2652{
2653 int hdisplay, vdisplay;
2654
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002655 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002656
Damien Lespiauc11e9282013-09-25 16:45:30 +01002657 if (crtc->invert_dimensions)
2658 swap(hdisplay, vdisplay);
2659
2660 if (hdisplay > fb->width ||
2661 vdisplay > fb->height ||
2662 x > fb->width - hdisplay ||
2663 y > fb->height - vdisplay) {
2664 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2665 fb->width, fb->height, hdisplay, vdisplay, x, y,
2666 crtc->invert_dimensions ? " (inverted)" : "");
2667 return -ENOSPC;
2668 }
2669
2670 return 0;
2671}
Matt Roperaf936292014-04-01 15:22:34 -07002672EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002673
Daniel Vetter2d13b672012-12-11 13:47:23 +01002674/**
Dave Airlief453ba02008-11-07 14:05:41 -08002675 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002676 * @dev: drm device for the ioctl
2677 * @data: data pointer for the ioctl
2678 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002679 *
Dave Airlief453ba02008-11-07 14:05:41 -08002680 * Build a new CRTC configuration based on user request.
2681 *
2682 * Called by the user via ioctl.
2683 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002684 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002685 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002686 */
2687int drm_mode_setcrtc(struct drm_device *dev, void *data,
2688 struct drm_file *file_priv)
2689{
2690 struct drm_mode_config *config = &dev->mode_config;
2691 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002692 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002693 struct drm_connector **connector_set = NULL, *connector;
2694 struct drm_framebuffer *fb = NULL;
2695 struct drm_display_mode *mode = NULL;
2696 struct drm_mode_set set;
2697 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002698 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002699 int i;
2700
Dave Airliefb3b06c2011-02-08 13:55:21 +10002701 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2702 return -EINVAL;
2703
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002704 /* For some reason crtc x/y offsets are signed internally. */
2705 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2706 return -ERANGE;
2707
Daniel Vetter84849902012-12-02 00:28:11 +01002708 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002709 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2710 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002711 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002712 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002713 goto out;
2714 }
Jerome Glisse94401062010-07-15 15:43:25 -04002715 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002716
2717 if (crtc_req->mode_valid) {
2718 /* If we have a mode we need a framebuffer. */
2719 /* If we pass -1, set the mode with the currently bound fb */
2720 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002721 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002722 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2723 ret = -EINVAL;
2724 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002725 }
Matt Roperf4510a22014-04-01 15:22:40 -07002726 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002727 /* Make refcounting symmetric with the lookup path. */
2728 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002729 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002730 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2731 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002732 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2733 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002734 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002735 goto out;
2736 }
Dave Airlief453ba02008-11-07 14:05:41 -08002737 }
2738
2739 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002740 if (!mode) {
2741 ret = -ENOMEM;
2742 goto out;
2743 }
2744
Daniel Stone934a8a82015-05-22 13:34:48 +01002745 ret = drm_mode_convert_umode(mode, &crtc_req->mode);
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002746 if (ret) {
2747 DRM_DEBUG_KMS("Invalid mode\n");
2748 goto out;
2749 }
2750
Dave Airlief453ba02008-11-07 14:05:41 -08002751 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002752
Laurent Pinchart7eb5f302015-03-09 10:41:07 +02002753 /*
2754 * Check whether the primary plane supports the fb pixel format.
2755 * Drivers not implementing the universal planes API use a
2756 * default formats list provided by the DRM core which doesn't
2757 * match real hardware capabilities. Skip the check in that
2758 * case.
2759 */
2760 if (!crtc->primary->format_default) {
2761 ret = drm_plane_check_pixel_format(crtc->primary,
2762 fb->pixel_format);
2763 if (ret) {
2764 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2765 drm_get_format_name(fb->pixel_format));
2766 goto out;
2767 }
2768 }
2769
Damien Lespiauc11e9282013-09-25 16:45:30 +01002770 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2771 mode, fb);
2772 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002773 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002774
Dave Airlief453ba02008-11-07 14:05:41 -08002775 }
2776
2777 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002778 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002779 ret = -EINVAL;
2780 goto out;
2781 }
2782
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002783 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002784 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002785 crtc_req->count_connectors);
2786 ret = -EINVAL;
2787 goto out;
2788 }
2789
2790 if (crtc_req->count_connectors > 0) {
2791 u32 out_id;
2792
2793 /* Avoid unbounded kernel memory allocation */
2794 if (crtc_req->count_connectors > config->num_connector) {
2795 ret = -EINVAL;
2796 goto out;
2797 }
2798
Thierry Reding2f6c5382014-12-10 13:03:36 +01002799 connector_set = kmalloc_array(crtc_req->count_connectors,
2800 sizeof(struct drm_connector *),
2801 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08002802 if (!connector_set) {
2803 ret = -ENOMEM;
2804 goto out;
2805 }
2806
2807 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002808 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002809 if (get_user(out_id, &set_connectors_ptr[i])) {
2810 ret = -EFAULT;
2811 goto out;
2812 }
2813
Rob Clarka2b34e22013-10-05 16:36:52 -04002814 connector = drm_connector_find(dev, out_id);
2815 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002816 DRM_DEBUG_KMS("Connector id %d unknown\n",
2817 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002818 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002819 goto out;
2820 }
Jerome Glisse94401062010-07-15 15:43:25 -04002821 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2822 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002823 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002824
2825 connector_set[i] = connector;
2826 }
2827 }
2828
2829 set.crtc = crtc;
2830 set.x = crtc_req->x;
2831 set.y = crtc_req->y;
2832 set.mode = mode;
2833 set.connectors = connector_set;
2834 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002835 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002836 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002837
2838out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002839 if (fb)
2840 drm_framebuffer_unreference(fb);
2841
Dave Airlief453ba02008-11-07 14:05:41 -08002842 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002843 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002844 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002845 return ret;
2846}
2847
Matt Roper161d0dc2014-06-10 08:28:10 -07002848/**
2849 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2850 * universal plane handler call
2851 * @crtc: crtc to update cursor for
2852 * @req: data pointer for the ioctl
2853 * @file_priv: drm file for the ioctl call
2854 *
2855 * Legacy cursor ioctl's work directly with driver buffer handles. To
2856 * translate legacy ioctl calls into universal plane handler calls, we need to
2857 * wrap the native buffer handle in a drm_framebuffer.
2858 *
2859 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2860 * buffer with a pitch of 4*width; the universal plane interface should be used
2861 * directly in cases where the hardware can support other buffer settings and
2862 * userspace wants to make use of these capabilities.
2863 *
2864 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002865 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002866 */
2867static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2868 struct drm_mode_cursor2 *req,
2869 struct drm_file *file_priv)
2870{
2871 struct drm_device *dev = crtc->dev;
2872 struct drm_framebuffer *fb = NULL;
2873 struct drm_mode_fb_cmd2 fbreq = {
2874 .width = req->width,
2875 .height = req->height,
2876 .pixel_format = DRM_FORMAT_ARGB8888,
2877 .pitches = { req->width * 4 },
2878 .handles = { req->handle },
2879 };
2880 int32_t crtc_x, crtc_y;
2881 uint32_t crtc_w = 0, crtc_h = 0;
2882 uint32_t src_w = 0, src_h = 0;
2883 int ret = 0;
2884
2885 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002886 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002887
2888 /*
2889 * Obtain fb we'll be using (either new or existing) and take an extra
2890 * reference to it if fb != null. setplane will take care of dropping
2891 * the reference if the plane update fails.
2892 */
2893 if (req->flags & DRM_MODE_CURSOR_BO) {
2894 if (req->handle) {
Chris Wilson9a6f5132015-02-25 13:45:26 +00002895 fb = internal_framebuffer_create(dev, &fbreq, file_priv);
Matt Roper161d0dc2014-06-10 08:28:10 -07002896 if (IS_ERR(fb)) {
2897 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2898 return PTR_ERR(fb);
2899 }
Matt Roper161d0dc2014-06-10 08:28:10 -07002900 } else {
2901 fb = NULL;
2902 }
2903 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002904 fb = crtc->cursor->fb;
2905 if (fb)
2906 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002907 }
2908
2909 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2910 crtc_x = req->x;
2911 crtc_y = req->y;
2912 } else {
2913 crtc_x = crtc->cursor_x;
2914 crtc_y = crtc->cursor_y;
2915 }
2916
2917 if (fb) {
2918 crtc_w = fb->width;
2919 crtc_h = fb->height;
2920 src_w = fb->width << 16;
2921 src_h = fb->height << 16;
2922 }
2923
2924 /*
2925 * setplane_internal will take care of deref'ing either the old or new
2926 * framebuffer depending on success.
2927 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002928 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002929 crtc_x, crtc_y, crtc_w, crtc_h,
2930 0, 0, src_w, src_h);
2931
2932 /* Update successful; save new cursor position, if necessary */
2933 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2934 crtc->cursor_x = req->x;
2935 crtc->cursor_y = req->y;
2936 }
2937
2938 return ret;
2939}
2940
Dave Airlie4c813d42013-06-20 11:48:52 +10002941static int drm_mode_cursor_common(struct drm_device *dev,
2942 struct drm_mode_cursor2 *req,
2943 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002944{
Dave Airlief453ba02008-11-07 14:05:41 -08002945 struct drm_crtc *crtc;
2946 int ret = 0;
2947
Dave Airliefb3b06c2011-02-08 13:55:21 +10002948 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2949 return -EINVAL;
2950
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002951 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002952 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002953
Rob Clarka2b34e22013-10-05 16:36:52 -04002954 crtc = drm_crtc_find(dev, req->crtc_id);
2955 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002956 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002957 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002958 }
Dave Airlief453ba02008-11-07 14:05:41 -08002959
Matt Roper161d0dc2014-06-10 08:28:10 -07002960 /*
2961 * If this crtc has a universal cursor plane, call that plane's update
2962 * handler rather than using legacy cursor handlers.
2963 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01002964 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002965 if (crtc->cursor) {
2966 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2967 goto out;
2968 }
2969
Dave Airlief453ba02008-11-07 14:05:41 -08002970 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002971 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002972 ret = -ENXIO;
2973 goto out;
2974 }
2975 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002976 if (crtc->funcs->cursor_set2)
2977 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2978 req->width, req->height, req->hot_x, req->hot_y);
2979 else
2980 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2981 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002982 }
2983
2984 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2985 if (crtc->funcs->cursor_move) {
2986 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2987 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002988 ret = -EFAULT;
2989 goto out;
2990 }
2991 }
2992out:
Daniel Vetterd059f652014-07-25 18:07:40 +02002993 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01002994
Dave Airlief453ba02008-11-07 14:05:41 -08002995 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10002996
2997}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002998
2999
3000/**
3001 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
3002 * @dev: drm device for the ioctl
3003 * @data: data pointer for the ioctl
3004 * @file_priv: drm file for the ioctl call
3005 *
3006 * Set the cursor configuration based on user request.
3007 *
3008 * Called by the user via ioctl.
3009 *
3010 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003011 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003012 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003013int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003014 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10003015{
3016 struct drm_mode_cursor *req = data;
3017 struct drm_mode_cursor2 new_req;
3018
3019 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
3020 new_req.hot_x = new_req.hot_y = 0;
3021
3022 return drm_mode_cursor_common(dev, &new_req, file_priv);
3023}
3024
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003025/**
3026 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
3027 * @dev: drm device for the ioctl
3028 * @data: data pointer for the ioctl
3029 * @file_priv: drm file for the ioctl call
3030 *
3031 * Set the cursor configuration based on user request. This implements the 2nd
3032 * version of the cursor ioctl, which allows userspace to additionally specify
3033 * the hotspot of the pointer.
3034 *
3035 * Called by the user via ioctl.
3036 *
3037 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003038 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003039 */
Dave Airlie4c813d42013-06-20 11:48:52 +10003040int drm_mode_cursor2_ioctl(struct drm_device *dev,
3041 void *data, struct drm_file *file_priv)
3042{
3043 struct drm_mode_cursor2 *req = data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01003044
Dave Airlie4c813d42013-06-20 11:48:52 +10003045 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003046}
3047
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003048/**
3049 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
3050 * @bpp: bits per pixels
3051 * @depth: bit depth per pixel
3052 *
3053 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
3054 * Useful in fbdev emulation code, since that deals in those values.
3055 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003056uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
3057{
3058 uint32_t fmt;
3059
3060 switch (bpp) {
3061 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02003062 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003063 break;
3064 case 16:
3065 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003066 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003067 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003068 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003069 break;
3070 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003071 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003072 break;
3073 case 32:
3074 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003075 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003076 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02003077 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003078 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02003079 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003080 break;
3081 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02003082 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
3083 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003084 break;
3085 }
3086
3087 return fmt;
3088}
3089EXPORT_SYMBOL(drm_mode_legacy_fb_format);
3090
Dave Airlief453ba02008-11-07 14:05:41 -08003091/**
3092 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003093 * @dev: drm device for the ioctl
3094 * @data: data pointer for the ioctl
3095 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003096 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003097 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003098 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003099 *
3100 * Called by the user via ioctl.
3101 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003102 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003103 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003104 */
3105int drm_mode_addfb(struct drm_device *dev,
3106 void *data, struct drm_file *file_priv)
3107{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003108 struct drm_mode_fb_cmd *or = data;
3109 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003110 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003111
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003112 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003113 r.fb_id = or->fb_id;
3114 r.width = or->width;
3115 r.height = or->height;
3116 r.pitches[0] = or->pitch;
3117 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3118 r.handles[0] = or->handle;
3119
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003120 ret = drm_mode_addfb2(dev, &r, file_priv);
3121 if (ret)
3122 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003123
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003124 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003125
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003126 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003127}
3128
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003129static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003130{
3131 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3132
3133 switch (format) {
3134 case DRM_FORMAT_C8:
3135 case DRM_FORMAT_RGB332:
3136 case DRM_FORMAT_BGR233:
3137 case DRM_FORMAT_XRGB4444:
3138 case DRM_FORMAT_XBGR4444:
3139 case DRM_FORMAT_RGBX4444:
3140 case DRM_FORMAT_BGRX4444:
3141 case DRM_FORMAT_ARGB4444:
3142 case DRM_FORMAT_ABGR4444:
3143 case DRM_FORMAT_RGBA4444:
3144 case DRM_FORMAT_BGRA4444:
3145 case DRM_FORMAT_XRGB1555:
3146 case DRM_FORMAT_XBGR1555:
3147 case DRM_FORMAT_RGBX5551:
3148 case DRM_FORMAT_BGRX5551:
3149 case DRM_FORMAT_ARGB1555:
3150 case DRM_FORMAT_ABGR1555:
3151 case DRM_FORMAT_RGBA5551:
3152 case DRM_FORMAT_BGRA5551:
3153 case DRM_FORMAT_RGB565:
3154 case DRM_FORMAT_BGR565:
3155 case DRM_FORMAT_RGB888:
3156 case DRM_FORMAT_BGR888:
3157 case DRM_FORMAT_XRGB8888:
3158 case DRM_FORMAT_XBGR8888:
3159 case DRM_FORMAT_RGBX8888:
3160 case DRM_FORMAT_BGRX8888:
3161 case DRM_FORMAT_ARGB8888:
3162 case DRM_FORMAT_ABGR8888:
3163 case DRM_FORMAT_RGBA8888:
3164 case DRM_FORMAT_BGRA8888:
3165 case DRM_FORMAT_XRGB2101010:
3166 case DRM_FORMAT_XBGR2101010:
3167 case DRM_FORMAT_RGBX1010102:
3168 case DRM_FORMAT_BGRX1010102:
3169 case DRM_FORMAT_ARGB2101010:
3170 case DRM_FORMAT_ABGR2101010:
3171 case DRM_FORMAT_RGBA1010102:
3172 case DRM_FORMAT_BGRA1010102:
3173 case DRM_FORMAT_YUYV:
3174 case DRM_FORMAT_YVYU:
3175 case DRM_FORMAT_UYVY:
3176 case DRM_FORMAT_VYUY:
3177 case DRM_FORMAT_AYUV:
3178 case DRM_FORMAT_NV12:
3179 case DRM_FORMAT_NV21:
3180 case DRM_FORMAT_NV16:
3181 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003182 case DRM_FORMAT_NV24:
3183 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003184 case DRM_FORMAT_YUV410:
3185 case DRM_FORMAT_YVU410:
3186 case DRM_FORMAT_YUV411:
3187 case DRM_FORMAT_YVU411:
3188 case DRM_FORMAT_YUV420:
3189 case DRM_FORMAT_YVU420:
3190 case DRM_FORMAT_YUV422:
3191 case DRM_FORMAT_YVU422:
3192 case DRM_FORMAT_YUV444:
3193 case DRM_FORMAT_YVU444:
3194 return 0;
3195 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003196 DRM_DEBUG_KMS("invalid pixel format %s\n",
3197 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003198 return -EINVAL;
3199 }
3200}
3201
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003202static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003203{
3204 int ret, hsub, vsub, num_planes, i;
3205
3206 ret = format_check(r);
3207 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003208 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3209 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003210 return ret;
3211 }
3212
3213 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3214 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3215 num_planes = drm_format_num_planes(r->pixel_format);
3216
3217 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003218 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003219 return -EINVAL;
3220 }
3221
3222 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003223 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003224 return -EINVAL;
3225 }
3226
3227 for (i = 0; i < num_planes; i++) {
3228 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003229 unsigned int height = r->height / (i != 0 ? vsub : 1);
3230 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003231
3232 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003233 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003234 return -EINVAL;
3235 }
3236
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003237 if ((uint64_t) width * cpp > UINT_MAX)
3238 return -ERANGE;
3239
3240 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3241 return -ERANGE;
3242
3243 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003244 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003245 return -EINVAL;
3246 }
Rob Clarke3eb3252015-02-05 14:41:52 +00003247
3248 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
3249 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
3250 r->modifier[i], i);
3251 return -EINVAL;
3252 }
Rob Clark570655b2015-01-30 20:18:11 +05303253
3254 /* modifier specific checks: */
3255 switch (r->modifier[i]) {
3256 case DRM_FORMAT_MOD_SAMSUNG_64_32_TILE:
3257 /* NOTE: the pitch restriction may be lifted later if it turns
3258 * out that no hw has this restriction:
3259 */
3260 if (r->pixel_format != DRM_FORMAT_NV12 ||
3261 width % 128 || height % 32 ||
3262 r->pitches[i] % 128) {
3263 DRM_DEBUG_KMS("bad modifier data for plane %d\n", i);
3264 return -EINVAL;
3265 }
3266 break;
3267
3268 default:
3269 break;
3270 }
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003271 }
3272
Daniel Vetterbbe16a42015-05-20 16:53:53 +02003273 for (i = num_planes; i < 4; i++) {
3274 if (r->modifier[i]) {
3275 DRM_DEBUG_KMS("non-zero modifier for unused plane %d\n", i);
3276 return -EINVAL;
3277 }
3278
3279 /* Pre-FB_MODIFIERS userspace didn't clear the structs properly. */
3280 if (!(r->flags & DRM_MODE_FB_MODIFIERS))
3281 continue;
3282
3283 if (r->handles[i]) {
3284 DRM_DEBUG_KMS("buffer object handle for unused plane %d\n", i);
3285 return -EINVAL;
3286 }
3287
3288 if (r->pitches[i]) {
3289 DRM_DEBUG_KMS("non-zero pitch for unused plane %d\n", i);
3290 return -EINVAL;
3291 }
3292
3293 if (r->offsets[i]) {
3294 DRM_DEBUG_KMS("non-zero offset for unused plane %d\n", i);
3295 return -EINVAL;
3296 }
3297 }
3298
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003299 return 0;
3300}
3301
Chris Wilson9a6f5132015-02-25 13:45:26 +00003302static struct drm_framebuffer *
3303internal_framebuffer_create(struct drm_device *dev,
3304 struct drm_mode_fb_cmd2 *r,
3305 struct drm_file *file_priv)
Matt Roperc394c2b2014-06-10 08:28:08 -07003306{
3307 struct drm_mode_config *config = &dev->mode_config;
3308 struct drm_framebuffer *fb;
3309 int ret;
3310
Rob Clarke3eb3252015-02-05 14:41:52 +00003311 if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
Matt Roperc394c2b2014-06-10 08:28:08 -07003312 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3313 return ERR_PTR(-EINVAL);
3314 }
3315
3316 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3317 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3318 r->width, config->min_width, config->max_width);
3319 return ERR_PTR(-EINVAL);
3320 }
3321 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3322 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3323 r->height, config->min_height, config->max_height);
3324 return ERR_PTR(-EINVAL);
3325 }
3326
Rob Clarke3eb3252015-02-05 14:41:52 +00003327 if (r->flags & DRM_MODE_FB_MODIFIERS &&
3328 !dev->mode_config.allow_fb_modifiers) {
3329 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
3330 return ERR_PTR(-EINVAL);
3331 }
3332
Matt Roperc394c2b2014-06-10 08:28:08 -07003333 ret = framebuffer_check(r);
3334 if (ret)
3335 return ERR_PTR(ret);
3336
3337 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3338 if (IS_ERR(fb)) {
3339 DRM_DEBUG_KMS("could not create framebuffer\n");
3340 return fb;
3341 }
3342
Matt Roperc394c2b2014-06-10 08:28:08 -07003343 return fb;
3344}
3345
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003346/**
3347 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003348 * @dev: drm device for the ioctl
3349 * @data: data pointer for the ioctl
3350 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003351 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003352 * Add a new FB to the specified CRTC, given a user request with format. This is
3353 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3354 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003355 *
3356 * Called by the user via ioctl.
3357 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003358 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003359 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003360 */
3361int drm_mode_addfb2(struct drm_device *dev,
3362 void *data, struct drm_file *file_priv)
3363{
Chris Wilson9a6f5132015-02-25 13:45:26 +00003364 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003365 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003366
Dave Airliefb3b06c2011-02-08 13:55:21 +10003367 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3368 return -EINVAL;
3369
Chris Wilson9a6f5132015-02-25 13:45:26 +00003370 fb = internal_framebuffer_create(dev, r, file_priv);
Matt Roperc394c2b2014-06-10 08:28:08 -07003371 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003372 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003373
Chris Wilson9a6f5132015-02-25 13:45:26 +00003374 /* Transfer ownership to the filp for reaping on close */
3375
3376 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3377 mutex_lock(&file_priv->fbs_lock);
3378 r->fb_id = fb->base.id;
3379 list_add(&fb->filp_head, &file_priv->fbs);
3380 mutex_unlock(&file_priv->fbs_lock);
3381
Matt Roperc394c2b2014-06-10 08:28:08 -07003382 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003383}
3384
3385/**
3386 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003387 * @dev: drm device for the ioctl
3388 * @data: data pointer for the ioctl
3389 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003390 *
Dave Airlief453ba02008-11-07 14:05:41 -08003391 * Remove the FB specified by the user.
3392 *
3393 * Called by the user via ioctl.
3394 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003395 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003396 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003397 */
3398int drm_mode_rmfb(struct drm_device *dev,
3399 void *data, struct drm_file *file_priv)
3400{
Dave Airlief453ba02008-11-07 14:05:41 -08003401 struct drm_framebuffer *fb = NULL;
3402 struct drm_framebuffer *fbl = NULL;
3403 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003404 int found = 0;
3405
Dave Airliefb3b06c2011-02-08 13:55:21 +10003406 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3407 return -EINVAL;
3408
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003409 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003410 mutex_lock(&dev->mode_config.fb_lock);
3411 fb = __drm_framebuffer_lookup(dev, *id);
3412 if (!fb)
3413 goto fail_lookup;
3414
Dave Airlief453ba02008-11-07 14:05:41 -08003415 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3416 if (fb == fbl)
3417 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003418 if (!found)
3419 goto fail_lookup;
3420
3421 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3422 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003423
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003424 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003425 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003426 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003427
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003428 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003429
Daniel Vetter2b677e82012-12-10 21:16:05 +01003430 return 0;
3431
3432fail_lookup:
3433 mutex_unlock(&dev->mode_config.fb_lock);
3434 mutex_unlock(&file_priv->fbs_lock);
3435
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003436 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003437}
3438
3439/**
3440 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003441 * @dev: drm device for the ioctl
3442 * @data: data pointer for the ioctl
3443 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003444 *
Dave Airlief453ba02008-11-07 14:05:41 -08003445 * Lookup the FB given its ID and return info about it.
3446 *
3447 * Called by the user via ioctl.
3448 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003449 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003450 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003451 */
3452int drm_mode_getfb(struct drm_device *dev,
3453 void *data, struct drm_file *file_priv)
3454{
3455 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003456 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003457 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003458
Dave Airliefb3b06c2011-02-08 13:55:21 +10003459 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3460 return -EINVAL;
3461
Daniel Vetter786b99e2012-12-02 21:53:40 +01003462 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003463 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003464 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003465
3466 r->height = fb->height;
3467 r->width = fb->width;
3468 r->depth = fb->depth;
3469 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003470 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003471 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003472 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003473 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003474 ret = fb->funcs->create_handle(fb, file_priv,
3475 &r->handle);
3476 } else {
3477 /* GET_FB() is an unprivileged ioctl so we must not
3478 * return a buffer-handle to non-master processes! For
3479 * backwards-compatibility reasons, we cannot make
3480 * GET_FB() privileged, so just return an invalid handle
3481 * for non-masters. */
3482 r->handle = 0;
3483 ret = 0;
3484 }
3485 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003486 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003487 }
Dave Airlief453ba02008-11-07 14:05:41 -08003488
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003489 drm_framebuffer_unreference(fb);
3490
Dave Airlief453ba02008-11-07 14:05:41 -08003491 return ret;
3492}
3493
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003494/**
3495 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3496 * @dev: drm device for the ioctl
3497 * @data: data pointer for the ioctl
3498 * @file_priv: drm file for the ioctl call
3499 *
3500 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3501 * rectangle list. Generic userspace which does frontbuffer rendering must call
3502 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3503 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3504 *
3505 * Modesetting drivers which always update the frontbuffer do not need to
3506 * implement the corresponding ->dirty framebuffer callback.
3507 *
3508 * Called by the user via ioctl.
3509 *
3510 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003511 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003512 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003513int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3514 void *data, struct drm_file *file_priv)
3515{
3516 struct drm_clip_rect __user *clips_ptr;
3517 struct drm_clip_rect *clips = NULL;
3518 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003519 struct drm_framebuffer *fb;
3520 unsigned flags;
3521 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003522 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003523
Dave Airliefb3b06c2011-02-08 13:55:21 +10003524 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3525 return -EINVAL;
3526
Daniel Vetter786b99e2012-12-02 21:53:40 +01003527 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003528 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003529 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003530
3531 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003532 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003533
3534 if (!num_clips != !clips_ptr) {
3535 ret = -EINVAL;
3536 goto out_err1;
3537 }
3538
3539 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3540
3541 /* If userspace annotates copy, clips must come in pairs */
3542 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3543 ret = -EINVAL;
3544 goto out_err1;
3545 }
3546
3547 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003548 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3549 ret = -EINVAL;
3550 goto out_err1;
3551 }
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003552 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003553 if (!clips) {
3554 ret = -ENOMEM;
3555 goto out_err1;
3556 }
3557
3558 ret = copy_from_user(clips, clips_ptr,
3559 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003560 if (ret) {
3561 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003562 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003563 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003564 }
3565
3566 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003567 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3568 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003569 } else {
3570 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003571 }
3572
3573out_err2:
3574 kfree(clips);
3575out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003576 drm_framebuffer_unreference(fb);
3577
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003578 return ret;
3579}
3580
3581
Dave Airlief453ba02008-11-07 14:05:41 -08003582/**
3583 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003584 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003585 *
Dave Airlief453ba02008-11-07 14:05:41 -08003586 * Destroy all the FBs associated with @filp.
3587 *
3588 * Called by the user via ioctl.
3589 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003590 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003591 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003592 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003593void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003594{
Dave Airlief453ba02008-11-07 14:05:41 -08003595 struct drm_device *dev = priv->minor->dev;
3596 struct drm_framebuffer *fb, *tfb;
3597
Daniel Vetter1b116292014-09-24 21:51:06 +02003598 /*
3599 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003600 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003601 * avoid upsetting lockdep since the universal cursor code adds a
3602 * framebuffer while holding mutex locks.
3603 *
3604 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3605 * locks is impossible here since no one else but this function can get
3606 * at it any more.
3607 */
Dave Airlief453ba02008-11-07 14:05:41 -08003608 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003609
3610 mutex_lock(&dev->mode_config.fb_lock);
3611 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3612 __drm_framebuffer_unregister(dev, fb);
3613 mutex_unlock(&dev->mode_config.fb_lock);
3614
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003615 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003616
3617 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003618 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003619 }
Dave Airlief453ba02008-11-07 14:05:41 -08003620}
3621
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003622/**
3623 * drm_property_create - create a new property type
3624 * @dev: drm device
3625 * @flags: flags specifying the property type
3626 * @name: name of the property
3627 * @num_values: number of pre-defined values
3628 *
3629 * This creates a new generic drm property which can then be attached to a drm
3630 * object with drm_object_attach_property. The returned property object must be
3631 * freed with drm_property_destroy.
3632 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003633 * Note that the DRM core keeps a per-device list of properties and that, if
3634 * drm_mode_config_cleanup() is called, it will destroy all properties created
3635 * by the driver.
3636 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003637 * Returns:
3638 * A pointer to the newly created property on success, NULL on failure.
3639 */
Dave Airlief453ba02008-11-07 14:05:41 -08003640struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3641 const char *name, int num_values)
3642{
3643 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003644 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003645
3646 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3647 if (!property)
3648 return NULL;
3649
Rob Clark98f75de2014-05-30 11:37:03 -04003650 property->dev = dev;
3651
Dave Airlief453ba02008-11-07 14:05:41 -08003652 if (num_values) {
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003653 property->values = kcalloc(num_values, sizeof(uint64_t),
3654 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08003655 if (!property->values)
3656 goto fail;
3657 }
3658
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003659 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3660 if (ret)
3661 goto fail;
3662
Dave Airlief453ba02008-11-07 14:05:41 -08003663 property->flags = flags;
3664 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003665 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003666
Vinson Lee471dd2e2011-11-10 11:55:40 -08003667 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003668 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003669 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3670 }
Dave Airlief453ba02008-11-07 14:05:41 -08003671
3672 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003673
3674 WARN_ON(!drm_property_type_valid(property));
3675
Dave Airlief453ba02008-11-07 14:05:41 -08003676 return property;
3677fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003678 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003679 kfree(property);
3680 return NULL;
3681}
3682EXPORT_SYMBOL(drm_property_create);
3683
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003684/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003685 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003686 * @dev: drm device
3687 * @flags: flags specifying the property type
3688 * @name: name of the property
3689 * @props: enumeration lists with property values
3690 * @num_values: number of pre-defined values
3691 *
3692 * This creates a new generic drm property which can then be attached to a drm
3693 * object with drm_object_attach_property. The returned property object must be
3694 * freed with drm_property_destroy.
3695 *
3696 * Userspace is only allowed to set one of the predefined values for enumeration
3697 * properties.
3698 *
3699 * Returns:
3700 * A pointer to the newly created property on success, NULL on failure.
3701 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003702struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3703 const char *name,
3704 const struct drm_prop_enum_list *props,
3705 int num_values)
3706{
3707 struct drm_property *property;
3708 int i, ret;
3709
3710 flags |= DRM_MODE_PROP_ENUM;
3711
3712 property = drm_property_create(dev, flags, name, num_values);
3713 if (!property)
3714 return NULL;
3715
3716 for (i = 0; i < num_values; i++) {
3717 ret = drm_property_add_enum(property, i,
3718 props[i].type,
3719 props[i].name);
3720 if (ret) {
3721 drm_property_destroy(dev, property);
3722 return NULL;
3723 }
3724 }
3725
3726 return property;
3727}
3728EXPORT_SYMBOL(drm_property_create_enum);
3729
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003730/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003731 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003732 * @dev: drm device
3733 * @flags: flags specifying the property type
3734 * @name: name of the property
3735 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003736 * @num_props: size of the @props array
3737 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003738 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003739 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003740 * object with drm_object_attach_property. The returned property object must be
3741 * freed with drm_property_destroy.
3742 *
3743 * Compared to plain enumeration properties userspace is allowed to set any
3744 * or'ed together combination of the predefined property bitflag values
3745 *
3746 * Returns:
3747 * A pointer to the newly created property on success, NULL on failure.
3748 */
Rob Clark49e27542012-05-17 02:23:26 -06003749struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3750 int flags, const char *name,
3751 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303752 int num_props,
3753 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003754{
3755 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303756 int i, ret, index = 0;
3757 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003758
3759 flags |= DRM_MODE_PROP_BITMASK;
3760
3761 property = drm_property_create(dev, flags, name, num_values);
3762 if (!property)
3763 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303764 for (i = 0; i < num_props; i++) {
3765 if (!(supported_bits & (1ULL << props[i].type)))
3766 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003767
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303768 if (WARN_ON(index >= num_values)) {
3769 drm_property_destroy(dev, property);
3770 return NULL;
3771 }
3772
3773 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003774 props[i].type,
3775 props[i].name);
3776 if (ret) {
3777 drm_property_destroy(dev, property);
3778 return NULL;
3779 }
3780 }
3781
3782 return property;
3783}
3784EXPORT_SYMBOL(drm_property_create_bitmask);
3785
Rob Clarkebc44cf2012-09-12 22:22:31 -05003786static struct drm_property *property_create_range(struct drm_device *dev,
3787 int flags, const char *name,
3788 uint64_t min, uint64_t max)
3789{
3790 struct drm_property *property;
3791
3792 property = drm_property_create(dev, flags, name, 2);
3793 if (!property)
3794 return NULL;
3795
3796 property->values[0] = min;
3797 property->values[1] = max;
3798
3799 return property;
3800}
3801
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003802/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003803 * drm_property_create_range - create a new unsigned ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003804 * @dev: drm device
3805 * @flags: flags specifying the property type
3806 * @name: name of the property
3807 * @min: minimum value of the property
3808 * @max: maximum value of the property
3809 *
3810 * This creates a new generic drm property which can then be attached to a drm
3811 * object with drm_object_attach_property. The returned property object must be
3812 * freed with drm_property_destroy.
3813 *
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003814 * Userspace is allowed to set any unsigned integer value in the (min, max)
3815 * range inclusive.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003816 *
3817 * Returns:
3818 * A pointer to the newly created property on success, NULL on failure.
3819 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003820struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3821 const char *name,
3822 uint64_t min, uint64_t max)
3823{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003824 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3825 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003826}
3827EXPORT_SYMBOL(drm_property_create_range);
3828
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003829/**
3830 * drm_property_create_signed_range - create a new signed ranged property type
3831 * @dev: drm device
3832 * @flags: flags specifying the property type
3833 * @name: name of the property
3834 * @min: minimum value of the property
3835 * @max: maximum value of the property
3836 *
3837 * This creates a new generic drm property which can then be attached to a drm
3838 * object with drm_object_attach_property. The returned property object must be
3839 * freed with drm_property_destroy.
3840 *
3841 * Userspace is allowed to set any signed integer value in the (min, max)
3842 * range inclusive.
3843 *
3844 * Returns:
3845 * A pointer to the newly created property on success, NULL on failure.
3846 */
Rob Clarkebc44cf2012-09-12 22:22:31 -05003847struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3848 int flags, const char *name,
3849 int64_t min, int64_t max)
3850{
3851 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3852 name, I642U64(min), I642U64(max));
3853}
3854EXPORT_SYMBOL(drm_property_create_signed_range);
3855
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003856/**
3857 * drm_property_create_object - create a new object property type
3858 * @dev: drm device
3859 * @flags: flags specifying the property type
3860 * @name: name of the property
3861 * @type: object type from DRM_MODE_OBJECT_* defines
3862 *
3863 * This creates a new generic drm property which can then be attached to a drm
3864 * object with drm_object_attach_property. The returned property object must be
3865 * freed with drm_property_destroy.
3866 *
3867 * Userspace is only allowed to set this to any property value of the given
3868 * @type. Only useful for atomic properties, which is enforced.
3869 *
3870 * Returns:
3871 * A pointer to the newly created property on success, NULL on failure.
3872 */
Rob Clark98f75de2014-05-30 11:37:03 -04003873struct drm_property *drm_property_create_object(struct drm_device *dev,
3874 int flags, const char *name, uint32_t type)
3875{
3876 struct drm_property *property;
3877
3878 flags |= DRM_MODE_PROP_OBJECT;
3879
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003880 if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
3881 return NULL;
3882
Rob Clark98f75de2014-05-30 11:37:03 -04003883 property = drm_property_create(dev, flags, name, 1);
3884 if (!property)
3885 return NULL;
3886
3887 property->values[0] = type;
3888
3889 return property;
3890}
3891EXPORT_SYMBOL(drm_property_create_object);
3892
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003893/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003894 * drm_property_create_bool - create a new boolean property type
3895 * @dev: drm device
3896 * @flags: flags specifying the property type
3897 * @name: name of the property
3898 *
3899 * This creates a new generic drm property which can then be attached to a drm
3900 * object with drm_object_attach_property. The returned property object must be
3901 * freed with drm_property_destroy.
3902 *
3903 * This is implemented as a ranged property with only {0, 1} as valid values.
3904 *
3905 * Returns:
3906 * A pointer to the newly created property on success, NULL on failure.
3907 */
3908struct drm_property *drm_property_create_bool(struct drm_device *dev, int flags,
3909 const char *name)
3910{
3911 return drm_property_create_range(dev, flags, name, 0, 1);
3912}
3913EXPORT_SYMBOL(drm_property_create_bool);
3914
3915/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003916 * drm_property_add_enum - add a possible value to an enumeration property
3917 * @property: enumeration property to change
3918 * @index: index of the new enumeration
3919 * @value: value of the new enumeration
3920 * @name: symbolic name of the new enumeration
3921 *
3922 * This functions adds enumerations to a property.
3923 *
3924 * It's use is deprecated, drivers should use one of the more specific helpers
3925 * to directly create the property with all enumerations already attached.
3926 *
3927 * Returns:
3928 * Zero on success, error code on failure.
3929 */
Dave Airlief453ba02008-11-07 14:05:41 -08003930int drm_property_add_enum(struct drm_property *property, int index,
3931 uint64_t value, const char *name)
3932{
3933 struct drm_property_enum *prop_enum;
3934
Rob Clark5ea22f22014-05-30 11:34:01 -04003935 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3936 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003937 return -EINVAL;
3938
3939 /*
3940 * Bitmask enum properties have the additional constraint of values
3941 * from 0 to 63
3942 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003943 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3944 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003945 return -EINVAL;
3946
Daniel Vetter3758b342014-11-19 18:38:10 +01003947 if (!list_empty(&property->enum_list)) {
3948 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003949 if (prop_enum->value == value) {
3950 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3951 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3952 return 0;
3953 }
3954 }
3955 }
3956
3957 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3958 if (!prop_enum)
3959 return -ENOMEM;
3960
3961 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3962 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3963 prop_enum->value = value;
3964
3965 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003966 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003967 return 0;
3968}
3969EXPORT_SYMBOL(drm_property_add_enum);
3970
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003971/**
3972 * drm_property_destroy - destroy a drm property
3973 * @dev: drm device
3974 * @property: property to destry
3975 *
3976 * This function frees a property including any attached resources like
3977 * enumeration values.
3978 */
Dave Airlief453ba02008-11-07 14:05:41 -08003979void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3980{
3981 struct drm_property_enum *prop_enum, *pt;
3982
Daniel Vetter3758b342014-11-19 18:38:10 +01003983 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003984 list_del(&prop_enum->head);
3985 kfree(prop_enum);
3986 }
3987
3988 if (property->num_values)
3989 kfree(property->values);
3990 drm_mode_object_put(dev, &property->base);
3991 list_del(&property->head);
3992 kfree(property);
3993}
3994EXPORT_SYMBOL(drm_property_destroy);
3995
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003996/**
3997 * drm_object_attach_property - attach a property to a modeset object
3998 * @obj: drm modeset object
3999 * @property: property to attach
4000 * @init_val: initial value of the property
4001 *
4002 * This attaches the given property to the modeset object with the given initial
4003 * value. Currently this function cannot fail since the properties are stored in
4004 * a statically sized array.
4005 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004006void drm_object_attach_property(struct drm_mode_object *obj,
4007 struct drm_property *property,
4008 uint64_t init_val)
4009{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004010 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03004011
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004012 if (count == DRM_OBJECT_MAX_PROPERTY) {
4013 WARN(1, "Failed to attach object property (type: 0x%x). Please "
4014 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
4015 "you see this message on the same object type.\n",
4016 obj->type);
4017 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03004018 }
4019
Rob Clarkb17cd752014-12-16 18:05:30 -05004020 obj->properties->properties[count] = property;
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004021 obj->properties->values[count] = init_val;
4022 obj->properties->count++;
Rob Clark88a48e22014-12-18 16:01:50 -05004023 if (property->flags & DRM_MODE_PROP_ATOMIC)
4024 obj->properties->atomic_count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03004025}
4026EXPORT_SYMBOL(drm_object_attach_property);
4027
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004028/**
4029 * drm_object_property_set_value - set the value of a property
4030 * @obj: drm mode object to set property value for
4031 * @property: property to set
4032 * @val: value the property should be set to
4033 *
4034 * This functions sets a given property on a given object. This function only
4035 * changes the software state of the property, it does not call into the
4036 * driver's ->set_property callback.
4037 *
4038 * Returns:
4039 * Zero on success, error code on failure.
4040 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004041int drm_object_property_set_value(struct drm_mode_object *obj,
4042 struct drm_property *property, uint64_t val)
4043{
4044 int i;
4045
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004046 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004047 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004048 obj->properties->values[i] = val;
4049 return 0;
4050 }
4051 }
4052
4053 return -EINVAL;
4054}
4055EXPORT_SYMBOL(drm_object_property_set_value);
4056
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004057/**
4058 * drm_object_property_get_value - retrieve the value of a property
4059 * @obj: drm mode object to get property value from
4060 * @property: property to retrieve
4061 * @val: storage for the property value
4062 *
4063 * This function retrieves the softare state of the given property for the given
4064 * property. Since there is no driver callback to retrieve the current property
4065 * value this might be out of sync with the hardware, depending upon the driver
4066 * and property.
4067 *
4068 * Returns:
4069 * Zero on success, error code on failure.
4070 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004071int drm_object_property_get_value(struct drm_mode_object *obj,
4072 struct drm_property *property, uint64_t *val)
4073{
4074 int i;
4075
Rob Clark88a48e22014-12-18 16:01:50 -05004076 /* read-only properties bypass atomic mechanism and still store
4077 * their value in obj->properties->values[].. mostly to avoid
4078 * having to deal w/ EDID and similar props in atomic paths:
4079 */
4080 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
4081 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
4082 return drm_atomic_get_property(obj, property, val);
4083
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004084 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05004085 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004086 *val = obj->properties->values[i];
4087 return 0;
4088 }
4089 }
4090
4091 return -EINVAL;
4092}
4093EXPORT_SYMBOL(drm_object_property_get_value);
4094
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004095/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004096 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004097 * @dev: DRM device
4098 * @data: ioctl data
4099 * @file_priv: DRM file info
4100 *
Daniel Vetter1a498632014-11-19 18:38:09 +01004101 * This function retrieves the metadata for a given property, like the different
4102 * possible values for an enum property or the limits for a range property.
4103 *
4104 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004105 *
4106 * Called by the user via ioctl.
4107 *
4108 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004109 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004110 */
Dave Airlief453ba02008-11-07 14:05:41 -08004111int drm_mode_getproperty_ioctl(struct drm_device *dev,
4112 void *data, struct drm_file *file_priv)
4113{
Dave Airlief453ba02008-11-07 14:05:41 -08004114 struct drm_mode_get_property *out_resp = data;
4115 struct drm_property *property;
4116 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004117 int value_count = 0;
4118 int ret = 0, i;
4119 int copied;
4120 struct drm_property_enum *prop_enum;
4121 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004122 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004123
Dave Airliefb3b06c2011-02-08 13:55:21 +10004124 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4125 return -EINVAL;
4126
Daniel Vetter84849902012-12-02 00:28:11 +01004127 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004128 property = drm_property_find(dev, out_resp->prop_id);
4129 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004130 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004131 goto done;
4132 }
Dave Airlief453ba02008-11-07 14:05:41 -08004133
Rob Clark5ea22f22014-05-30 11:34:01 -04004134 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4135 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01004136 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08004137 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08004138 }
4139
4140 value_count = property->num_values;
4141
4142 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4143 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4144 out_resp->flags = property->flags;
4145
4146 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004147 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004148 for (i = 0; i < value_count; i++) {
4149 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4150 ret = -EFAULT;
4151 goto done;
4152 }
4153 }
4154 }
4155 out_resp->count_values = value_count;
4156
Rob Clark5ea22f22014-05-30 11:34:01 -04004157 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4158 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004159 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4160 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004161 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01004162 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004163
4164 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4165 ret = -EFAULT;
4166 goto done;
4167 }
4168
4169 if (copy_to_user(&enum_ptr[copied].name,
4170 &prop_enum->name, DRM_PROP_NAME_LEN)) {
4171 ret = -EFAULT;
4172 goto done;
4173 }
4174 copied++;
4175 }
4176 }
4177 out_resp->count_enum_blobs = enum_count;
4178 }
4179
Daniel Vetter3758b342014-11-19 18:38:10 +01004180 /*
4181 * NOTE: The idea seems to have been to use this to read all the blob
4182 * property values. But nothing ever added them to the corresponding
4183 * list, userspace always used the special-purpose get_blob ioctl to
4184 * read the value for a blob property. It also doesn't make a lot of
4185 * sense to return values here when everything else is just metadata for
4186 * the property itself.
4187 */
4188 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4189 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004190done:
Daniel Vetter84849902012-12-02 00:28:11 +01004191 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004192 return ret;
4193}
4194
Daniel Stone99531d92015-05-22 13:34:49 +01004195/**
4196 * drm_property_create_blob - Create new blob property
4197 *
4198 * Creates a new blob property for a specified DRM device, optionally
4199 * copying data.
4200 *
4201 * @dev: DRM device to create property for
4202 * @length: Length to allocate for blob data
4203 * @data: If specified, copies data into blob
Daniel Stone10e8cb72015-05-22 13:34:50 +01004204 *
4205 * Returns:
4206 * New blob property with a single reference on success, or an ERR_PTR
4207 * value on failure.
Daniel Stone99531d92015-05-22 13:34:49 +01004208 */
Daniel Stone6bcacf52015-04-20 19:22:55 +01004209struct drm_property_blob *
Thierry Redingecbbe592014-05-13 11:36:13 +02004210drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004211 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08004212{
4213 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004214 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004215
Daniel Stone99531d92015-05-22 13:34:49 +01004216 if (!length)
Daniel Stone10e8cb72015-05-22 13:34:50 +01004217 return ERR_PTR(-EINVAL);
Dave Airlief453ba02008-11-07 14:05:41 -08004218
4219 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4220 if (!blob)
Daniel Stone10e8cb72015-05-22 13:34:50 +01004221 return ERR_PTR(-ENOMEM);
Dave Airlief453ba02008-11-07 14:05:41 -08004222
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004223 /* This must be explicitly initialised, so we can safely call list_del
4224 * on it in the removal handler, even if it isn't in a file list. */
4225 INIT_LIST_HEAD(&blob->head_file);
Dave Airlief453ba02008-11-07 14:05:41 -08004226 blob->length = length;
Daniel Stone6bcacf52015-04-20 19:22:55 +01004227 blob->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08004228
Daniel Stone99531d92015-05-22 13:34:49 +01004229 if (data)
4230 memcpy(blob->data, data, length);
Dave Airlief453ba02008-11-07 14:05:41 -08004231
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004232 mutex_lock(&dev->mode_config.blob_lock);
4233
4234 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4235 if (ret) {
4236 kfree(blob);
4237 mutex_unlock(&dev->mode_config.blob_lock);
Daniel Stone10e8cb72015-05-22 13:34:50 +01004238 return ERR_PTR(-EINVAL);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004239 }
4240
Daniel Stone6bcacf52015-04-20 19:22:55 +01004241 kref_init(&blob->refcount);
4242
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004243 list_add_tail(&blob->head_global,
4244 &dev->mode_config.property_blob_list);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004245
4246 mutex_unlock(&dev->mode_config.blob_lock);
4247
Dave Airlief453ba02008-11-07 14:05:41 -08004248 return blob;
4249}
Daniel Stone6bcacf52015-04-20 19:22:55 +01004250EXPORT_SYMBOL(drm_property_create_blob);
Dave Airlief453ba02008-11-07 14:05:41 -08004251
Daniel Stone6bcacf52015-04-20 19:22:55 +01004252/**
4253 * drm_property_free_blob - Blob property destructor
4254 *
4255 * Internal free function for blob properties; must not be used directly.
4256 *
Daniel Stonef102c162015-05-22 13:34:44 +01004257 * @kref: Reference
Daniel Stone6bcacf52015-04-20 19:22:55 +01004258 */
4259static void drm_property_free_blob(struct kref *kref)
Dave Airlief453ba02008-11-07 14:05:41 -08004260{
Daniel Stone6bcacf52015-04-20 19:22:55 +01004261 struct drm_property_blob *blob =
4262 container_of(kref, struct drm_property_blob, refcount);
4263
4264 WARN_ON(!mutex_is_locked(&blob->dev->mode_config.blob_lock));
4265
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004266 list_del(&blob->head_global);
4267 list_del(&blob->head_file);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004268 drm_mode_object_put(blob->dev, &blob->base);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004269
Dave Airlief453ba02008-11-07 14:05:41 -08004270 kfree(blob);
4271}
4272
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004273/**
Daniel Stone6bcacf52015-04-20 19:22:55 +01004274 * drm_property_unreference_blob - Unreference a blob property
4275 *
4276 * Drop a reference on a blob property. May free the object.
4277 *
Daniel Stonef102c162015-05-22 13:34:44 +01004278 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004279 */
4280void drm_property_unreference_blob(struct drm_property_blob *blob)
4281{
4282 struct drm_device *dev;
4283
4284 if (!blob)
4285 return;
4286
4287 dev = blob->dev;
4288
4289 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4290
4291 if (kref_put_mutex(&blob->refcount, drm_property_free_blob,
4292 &dev->mode_config.blob_lock))
4293 mutex_unlock(&dev->mode_config.blob_lock);
4294 else
4295 might_lock(&dev->mode_config.blob_lock);
4296
4297}
4298EXPORT_SYMBOL(drm_property_unreference_blob);
4299
4300/**
4301 * drm_property_unreference_blob_locked - Unreference a blob property with blob_lock held
4302 *
4303 * Drop a reference on a blob property. May free the object. This must be
4304 * called with blob_lock held.
4305 *
Daniel Stonef102c162015-05-22 13:34:44 +01004306 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004307 */
4308static void drm_property_unreference_blob_locked(struct drm_property_blob *blob)
4309{
4310 if (!blob)
4311 return;
4312
4313 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4314
4315 kref_put(&blob->refcount, drm_property_free_blob);
4316}
4317
4318/**
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004319 * drm_property_destroy_user_blobs - destroy all blobs created by this client
4320 * @dev: DRM device
4321 * @file_priv: destroy all blobs owned by this file handle
4322 */
4323void drm_property_destroy_user_blobs(struct drm_device *dev,
4324 struct drm_file *file_priv)
4325{
4326 struct drm_property_blob *blob, *bt;
4327
4328 mutex_lock(&dev->mode_config.blob_lock);
4329
4330 list_for_each_entry_safe(blob, bt, &file_priv->blobs, head_file) {
4331 list_del_init(&blob->head_file);
4332 drm_property_unreference_blob_locked(blob);
4333 }
4334
4335 mutex_unlock(&dev->mode_config.blob_lock);
4336}
4337
4338/**
Daniel Stone6bcacf52015-04-20 19:22:55 +01004339 * drm_property_reference_blob - Take a reference on an existing property
4340 *
4341 * Take a new reference on an existing blob property.
4342 *
Daniel Stonef102c162015-05-22 13:34:44 +01004343 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004344 */
4345struct drm_property_blob *drm_property_reference_blob(struct drm_property_blob *blob)
4346{
4347 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4348 kref_get(&blob->refcount);
4349 return blob;
4350}
4351EXPORT_SYMBOL(drm_property_reference_blob);
4352
4353/*
4354 * Like drm_property_lookup_blob, but does not return an additional reference.
4355 * Must be called with blob_lock held.
4356 */
4357static struct drm_property_blob *__drm_property_lookup_blob(struct drm_device *dev,
4358 uint32_t id)
4359{
4360 struct drm_mode_object *obj = NULL;
4361 struct drm_property_blob *blob;
4362
4363 WARN_ON(!mutex_is_locked(&dev->mode_config.blob_lock));
4364
4365 mutex_lock(&dev->mode_config.idr_mutex);
4366 obj = idr_find(&dev->mode_config.crtc_idr, id);
4367 if (!obj || (obj->type != DRM_MODE_OBJECT_BLOB) || (obj->id != id))
4368 blob = NULL;
4369 else
4370 blob = obj_to_blob(obj);
4371 mutex_unlock(&dev->mode_config.idr_mutex);
4372
Dave Airlief453ba02008-11-07 14:05:41 -08004373 return blob;
4374}
4375
Daniel Stone6bcacf52015-04-20 19:22:55 +01004376/**
4377 * drm_property_lookup_blob - look up a blob property and take a reference
4378 * @dev: drm device
4379 * @id: id of the blob property
4380 *
4381 * If successful, this takes an additional reference to the blob property.
4382 * callers need to make sure to eventually unreference the returned property
4383 * again, using @drm_property_unreference_blob.
4384 */
4385struct drm_property_blob *drm_property_lookup_blob(struct drm_device *dev,
4386 uint32_t id)
Dave Airlief453ba02008-11-07 14:05:41 -08004387{
Daniel Stone6bcacf52015-04-20 19:22:55 +01004388 struct drm_property_blob *blob;
4389
4390 mutex_lock(&dev->mode_config.blob_lock);
4391 blob = __drm_property_lookup_blob(dev, id);
4392 if (blob) {
4393 if (!kref_get_unless_zero(&blob->refcount))
4394 blob = NULL;
4395 }
4396 mutex_unlock(&dev->mode_config.blob_lock);
4397
4398 return blob;
4399}
4400EXPORT_SYMBOL(drm_property_lookup_blob);
4401
4402/**
Daniel Stoned2ed3432015-04-20 19:22:53 +01004403 * drm_property_replace_global_blob - atomically replace existing blob property
4404 * @dev: drm device
4405 * @replace: location of blob property pointer to be replaced
4406 * @length: length of data for new blob, or 0 for no data
4407 * @data: content for new blob, or NULL for no data
4408 * @obj_holds_id: optional object for property holding blob ID
4409 * @prop_holds_id: optional property holding blob ID
4410 * @return 0 on success or error on failure
4411 *
4412 * This function will atomically replace a global property in the blob list,
4413 * optionally updating a property which holds the ID of that property. It is
4414 * guaranteed to be atomic: no caller will be allowed to see intermediate
4415 * results, and either the entire operation will succeed and clean up the
4416 * previous property, or it will fail and the state will be unchanged.
4417 *
4418 * If length is 0 or data is NULL, no new blob will be created, and the holding
4419 * property, if specified, will be set to 0.
4420 *
4421 * Access to the replace pointer is assumed to be protected by the caller, e.g.
4422 * by holding the relevant modesetting object lock for its parent.
4423 *
4424 * For example, a drm_connector has a 'PATH' property, which contains the ID
4425 * of a blob property with the value of the MST path information. Calling this
4426 * function with replace pointing to the connector's path_blob_ptr, length and
4427 * data set for the new path information, obj_holds_id set to the connector's
4428 * base object, and prop_holds_id set to the path property name, will perform
4429 * a completely atomic update. The access to path_blob_ptr is protected by the
4430 * caller holding a lock on the connector.
4431 */
4432static int drm_property_replace_global_blob(struct drm_device *dev,
4433 struct drm_property_blob **replace,
4434 size_t length,
4435 const void *data,
4436 struct drm_mode_object *obj_holds_id,
4437 struct drm_property *prop_holds_id)
4438{
4439 struct drm_property_blob *new_blob = NULL;
4440 struct drm_property_blob *old_blob = NULL;
4441 int ret;
4442
4443 WARN_ON(replace == NULL);
4444
4445 old_blob = *replace;
4446
4447 if (length && data) {
4448 new_blob = drm_property_create_blob(dev, length, data);
Daniel Stone10e8cb72015-05-22 13:34:50 +01004449 if (IS_ERR(new_blob))
4450 return PTR_ERR(new_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004451 }
4452
4453 /* This does not need to be synchronised with blob_lock, as the
4454 * get_properties ioctl locks all modesetting objects, and
4455 * obj_holds_id must be locked before calling here, so we cannot
4456 * have its value out of sync with the list membership modified
4457 * below under blob_lock. */
4458 if (obj_holds_id) {
4459 ret = drm_object_property_set_value(obj_holds_id,
4460 prop_holds_id,
4461 new_blob ?
4462 new_blob->base.id : 0);
4463 if (ret != 0)
4464 goto err_created;
4465 }
4466
Markus Elfringec530822015-07-05 21:55:10 +02004467 drm_property_unreference_blob(old_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004468 *replace = new_blob;
4469
4470 return 0;
4471
4472err_created:
Daniel Stone6bcacf52015-04-20 19:22:55 +01004473 drm_property_unreference_blob(new_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004474 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004475}
4476
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004477/**
4478 * drm_mode_getblob_ioctl - get the contents of a blob property value
4479 * @dev: DRM device
4480 * @data: ioctl data
4481 * @file_priv: DRM file info
4482 *
4483 * This function retrieves the contents of a blob property. The value stored in
4484 * an object's blob property is just a normal modeset object id.
4485 *
4486 * Called by the user via ioctl.
4487 *
4488 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004489 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004490 */
Dave Airlief453ba02008-11-07 14:05:41 -08004491int drm_mode_getblob_ioctl(struct drm_device *dev,
4492 void *data, struct drm_file *file_priv)
4493{
Dave Airlief453ba02008-11-07 14:05:41 -08004494 struct drm_mode_get_blob *out_resp = data;
4495 struct drm_property_blob *blob;
4496 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004497 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004498
Dave Airliefb3b06c2011-02-08 13:55:21 +10004499 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4500 return -EINVAL;
4501
Daniel Vetter84849902012-12-02 00:28:11 +01004502 drm_modeset_lock_all(dev);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004503 mutex_lock(&dev->mode_config.blob_lock);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004504 blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
Rob Clarka2b34e22013-10-05 16:36:52 -04004505 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004506 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004507 goto done;
4508 }
Dave Airlief453ba02008-11-07 14:05:41 -08004509
4510 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004511 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004512 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004513 ret = -EFAULT;
4514 goto done;
4515 }
4516 }
4517 out_resp->length = blob->length;
4518
4519done:
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004520 mutex_unlock(&dev->mode_config.blob_lock);
Daniel Vetter84849902012-12-02 00:28:11 +01004521 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004522 return ret;
4523}
4524
Dave Airliecc7096f2014-10-22 12:03:04 +10004525/**
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004526 * drm_mode_createblob_ioctl - create a new blob property
4527 * @dev: DRM device
4528 * @data: ioctl data
4529 * @file_priv: DRM file info
4530 *
4531 * This function creates a new blob property with user-defined values. In order
4532 * to give us sensible validation and checking when creating, rather than at
4533 * every potential use, we also require a type to be provided upfront.
4534 *
4535 * Called by the user via ioctl.
4536 *
4537 * Returns:
4538 * Zero on success, negative errno on failure.
4539 */
4540int drm_mode_createblob_ioctl(struct drm_device *dev,
4541 void *data, struct drm_file *file_priv)
4542{
4543 struct drm_mode_create_blob *out_resp = data;
4544 struct drm_property_blob *blob;
4545 void __user *blob_ptr;
4546 int ret = 0;
4547
4548 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4549 return -EINVAL;
4550
4551 blob = drm_property_create_blob(dev, out_resp->length, NULL);
4552 if (IS_ERR(blob))
4553 return PTR_ERR(blob);
4554
4555 blob_ptr = (void __user *)(unsigned long)out_resp->data;
4556 if (copy_from_user(blob->data, blob_ptr, out_resp->length)) {
4557 ret = -EFAULT;
4558 goto out_blob;
4559 }
4560
4561 /* Dropping the lock between create_blob and our access here is safe
4562 * as only the same file_priv can remove the blob; at this point, it is
4563 * not associated with any file_priv. */
4564 mutex_lock(&dev->mode_config.blob_lock);
4565 out_resp->blob_id = blob->base.id;
4566 list_add_tail(&file_priv->blobs, &blob->head_file);
4567 mutex_unlock(&dev->mode_config.blob_lock);
4568
4569 return 0;
4570
4571out_blob:
4572 drm_property_unreference_blob(blob);
4573 return ret;
4574}
4575
4576/**
4577 * drm_mode_destroyblob_ioctl - destroy a user blob property
4578 * @dev: DRM device
4579 * @data: ioctl data
4580 * @file_priv: DRM file info
4581 *
4582 * Destroy an existing user-defined blob property.
4583 *
4584 * Called by the user via ioctl.
4585 *
4586 * Returns:
4587 * Zero on success, negative errno on failure.
4588 */
4589int drm_mode_destroyblob_ioctl(struct drm_device *dev,
4590 void *data, struct drm_file *file_priv)
4591{
4592 struct drm_mode_destroy_blob *out_resp = data;
4593 struct drm_property_blob *blob = NULL, *bt;
4594 bool found = false;
4595 int ret = 0;
4596
4597 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4598 return -EINVAL;
4599
4600 mutex_lock(&dev->mode_config.blob_lock);
4601 blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
4602 if (!blob) {
4603 ret = -ENOENT;
4604 goto err;
4605 }
4606
4607 /* Ensure the property was actually created by this user. */
4608 list_for_each_entry(bt, &file_priv->blobs, head_file) {
4609 if (bt == blob) {
4610 found = true;
4611 break;
4612 }
4613 }
4614
4615 if (!found) {
4616 ret = -EPERM;
4617 goto err;
4618 }
4619
4620 /* We must drop head_file here, because we may not be the last
4621 * reference on the blob. */
4622 list_del_init(&blob->head_file);
4623 drm_property_unreference_blob_locked(blob);
4624 mutex_unlock(&dev->mode_config.blob_lock);
4625
4626 return 0;
4627
4628err:
4629 mutex_unlock(&dev->mode_config.blob_lock);
4630 return ret;
4631}
4632
4633/**
Dave Airliecc7096f2014-10-22 12:03:04 +10004634 * drm_mode_connector_set_path_property - set tile property on connector
4635 * @connector: connector to set property on.
Daniel Stoned2ed3432015-04-20 19:22:53 +01004636 * @path: path to use for property; must not be NULL.
Dave Airliecc7096f2014-10-22 12:03:04 +10004637 *
4638 * This creates a property to expose to userspace to specify a
4639 * connector path. This is mainly used for DisplayPort MST where
4640 * connectors have a topology and we want to allow userspace to give
4641 * them more meaningful names.
4642 *
4643 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004644 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004645 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004646int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004647 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004648{
4649 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004650 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004651
Daniel Stoned2ed3432015-04-20 19:22:53 +01004652 ret = drm_property_replace_global_blob(dev,
4653 &connector->path_blob_ptr,
4654 strlen(path) + 1,
4655 path,
4656 &connector->base,
4657 dev->mode_config.path_property);
Dave Airlie43aba7e2014-06-05 14:01:31 +10004658 return ret;
4659}
4660EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4661
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004662/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004663 * drm_mode_connector_set_tile_property - set tile property on connector
4664 * @connector: connector to set property on.
4665 *
4666 * This looks up the tile information for a connector, and creates a
4667 * property for userspace to parse if it exists. The property is of
4668 * the form of 8 integers using ':' as a separator.
4669 *
4670 * Returns:
4671 * Zero on success, errno on failure.
4672 */
4673int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4674{
4675 struct drm_device *dev = connector->dev;
Dave Airlie6f134d72014-10-20 16:30:50 +10004676 char tile[256];
Daniel Stoned2ed3432015-04-20 19:22:53 +01004677 int ret;
Dave Airlie6f134d72014-10-20 16:30:50 +10004678
4679 if (!connector->has_tile) {
Daniel Stoned2ed3432015-04-20 19:22:53 +01004680 ret = drm_property_replace_global_blob(dev,
4681 &connector->tile_blob_ptr,
4682 0,
4683 NULL,
4684 &connector->base,
4685 dev->mode_config.tile_property);
Dave Airlie6f134d72014-10-20 16:30:50 +10004686 return ret;
4687 }
4688
4689 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4690 connector->tile_group->id, connector->tile_is_single_monitor,
4691 connector->num_h_tile, connector->num_v_tile,
4692 connector->tile_h_loc, connector->tile_v_loc,
4693 connector->tile_h_size, connector->tile_v_size);
Dave Airlie6f134d72014-10-20 16:30:50 +10004694
Daniel Stoned2ed3432015-04-20 19:22:53 +01004695 ret = drm_property_replace_global_blob(dev,
4696 &connector->tile_blob_ptr,
4697 strlen(tile) + 1,
4698 tile,
4699 &connector->base,
4700 dev->mode_config.tile_property);
Dave Airlie6f134d72014-10-20 16:30:50 +10004701 return ret;
4702}
4703EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4704
4705/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004706 * drm_mode_connector_update_edid_property - update the edid property of a connector
4707 * @connector: drm connector
4708 * @edid: new value of the edid property
4709 *
4710 * This function creates a new blob modeset object and assigns its id to the
4711 * connector's edid property.
4712 *
4713 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004714 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004715 */
Dave Airlief453ba02008-11-07 14:05:41 -08004716int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004717 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004718{
4719 struct drm_device *dev = connector->dev;
Daniel Stoned2ed3432015-04-20 19:22:53 +01004720 size_t size = 0;
Thierry Redingecbbe592014-05-13 11:36:13 +02004721 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004722
Thomas Wood4cf2b282014-06-18 17:52:33 +01004723 /* ignore requests to set edid when overridden */
4724 if (connector->override_edid)
4725 return 0;
4726
Daniel Stoned2ed3432015-04-20 19:22:53 +01004727 if (edid)
Shixin Zenge24ff462015-07-03 08:46:50 +02004728 size = EDID_LENGTH * (1 + edid->extensions);
Dave Airlief453ba02008-11-07 14:05:41 -08004729
Daniel Stoned2ed3432015-04-20 19:22:53 +01004730 ret = drm_property_replace_global_blob(dev,
4731 &connector->edid_blob_ptr,
4732 size,
4733 edid,
4734 &connector->base,
4735 dev->mode_config.edid_property);
Dave Airlief453ba02008-11-07 14:05:41 -08004736 return ret;
4737}
4738EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4739
Rob Clark3843e712014-12-16 18:05:29 -05004740/* Some properties could refer to dynamic refcnt'd objects, or things that
4741 * need special locking to handle lifetime issues (ie. to ensure the prop
4742 * value doesn't become invalid part way through the property update due to
4743 * race). The value returned by reference via 'obj' should be passed back
4744 * to drm_property_change_valid_put() after the property is set (and the
4745 * object to which the property is attached has a chance to take it's own
4746 * reference).
4747 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05004748bool drm_property_change_valid_get(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004749 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004750{
Thierry Reding2ca651d2014-12-10 13:03:39 +01004751 int i;
4752
Paulo Zanoni26a34812012-05-15 18:08:59 -03004753 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4754 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004755
Rob Clark3843e712014-12-16 18:05:29 -05004756 *ref = NULL;
4757
Rob Clark5ea22f22014-05-30 11:34:01 -04004758 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004759 if (value < property->values[0] || value > property->values[1])
4760 return false;
4761 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004762 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4763 int64_t svalue = U642I64(value);
Thierry Reding4dfd9092014-12-10 13:03:34 +01004764
Rob Clarkebc44cf2012-09-12 22:22:31 -05004765 if (svalue < U642I64(property->values[0]) ||
4766 svalue > U642I64(property->values[1]))
4767 return false;
4768 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004769 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004770 uint64_t valid_mask = 0;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004771
Rob Clark49e27542012-05-17 02:23:26 -06004772 for (i = 0; i < property->num_values; i++)
4773 valid_mask |= (1ULL << property->values[i]);
4774 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004775 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Daniel Stone6bcacf52015-04-20 19:22:55 +01004776 struct drm_property_blob *blob;
4777
4778 if (value == 0)
4779 return true;
4780
4781 blob = drm_property_lookup_blob(property->dev, value);
4782 if (blob) {
4783 *ref = &blob->base;
4784 return true;
4785 } else {
4786 return false;
4787 }
Rob Clark98f75de2014-05-30 11:37:03 -04004788 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004789 /* a zero value for an object property translates to null: */
4790 if (value == 0)
4791 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004792
4793 /* handle refcnt'd objects specially: */
4794 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4795 struct drm_framebuffer *fb;
4796 fb = drm_framebuffer_lookup(property->dev, value);
4797 if (fb) {
4798 *ref = &fb->base;
4799 return true;
4800 } else {
4801 return false;
4802 }
4803 } else {
4804 return _object_find(property->dev, value, property->values[0]) != NULL;
4805 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004806 }
Thierry Reding2ca651d2014-12-10 13:03:39 +01004807
4808 for (i = 0; i < property->num_values; i++)
4809 if (property->values[i] == value)
4810 return true;
4811 return false;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004812}
4813
Rob Clarkd34f20d2014-12-18 16:01:56 -05004814void drm_property_change_valid_put(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004815 struct drm_mode_object *ref)
4816{
4817 if (!ref)
4818 return;
4819
4820 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4821 if (property->values[0] == DRM_MODE_OBJECT_FB)
4822 drm_framebuffer_unreference(obj_to_fb(ref));
Daniel Stoneda9b2a32015-05-25 19:11:49 +01004823 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4824 drm_property_unreference_blob(obj_to_blob(ref));
Rob Clark3843e712014-12-16 18:05:29 -05004825}
4826
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004827/**
4828 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4829 * @dev: DRM device
4830 * @data: ioctl data
4831 * @file_priv: DRM file info
4832 *
4833 * This function sets the current value for a connectors's property. It also
4834 * calls into a driver's ->set_property callback to update the hardware state
4835 *
4836 * Called by the user via ioctl.
4837 *
4838 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004839 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004840 */
Dave Airlief453ba02008-11-07 14:05:41 -08004841int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4842 void *data, struct drm_file *file_priv)
4843{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004844 struct drm_mode_connector_set_property *conn_set_prop = data;
4845 struct drm_mode_obj_set_property obj_set_prop = {
4846 .value = conn_set_prop->value,
4847 .prop_id = conn_set_prop->prop_id,
4848 .obj_id = conn_set_prop->connector_id,
4849 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4850 };
Dave Airlief453ba02008-11-07 14:05:41 -08004851
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004852 /* It does all the locking and checking we need */
4853 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004854}
4855
Paulo Zanonic5431882012-05-15 18:09:02 -03004856static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4857 struct drm_property *property,
4858 uint64_t value)
4859{
4860 int ret = -EINVAL;
4861 struct drm_connector *connector = obj_to_connector(obj);
4862
4863 /* Do DPMS ourselves */
4864 if (property == connector->dev->mode_config.dpms_property) {
4865 if (connector->funcs->dpms)
4866 (*connector->funcs->dpms)(connector, (int)value);
4867 ret = 0;
4868 } else if (connector->funcs->set_property)
4869 ret = connector->funcs->set_property(connector, property, value);
4870
4871 /* store the property value if successful */
4872 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004873 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004874 return ret;
4875}
4876
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004877static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4878 struct drm_property *property,
4879 uint64_t value)
4880{
4881 int ret = -EINVAL;
4882 struct drm_crtc *crtc = obj_to_crtc(obj);
4883
4884 if (crtc->funcs->set_property)
4885 ret = crtc->funcs->set_property(crtc, property, value);
4886 if (!ret)
4887 drm_object_property_set_value(obj, property, value);
4888
4889 return ret;
4890}
4891
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004892/**
4893 * drm_mode_plane_set_obj_prop - set the value of a property
4894 * @plane: drm plane object to set property value for
4895 * @property: property to set
4896 * @value: value the property should be set to
4897 *
4898 * This functions sets a given property on a given plane object. This function
4899 * calls the driver's ->set_property callback and changes the software state of
4900 * the property if the callback succeeds.
4901 *
4902 * Returns:
4903 * Zero on success, error code on failure.
4904 */
4905int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4906 struct drm_property *property,
4907 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004908{
4909 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004910 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004911
4912 if (plane->funcs->set_property)
4913 ret = plane->funcs->set_property(plane, property, value);
4914 if (!ret)
4915 drm_object_property_set_value(obj, property, value);
4916
4917 return ret;
4918}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004919EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004920
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004921/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004922 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004923 * @dev: DRM device
4924 * @data: ioctl data
4925 * @file_priv: DRM file info
4926 *
4927 * This function retrieves the current value for an object's property. Compared
4928 * to the connector specific ioctl this one is extended to also work on crtc and
4929 * plane objects.
4930 *
4931 * Called by the user via ioctl.
4932 *
4933 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004934 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004935 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004936int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4937 struct drm_file *file_priv)
4938{
4939 struct drm_mode_obj_get_properties *arg = data;
4940 struct drm_mode_object *obj;
4941 int ret = 0;
Paulo Zanonic5431882012-05-15 18:09:02 -03004942
4943 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4944 return -EINVAL;
4945
Daniel Vetter84849902012-12-02 00:28:11 +01004946 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004947
4948 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4949 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004950 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004951 goto out;
4952 }
4953 if (!obj->properties) {
4954 ret = -EINVAL;
4955 goto out;
4956 }
4957
Rob Clark88a48e22014-12-18 16:01:50 -05004958 ret = get_properties(obj, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05004959 (uint32_t __user *)(unsigned long)(arg->props_ptr),
4960 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
4961 &arg->count_props);
Paulo Zanonic5431882012-05-15 18:09:02 -03004962
Paulo Zanonic5431882012-05-15 18:09:02 -03004963out:
Daniel Vetter84849902012-12-02 00:28:11 +01004964 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004965 return ret;
4966}
4967
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004968/**
4969 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4970 * @dev: DRM device
4971 * @data: ioctl data
4972 * @file_priv: DRM file info
4973 *
4974 * This function sets the current value for an object's property. It also calls
4975 * into a driver's ->set_property callback to update the hardware state.
4976 * Compared to the connector specific ioctl this one is extended to also work on
4977 * crtc and plane objects.
4978 *
4979 * Called by the user via ioctl.
4980 *
4981 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004982 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004983 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004984int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4985 struct drm_file *file_priv)
4986{
4987 struct drm_mode_obj_set_property *arg = data;
4988 struct drm_mode_object *arg_obj;
4989 struct drm_mode_object *prop_obj;
4990 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05004991 int i, ret = -EINVAL;
4992 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03004993
4994 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4995 return -EINVAL;
4996
Daniel Vetter84849902012-12-02 00:28:11 +01004997 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004998
4999 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005000 if (!arg_obj) {
5001 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03005002 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005003 }
Paulo Zanonic5431882012-05-15 18:09:02 -03005004 if (!arg_obj->properties)
5005 goto out;
5006
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03005007 for (i = 0; i < arg_obj->properties->count; i++)
Rob Clarkb17cd752014-12-16 18:05:30 -05005008 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
Paulo Zanonic5431882012-05-15 18:09:02 -03005009 break;
5010
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03005011 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03005012 goto out;
5013
5014 prop_obj = drm_mode_object_find(dev, arg->prop_id,
5015 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005016 if (!prop_obj) {
5017 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03005018 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005019 }
Paulo Zanonic5431882012-05-15 18:09:02 -03005020 property = obj_to_property(prop_obj);
5021
Rob Clark3843e712014-12-16 18:05:29 -05005022 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03005023 goto out;
5024
5025 switch (arg_obj->type) {
5026 case DRM_MODE_OBJECT_CONNECTOR:
5027 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
5028 arg->value);
5029 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03005030 case DRM_MODE_OBJECT_CRTC:
5031 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
5032 break;
Rob Clark4d939142012-05-17 02:23:27 -06005033 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01005034 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
5035 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06005036 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03005037 }
5038
Rob Clark3843e712014-12-16 18:05:29 -05005039 drm_property_change_valid_put(property, ref);
5040
Paulo Zanonic5431882012-05-15 18:09:02 -03005041out:
Daniel Vetter84849902012-12-02 00:28:11 +01005042 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03005043 return ret;
5044}
5045
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005046/**
5047 * drm_mode_connector_attach_encoder - attach a connector to an encoder
5048 * @connector: connector to attach
5049 * @encoder: encoder to attach @connector to
5050 *
5051 * This function links up a connector to an encoder. Note that the routing
5052 * restrictions between encoders and crtcs are exposed to userspace through the
5053 * possible_clones and possible_crtcs bitmasks.
5054 *
5055 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005056 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005057 */
Dave Airlief453ba02008-11-07 14:05:41 -08005058int drm_mode_connector_attach_encoder(struct drm_connector *connector,
5059 struct drm_encoder *encoder)
5060{
5061 int i;
5062
5063 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
5064 if (connector->encoder_ids[i] == 0) {
5065 connector->encoder_ids[i] = encoder->base.id;
5066 return 0;
5067 }
5068 }
5069 return -ENOMEM;
5070}
5071EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
5072
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005073/**
5074 * drm_mode_crtc_set_gamma_size - set the gamma table size
5075 * @crtc: CRTC to set the gamma table size for
5076 * @gamma_size: size of the gamma table
5077 *
5078 * Drivers which support gamma tables should set this to the supported gamma
5079 * table size when initializing the CRTC. Currently the drm core only supports a
5080 * fixed gamma table size.
5081 *
5082 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005083 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005084 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01005085int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005086 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08005087{
5088 crtc->gamma_size = gamma_size;
5089
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01005090 crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
5091 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08005092 if (!crtc->gamma_store) {
5093 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01005094 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08005095 }
5096
Sascha Hauer4cae5b82012-02-01 11:38:23 +01005097 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08005098}
5099EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
5100
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005101/**
5102 * drm_mode_gamma_set_ioctl - set the gamma table
5103 * @dev: DRM device
5104 * @data: ioctl data
5105 * @file_priv: DRM file info
5106 *
5107 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
5108 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
5109 *
5110 * Called by the user via ioctl.
5111 *
5112 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005113 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005114 */
Dave Airlief453ba02008-11-07 14:05:41 -08005115int drm_mode_gamma_set_ioctl(struct drm_device *dev,
5116 void *data, struct drm_file *file_priv)
5117{
5118 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08005119 struct drm_crtc *crtc;
5120 void *r_base, *g_base, *b_base;
5121 int size;
5122 int ret = 0;
5123
Dave Airliefb3b06c2011-02-08 13:55:21 +10005124 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5125 return -EINVAL;
5126
Daniel Vetter84849902012-12-02 00:28:11 +01005127 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04005128 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5129 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005130 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08005131 goto out;
5132 }
Dave Airlief453ba02008-11-07 14:05:41 -08005133
Laurent Pinchartebe0f242012-05-17 13:27:24 +02005134 if (crtc->funcs->gamma_set == NULL) {
5135 ret = -ENOSYS;
5136 goto out;
5137 }
5138
Dave Airlief453ba02008-11-07 14:05:41 -08005139 /* memcpy into gamma store */
5140 if (crtc_lut->gamma_size != crtc->gamma_size) {
5141 ret = -EINVAL;
5142 goto out;
5143 }
5144
5145 size = crtc_lut->gamma_size * (sizeof(uint16_t));
5146 r_base = crtc->gamma_store;
5147 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
5148 ret = -EFAULT;
5149 goto out;
5150 }
5151
5152 g_base = r_base + size;
5153 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
5154 ret = -EFAULT;
5155 goto out;
5156 }
5157
5158 b_base = g_base + size;
5159 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
5160 ret = -EFAULT;
5161 goto out;
5162 }
5163
James Simmons72034252010-08-03 01:33:19 +01005164 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08005165
5166out:
Daniel Vetter84849902012-12-02 00:28:11 +01005167 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08005168 return ret;
5169
5170}
5171
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005172/**
5173 * drm_mode_gamma_get_ioctl - get the gamma table
5174 * @dev: DRM device
5175 * @data: ioctl data
5176 * @file_priv: DRM file info
5177 *
5178 * Copy the current gamma table into the storage provided. This also provides
5179 * the gamma table size the driver expects, which can be used to size the
5180 * allocated storage.
5181 *
5182 * Called by the user via ioctl.
5183 *
5184 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005185 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005186 */
Dave Airlief453ba02008-11-07 14:05:41 -08005187int drm_mode_gamma_get_ioctl(struct drm_device *dev,
5188 void *data, struct drm_file *file_priv)
5189{
5190 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08005191 struct drm_crtc *crtc;
5192 void *r_base, *g_base, *b_base;
5193 int size;
5194 int ret = 0;
5195
Dave Airliefb3b06c2011-02-08 13:55:21 +10005196 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5197 return -EINVAL;
5198
Daniel Vetter84849902012-12-02 00:28:11 +01005199 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04005200 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5201 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005202 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08005203 goto out;
5204 }
Dave Airlief453ba02008-11-07 14:05:41 -08005205
5206 /* memcpy into gamma store */
5207 if (crtc_lut->gamma_size != crtc->gamma_size) {
5208 ret = -EINVAL;
5209 goto out;
5210 }
5211
5212 size = crtc_lut->gamma_size * (sizeof(uint16_t));
5213 r_base = crtc->gamma_store;
5214 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
5215 ret = -EFAULT;
5216 goto out;
5217 }
5218
5219 g_base = r_base + size;
5220 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
5221 ret = -EFAULT;
5222 goto out;
5223 }
5224
5225 b_base = g_base + size;
5226 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
5227 ret = -EFAULT;
5228 goto out;
5229 }
5230out:
Daniel Vetter84849902012-12-02 00:28:11 +01005231 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08005232 return ret;
5233}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005234
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005235/**
5236 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
5237 * @dev: DRM device
5238 * @data: ioctl data
5239 * @file_priv: DRM file info
5240 *
5241 * This schedules an asynchronous update on a given CRTC, called page flip.
5242 * Optionally a drm event is generated to signal the completion of the event.
5243 * Generic drivers cannot assume that a pageflip with changed framebuffer
5244 * properties (including driver specific metadata like tiling layout) will work,
5245 * but some drivers support e.g. pixel format changes through the pageflip
5246 * ioctl.
5247 *
5248 * Called by the user via ioctl.
5249 *
5250 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005251 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005252 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005253int drm_mode_page_flip_ioctl(struct drm_device *dev,
5254 void *data, struct drm_file *file_priv)
5255{
5256 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005257 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02005258 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005259 struct drm_pending_vblank_event *e = NULL;
5260 unsigned long flags;
5261 int ret = -EINVAL;
5262
5263 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
5264 page_flip->reserved != 0)
5265 return -EINVAL;
5266
Keith Packard62f21042013-07-22 18:50:00 -07005267 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
5268 return -EINVAL;
5269
Rob Clarka2b34e22013-10-05 16:36:52 -04005270 crtc = drm_crtc_find(dev, page_flip->crtc_id);
5271 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005272 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005273
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01005274 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07005275 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01005276 /* The framebuffer is currently unbound, presumably
5277 * due to a hotplug event, that userspace has not
5278 * yet discovered.
5279 */
5280 ret = -EBUSY;
5281 goto out;
5282 }
5283
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005284 if (crtc->funcs->page_flip == NULL)
5285 goto out;
5286
Daniel Vetter786b99e2012-12-02 21:53:40 +01005287 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03005288 if (!fb) {
5289 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005290 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03005291 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005292
Damien Lespiauc11e9282013-09-25 16:45:30 +01005293 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
5294 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02005295 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02005296
Matt Roperf4510a22014-04-01 15:22:40 -07005297 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02005298 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
5299 ret = -EINVAL;
5300 goto out;
5301 }
5302
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005303 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5304 ret = -ENOMEM;
5305 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005306 if (file_priv->event_space < sizeof(e->event)) {
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005307 spin_unlock_irqrestore(&dev->event_lock, flags);
5308 goto out;
5309 }
Thierry Redingf76511b2014-12-10 13:03:40 +01005310 file_priv->event_space -= sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005311 spin_unlock_irqrestore(&dev->event_lock, flags);
5312
Thierry Redingf76511b2014-12-10 13:03:40 +01005313 e = kzalloc(sizeof(*e), GFP_KERNEL);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005314 if (e == NULL) {
5315 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005316 file_priv->event_space += sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005317 spin_unlock_irqrestore(&dev->event_lock, flags);
5318 goto out;
5319 }
5320
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08005321 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Thierry Redingf76511b2014-12-10 13:03:40 +01005322 e->event.base.length = sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005323 e->event.user_data = page_flip->user_data;
5324 e->base.event = &e->event.base;
5325 e->base.file_priv = file_priv;
5326 e->base.destroy =
5327 (void (*) (struct drm_pending_event *)) kfree;
5328 }
5329
Daniel Vetter3d30a592014-07-27 13:42:42 +02005330 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07005331 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005332 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005333 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5334 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005335 file_priv->event_space += sizeof(e->event);
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005336 spin_unlock_irqrestore(&dev->event_lock, flags);
5337 kfree(e);
5338 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01005339 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02005340 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01005341 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01005342 /*
5343 * Warn if the driver hasn't properly updated the crtc->fb
5344 * field to reflect that the new framebuffer is now used.
5345 * Failing to do so will screw with the reference counting
5346 * on framebuffers.
5347 */
Matt Roperf4510a22014-04-01 15:22:40 -07005348 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01005349 /* Unref only the old framebuffer. */
5350 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005351 }
5352
5353out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01005354 if (fb)
5355 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02005356 if (crtc->primary->old_fb)
5357 drm_framebuffer_unreference(crtc->primary->old_fb);
5358 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02005359 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01005360
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005361 return ret;
5362}
Chris Wilsoneb033552011-01-24 15:11:08 +00005363
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005364/**
5365 * drm_mode_config_reset - call ->reset callbacks
5366 * @dev: drm device
5367 *
5368 * This functions calls all the crtc's, encoder's and connector's ->reset
5369 * callback. Drivers can use this in e.g. their driver load or resume code to
5370 * reset hardware and software state.
5371 */
Chris Wilsoneb033552011-01-24 15:11:08 +00005372void drm_mode_config_reset(struct drm_device *dev)
5373{
5374 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005375 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00005376 struct drm_encoder *encoder;
5377 struct drm_connector *connector;
5378
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005379 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
5380 if (plane->funcs->reset)
5381 plane->funcs->reset(plane);
5382
Chris Wilsoneb033552011-01-24 15:11:08 +00005383 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
5384 if (crtc->funcs->reset)
5385 crtc->funcs->reset(crtc);
5386
5387 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
5388 if (encoder->funcs->reset)
5389 encoder->funcs->reset(encoder);
5390
Daniel Vetter6295d602015-07-09 23:44:25 +02005391 drm_for_each_connector(connector, dev) {
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00005392 connector->status = connector_status_unknown;
5393
Chris Wilsoneb033552011-01-24 15:11:08 +00005394 if (connector->funcs->reset)
5395 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00005396 }
Chris Wilsoneb033552011-01-24 15:11:08 +00005397}
5398EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10005399
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005400/**
5401 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
5402 * @dev: DRM device
5403 * @data: ioctl data
5404 * @file_priv: DRM file info
5405 *
5406 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
5407 * TTM or something else entirely) and returns the resulting buffer handle. This
5408 * handle can then be wrapped up into a framebuffer modeset object.
5409 *
5410 * Note that userspace is not allowed to use such objects for render
5411 * acceleration - drivers must create their own private ioctls for such a use
5412 * case.
5413 *
5414 * Called by the user via ioctl.
5415 *
5416 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005417 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005418 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005419int drm_mode_create_dumb_ioctl(struct drm_device *dev,
5420 void *data, struct drm_file *file_priv)
5421{
5422 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01005423 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10005424
5425 if (!dev->driver->dumb_create)
5426 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01005427 if (!args->width || !args->height || !args->bpp)
5428 return -EINVAL;
5429
5430 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02005431 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01005432 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02005433 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01005434 return -EINVAL;
5435 stride = cpp * args->width;
5436 if (args->height > 0xffffffffU / stride)
5437 return -EINVAL;
5438
5439 /* test for wrap-around */
5440 size = args->height * stride;
5441 if (PAGE_ALIGN(size) == 0)
5442 return -EINVAL;
5443
Thierry Redingf6085952014-11-03 11:14:14 +01005444 /*
5445 * handle, pitch and size are output parameters. Zero them out to
5446 * prevent drivers from accidentally using uninitialized data. Since
5447 * not all existing userspace is clearing these fields properly we
5448 * cannot reject IOCTL with garbage in them.
5449 */
5450 args->handle = 0;
5451 args->pitch = 0;
5452 args->size = 0;
5453
Dave Airlieff72145b2011-02-07 12:16:14 +10005454 return dev->driver->dumb_create(file_priv, dev, args);
5455}
5456
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005457/**
5458 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5459 * @dev: DRM device
5460 * @data: ioctl data
5461 * @file_priv: DRM file info
5462 *
5463 * Allocate an offset in the drm device node's address space to be able to
5464 * memory map a dumb buffer.
5465 *
5466 * Called by the user via ioctl.
5467 *
5468 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005469 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005470 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005471int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5472 void *data, struct drm_file *file_priv)
5473{
5474 struct drm_mode_map_dumb *args = data;
5475
5476 /* call driver ioctl to get mmap offset */
5477 if (!dev->driver->dumb_map_offset)
5478 return -ENOSYS;
5479
5480 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5481}
5482
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005483/**
5484 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5485 * @dev: DRM device
5486 * @data: ioctl data
5487 * @file_priv: DRM file info
5488 *
5489 * This destroys the userspace handle for the given dumb backing storage buffer.
5490 * Since buffer objects must be reference counted in the kernel a buffer object
5491 * won't be immediately freed if a framebuffer modeset object still uses it.
5492 *
5493 * Called by the user via ioctl.
5494 *
5495 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005496 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005497 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005498int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5499 void *data, struct drm_file *file_priv)
5500{
5501 struct drm_mode_destroy_dumb *args = data;
5502
5503 if (!dev->driver->dumb_destroy)
5504 return -ENOSYS;
5505
5506 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5507}
Dave Airlie248dbc22011-11-29 20:02:54 +00005508
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005509/**
5510 * drm_fb_get_bpp_depth - get the bpp/depth values for format
5511 * @format: pixel format (DRM_FORMAT_*)
5512 * @depth: storage for the depth value
5513 * @bpp: storage for the bpp value
5514 *
5515 * This only supports RGB formats here for compat with code that doesn't use
5516 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00005517 */
5518void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5519 int *bpp)
5520{
5521 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02005522 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02005523 case DRM_FORMAT_RGB332:
5524 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00005525 *depth = 8;
5526 *bpp = 8;
5527 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005528 case DRM_FORMAT_XRGB1555:
5529 case DRM_FORMAT_XBGR1555:
5530 case DRM_FORMAT_RGBX5551:
5531 case DRM_FORMAT_BGRX5551:
5532 case DRM_FORMAT_ARGB1555:
5533 case DRM_FORMAT_ABGR1555:
5534 case DRM_FORMAT_RGBA5551:
5535 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005536 *depth = 15;
5537 *bpp = 16;
5538 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005539 case DRM_FORMAT_RGB565:
5540 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005541 *depth = 16;
5542 *bpp = 16;
5543 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005544 case DRM_FORMAT_RGB888:
5545 case DRM_FORMAT_BGR888:
5546 *depth = 24;
5547 *bpp = 24;
5548 break;
5549 case DRM_FORMAT_XRGB8888:
5550 case DRM_FORMAT_XBGR8888:
5551 case DRM_FORMAT_RGBX8888:
5552 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005553 *depth = 24;
5554 *bpp = 32;
5555 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005556 case DRM_FORMAT_XRGB2101010:
5557 case DRM_FORMAT_XBGR2101010:
5558 case DRM_FORMAT_RGBX1010102:
5559 case DRM_FORMAT_BGRX1010102:
5560 case DRM_FORMAT_ARGB2101010:
5561 case DRM_FORMAT_ABGR2101010:
5562 case DRM_FORMAT_RGBA1010102:
5563 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005564 *depth = 30;
5565 *bpp = 32;
5566 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005567 case DRM_FORMAT_ARGB8888:
5568 case DRM_FORMAT_ABGR8888:
5569 case DRM_FORMAT_RGBA8888:
5570 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005571 *depth = 32;
5572 *bpp = 32;
5573 break;
5574 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005575 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5576 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005577 *depth = 0;
5578 *bpp = 0;
5579 break;
5580 }
5581}
5582EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005583
5584/**
5585 * drm_format_num_planes - get the number of planes for format
5586 * @format: pixel format (DRM_FORMAT_*)
5587 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005588 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005589 * The number of planes used by the specified pixel format.
5590 */
5591int drm_format_num_planes(uint32_t format)
5592{
5593 switch (format) {
5594 case DRM_FORMAT_YUV410:
5595 case DRM_FORMAT_YVU410:
5596 case DRM_FORMAT_YUV411:
5597 case DRM_FORMAT_YVU411:
5598 case DRM_FORMAT_YUV420:
5599 case DRM_FORMAT_YVU420:
5600 case DRM_FORMAT_YUV422:
5601 case DRM_FORMAT_YVU422:
5602 case DRM_FORMAT_YUV444:
5603 case DRM_FORMAT_YVU444:
5604 return 3;
5605 case DRM_FORMAT_NV12:
5606 case DRM_FORMAT_NV21:
5607 case DRM_FORMAT_NV16:
5608 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005609 case DRM_FORMAT_NV24:
5610 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005611 return 2;
5612 default:
5613 return 1;
5614 }
5615}
5616EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005617
5618/**
5619 * drm_format_plane_cpp - determine the bytes per pixel value
5620 * @format: pixel format (DRM_FORMAT_*)
5621 * @plane: plane index
5622 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005623 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005624 * The bytes per pixel value for the specified plane.
5625 */
5626int drm_format_plane_cpp(uint32_t format, int plane)
5627{
5628 unsigned int depth;
5629 int bpp;
5630
5631 if (plane >= drm_format_num_planes(format))
5632 return 0;
5633
5634 switch (format) {
5635 case DRM_FORMAT_YUYV:
5636 case DRM_FORMAT_YVYU:
5637 case DRM_FORMAT_UYVY:
5638 case DRM_FORMAT_VYUY:
5639 return 2;
5640 case DRM_FORMAT_NV12:
5641 case DRM_FORMAT_NV21:
5642 case DRM_FORMAT_NV16:
5643 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005644 case DRM_FORMAT_NV24:
5645 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005646 return plane ? 2 : 1;
5647 case DRM_FORMAT_YUV410:
5648 case DRM_FORMAT_YVU410:
5649 case DRM_FORMAT_YUV411:
5650 case DRM_FORMAT_YVU411:
5651 case DRM_FORMAT_YUV420:
5652 case DRM_FORMAT_YVU420:
5653 case DRM_FORMAT_YUV422:
5654 case DRM_FORMAT_YVU422:
5655 case DRM_FORMAT_YUV444:
5656 case DRM_FORMAT_YVU444:
5657 return 1;
5658 default:
5659 drm_fb_get_bpp_depth(format, &depth, &bpp);
5660 return bpp >> 3;
5661 }
5662}
5663EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005664
5665/**
5666 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5667 * @format: pixel format (DRM_FORMAT_*)
5668 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005669 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005670 * The horizontal chroma subsampling factor for the
5671 * specified pixel format.
5672 */
5673int drm_format_horz_chroma_subsampling(uint32_t format)
5674{
5675 switch (format) {
5676 case DRM_FORMAT_YUV411:
5677 case DRM_FORMAT_YVU411:
5678 case DRM_FORMAT_YUV410:
5679 case DRM_FORMAT_YVU410:
5680 return 4;
5681 case DRM_FORMAT_YUYV:
5682 case DRM_FORMAT_YVYU:
5683 case DRM_FORMAT_UYVY:
5684 case DRM_FORMAT_VYUY:
5685 case DRM_FORMAT_NV12:
5686 case DRM_FORMAT_NV21:
5687 case DRM_FORMAT_NV16:
5688 case DRM_FORMAT_NV61:
5689 case DRM_FORMAT_YUV422:
5690 case DRM_FORMAT_YVU422:
5691 case DRM_FORMAT_YUV420:
5692 case DRM_FORMAT_YVU420:
5693 return 2;
5694 default:
5695 return 1;
5696 }
5697}
5698EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5699
5700/**
5701 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5702 * @format: pixel format (DRM_FORMAT_*)
5703 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005704 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005705 * The vertical chroma subsampling factor for the
5706 * specified pixel format.
5707 */
5708int drm_format_vert_chroma_subsampling(uint32_t format)
5709{
5710 switch (format) {
5711 case DRM_FORMAT_YUV410:
5712 case DRM_FORMAT_YVU410:
5713 return 4;
5714 case DRM_FORMAT_YUV420:
5715 case DRM_FORMAT_YVU420:
5716 case DRM_FORMAT_NV12:
5717 case DRM_FORMAT_NV21:
5718 return 2;
5719 default:
5720 return 1;
5721 }
5722}
5723EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005724
5725/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305726 * drm_rotation_simplify() - Try to simplify the rotation
5727 * @rotation: Rotation to be simplified
5728 * @supported_rotations: Supported rotations
5729 *
5730 * Attempt to simplify the rotation to a form that is supported.
5731 * Eg. if the hardware supports everything except DRM_REFLECT_X
5732 * one could call this function like this:
5733 *
5734 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5735 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5736 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5737 *
5738 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5739 * transforms the hardware supports, this function may not
5740 * be able to produce a supported transform, so the caller should
5741 * check the result afterwards.
5742 */
5743unsigned int drm_rotation_simplify(unsigned int rotation,
5744 unsigned int supported_rotations)
5745{
5746 if (rotation & ~supported_rotations) {
5747 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5748 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5749 }
5750
5751 return rotation;
5752}
5753EXPORT_SYMBOL(drm_rotation_simplify);
5754
5755/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005756 * drm_mode_config_init - initialize DRM mode_configuration structure
5757 * @dev: DRM device
5758 *
5759 * Initialize @dev's mode_config structure, used for tracking the graphics
5760 * configuration of @dev.
5761 *
5762 * Since this initializes the modeset locks, no locking is possible. Which is no
5763 * problem, since this should happen single threaded at init time. It is the
5764 * driver's problem to ensure this guarantee.
5765 *
5766 */
5767void drm_mode_config_init(struct drm_device *dev)
5768{
5769 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005770 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005771 mutex_init(&dev->mode_config.idr_mutex);
5772 mutex_init(&dev->mode_config.fb_lock);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01005773 mutex_init(&dev->mode_config.blob_lock);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005774 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5775 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5776 INIT_LIST_HEAD(&dev->mode_config.connector_list);
5777 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5778 INIT_LIST_HEAD(&dev->mode_config.property_list);
5779 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5780 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5781 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005782 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005783
5784 drm_modeset_lock_all(dev);
Rob Clark6b4959f2014-12-18 16:01:53 -05005785 drm_mode_create_standard_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005786 drm_modeset_unlock_all(dev);
5787
5788 /* Just to be sure */
5789 dev->mode_config.num_fb = 0;
5790 dev->mode_config.num_connector = 0;
5791 dev->mode_config.num_crtc = 0;
5792 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005793 dev->mode_config.num_overlay_plane = 0;
5794 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005795}
5796EXPORT_SYMBOL(drm_mode_config_init);
5797
5798/**
5799 * drm_mode_config_cleanup - free up DRM mode_config info
5800 * @dev: DRM device
5801 *
5802 * Free up all the connectors and CRTCs associated with this DRM device, then
5803 * free up the framebuffers and associated buffer objects.
5804 *
5805 * Note that since this /should/ happen single-threaded at driver/device
5806 * teardown time, no locking is required. It's the driver's job to ensure that
5807 * this guarantee actually holds true.
5808 *
5809 * FIXME: cleanup any dangling user buffer objects too
5810 */
5811void drm_mode_config_cleanup(struct drm_device *dev)
5812{
5813 struct drm_connector *connector, *ot;
5814 struct drm_crtc *crtc, *ct;
5815 struct drm_encoder *encoder, *enct;
5816 struct drm_framebuffer *fb, *fbt;
5817 struct drm_property *property, *pt;
5818 struct drm_property_blob *blob, *bt;
5819 struct drm_plane *plane, *plt;
5820
5821 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5822 head) {
5823 encoder->funcs->destroy(encoder);
5824 }
5825
5826 list_for_each_entry_safe(connector, ot,
5827 &dev->mode_config.connector_list, head) {
5828 connector->funcs->destroy(connector);
5829 }
5830
5831 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5832 head) {
5833 drm_property_destroy(dev, property);
5834 }
5835
5836 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01005837 head_global) {
Daniel Stone6bcacf52015-04-20 19:22:55 +01005838 drm_property_unreference_blob(blob);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005839 }
5840
5841 /*
5842 * Single-threaded teardown context, so it's not required to grab the
5843 * fb_lock to protect against concurrent fb_list access. Contrary, it
5844 * would actually deadlock with the drm_framebuffer_cleanup function.
5845 *
5846 * Also, if there are any framebuffers left, that's a driver leak now,
5847 * so politely WARN about this.
5848 */
5849 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5850 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5851 drm_framebuffer_remove(fb);
5852 }
5853
5854 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5855 head) {
5856 plane->funcs->destroy(plane);
5857 }
5858
5859 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5860 crtc->funcs->destroy(crtc);
5861 }
5862
Dave Airlie138f9eb2014-10-20 16:17:17 +10005863 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005864 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005865 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005866}
5867EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305868
5869struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5870 unsigned int supported_rotations)
5871{
5872 static const struct drm_prop_enum_list props[] = {
5873 { DRM_ROTATE_0, "rotate-0" },
5874 { DRM_ROTATE_90, "rotate-90" },
5875 { DRM_ROTATE_180, "rotate-180" },
5876 { DRM_ROTATE_270, "rotate-270" },
5877 { DRM_REFLECT_X, "reflect-x" },
5878 { DRM_REFLECT_Y, "reflect-y" },
5879 };
5880
5881 return drm_property_create_bitmask(dev, 0, "rotation",
5882 props, ARRAY_SIZE(props),
5883 supported_rotations);
5884}
5885EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005886
5887/**
5888 * DOC: Tile group
5889 *
5890 * Tile groups are used to represent tiled monitors with a unique
5891 * integer identifier. Tiled monitors using DisplayID v1.3 have
5892 * a unique 8-byte handle, we store this in a tile group, so we
5893 * have a common identifier for all tiles in a monitor group.
5894 */
5895static void drm_tile_group_free(struct kref *kref)
5896{
5897 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5898 struct drm_device *dev = tg->dev;
5899 mutex_lock(&dev->mode_config.idr_mutex);
5900 idr_remove(&dev->mode_config.tile_idr, tg->id);
5901 mutex_unlock(&dev->mode_config.idr_mutex);
5902 kfree(tg);
5903}
5904
5905/**
5906 * drm_mode_put_tile_group - drop a reference to a tile group.
5907 * @dev: DRM device
5908 * @tg: tile group to drop reference to.
5909 *
5910 * drop reference to tile group and free if 0.
5911 */
5912void drm_mode_put_tile_group(struct drm_device *dev,
5913 struct drm_tile_group *tg)
5914{
5915 kref_put(&tg->refcount, drm_tile_group_free);
5916}
5917
5918/**
5919 * drm_mode_get_tile_group - get a reference to an existing tile group
5920 * @dev: DRM device
5921 * @topology: 8-bytes unique per monitor.
5922 *
5923 * Use the unique bytes to get a reference to an existing tile group.
5924 *
5925 * RETURNS:
5926 * tile group or NULL if not found.
5927 */
5928struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5929 char topology[8])
5930{
5931 struct drm_tile_group *tg;
5932 int id;
5933 mutex_lock(&dev->mode_config.idr_mutex);
5934 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5935 if (!memcmp(tg->group_data, topology, 8)) {
5936 if (!kref_get_unless_zero(&tg->refcount))
5937 tg = NULL;
5938 mutex_unlock(&dev->mode_config.idr_mutex);
5939 return tg;
5940 }
5941 }
5942 mutex_unlock(&dev->mode_config.idr_mutex);
5943 return NULL;
5944}
Rob Clark81ddd1b2015-03-27 13:01:52 -04005945EXPORT_SYMBOL(drm_mode_get_tile_group);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005946
5947/**
5948 * drm_mode_create_tile_group - create a tile group from a displayid description
5949 * @dev: DRM device
5950 * @topology: 8-bytes unique per monitor.
5951 *
5952 * Create a tile group for the unique monitor, and get a unique
5953 * identifier for the tile group.
5954 *
5955 * RETURNS:
5956 * new tile group or error.
5957 */
5958struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5959 char topology[8])
5960{
5961 struct drm_tile_group *tg;
5962 int ret;
5963
5964 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5965 if (!tg)
5966 return ERR_PTR(-ENOMEM);
5967
5968 kref_init(&tg->refcount);
5969 memcpy(tg->group_data, topology, 8);
5970 tg->dev = dev;
5971
5972 mutex_lock(&dev->mode_config.idr_mutex);
5973 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5974 if (ret >= 0) {
5975 tg->id = ret;
5976 } else {
5977 kfree(tg);
5978 tg = ERR_PTR(ret);
5979 }
5980
5981 mutex_unlock(&dev->mode_config.idr_mutex);
5982 return tg;
5983}
Rob Clark81ddd1b2015-03-27 13:01:52 -04005984EXPORT_SYMBOL(drm_mode_create_tile_group);