blob: e600a5fb2b60f65b1de6a72168f16baaf83c63fb [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 Vettera39a3572015-08-25 15:45:11 +0200541 struct drm_device *dev;
542
543 if (!fb)
544 return;
545
546 dev = fb->dev;
Daniel Vetter2b677e82012-12-10 21:16:05 +0100547
548 mutex_lock(&dev->mode_config.fb_lock);
549 /* Mark fb as reaped and drop idr ref. */
550 __drm_framebuffer_unregister(dev, fb);
551 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100552}
553EXPORT_SYMBOL(drm_framebuffer_unregister_private);
554
555/**
Dave Airlief453ba02008-11-07 14:05:41 -0800556 * drm_framebuffer_cleanup - remove a framebuffer object
557 * @fb: framebuffer to remove
558 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100559 * Cleanup framebuffer. This function is intended to be used from the drivers
560 * ->destroy callback. It can also be used to clean up driver private
561 * framebuffers embedded into a larger structure.
Daniel Vetter36206362012-12-10 20:42:17 +0100562 *
563 * Note that this function does not remove the fb from active usuage - if it is
564 * still used anywhere, hilarity can ensue since userspace could call getfb on
565 * the id and get back -EINVAL. Obviously no concern at driver unload time.
566 *
567 * Also, the framebuffer will not be removed from the lookup idr - for
568 * user-created framebuffers this will happen in in the rmfb ioctl. For
569 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
570 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800571 */
572void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
573{
574 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100575
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100576 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000577 list_del(&fb->head);
578 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100579 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000580}
581EXPORT_SYMBOL(drm_framebuffer_cleanup);
582
583/**
584 * drm_framebuffer_remove - remove and unreference a framebuffer object
585 * @fb: framebuffer to remove
586 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000587 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100588 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100589 * passed-in framebuffer. Might take the modeset locks.
590 *
591 * Note that this function optimizes the cleanup away if the caller holds the
592 * last reference to the framebuffer. It is also guaranteed to not take the
593 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000594 */
595void drm_framebuffer_remove(struct drm_framebuffer *fb)
596{
Daniel Vettera39a3572015-08-25 15:45:11 +0200597 struct drm_device *dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800598 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800599 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000600 struct drm_mode_set set;
601 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800602
Daniel Vettera39a3572015-08-25 15:45:11 +0200603 if (!fb)
604 return;
605
606 dev = fb->dev;
607
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100608 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100609
Daniel Vetterb62584e2012-12-11 16:51:35 +0100610 /*
611 * drm ABI mandates that we remove any deleted framebuffers from active
612 * useage. But since most sane clients only remove framebuffers they no
613 * longer need, try to optimize this away.
614 *
615 * Since we're holding a reference ourselves, observing a refcount of 1
616 * means that we're the last holder and can skip it. Also, the refcount
617 * can never increase from 1 again, so we don't need any barriers or
618 * locks.
619 *
620 * Note that userspace could try to race with use and instate a new
621 * usage _after_ we've cleared all current ones. End result will be an
622 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
623 * in this manner.
624 */
625 if (atomic_read(&fb->refcount.refcount) > 1) {
626 drm_modeset_lock_all(dev);
627 /* remove from any CRTC */
Daniel Vetter6295d602015-07-09 23:44:25 +0200628 drm_for_each_crtc(crtc, dev) {
Matt Roperf4510a22014-04-01 15:22:40 -0700629 if (crtc->primary->fb == fb) {
Daniel Vetterb62584e2012-12-11 16:51:35 +0100630 /* should turn off the crtc */
631 memset(&set, 0, sizeof(struct drm_mode_set));
632 set.crtc = crtc;
633 set.fb = NULL;
634 ret = drm_mode_set_config_internal(&set);
635 if (ret)
636 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
637 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000638 }
Dave Airlief453ba02008-11-07 14:05:41 -0800639
Daniel Vetter6295d602015-07-09 23:44:25 +0200640 drm_for_each_plane(plane, dev) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300641 if (plane->fb == fb)
642 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800643 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100644 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800645 }
646
Rob Clarkf7eff602012-09-05 21:48:38 +0000647 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800648}
Rob Clarkf7eff602012-09-05 21:48:38 +0000649EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800650
Rob Clark51fd3712013-11-19 12:10:12 -0500651DEFINE_WW_CLASS(crtc_ww_class);
652
Dave Airlief453ba02008-11-07 14:05:41 -0800653/**
Matt Ropere13161a2014-04-01 15:22:38 -0700654 * drm_crtc_init_with_planes - Initialise a new CRTC object with
655 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800656 * @dev: DRM device
657 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700658 * @primary: Primary plane for CRTC
659 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800660 * @funcs: callbacks for the new CRTC
661 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000662 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200663 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100664 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200665 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800666 */
Matt Ropere13161a2014-04-01 15:22:38 -0700667int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
668 struct drm_plane *primary,
Matt Roperfc1d3e42014-06-10 08:28:11 -0700669 struct drm_plane *cursor,
Matt Ropere13161a2014-04-01 15:22:38 -0700670 const struct drm_crtc_funcs *funcs)
Dave Airlief453ba02008-11-07 14:05:41 -0800671{
Rob Clark51fd3712013-11-19 12:10:12 -0500672 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200673 int ret;
674
Benjamin Gaignard522cf912015-03-17 12:05:29 +0100675 WARN_ON(primary && primary->type != DRM_PLANE_TYPE_PRIMARY);
676 WARN_ON(cursor && cursor->type != DRM_PLANE_TYPE_CURSOR);
677
Dave Airlief453ba02008-11-07 14:05:41 -0800678 crtc->dev = dev;
679 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000680 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800681
Rob Clark51fd3712013-11-19 12:10:12 -0500682 drm_modeset_lock_init(&crtc->mutex);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200683 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
684 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100685 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800686
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300687 crtc->base.properties = &crtc->properties;
688
Rob Clark51fd3712013-11-19 12:10:12 -0500689 list_add_tail(&crtc->head, &config->crtc_list);
690 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200691
Matt Ropere13161a2014-04-01 15:22:38 -0700692 crtc->primary = primary;
Matt Roperfc1d3e42014-06-10 08:28:11 -0700693 crtc->cursor = cursor;
Matt Ropere13161a2014-04-01 15:22:38 -0700694 if (primary)
695 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Roperfc1d3e42014-06-10 08:28:11 -0700696 if (cursor)
697 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
Matt Ropere13161a2014-04-01 15:22:38 -0700698
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100699 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
700 drm_object_attach_property(&crtc->base, config->prop_active, 0);
Daniel Stone955f3c32015-05-25 19:11:52 +0100701 drm_object_attach_property(&crtc->base, config->prop_mode_id, 0);
Daniel Vettereab3bbe2015-01-22 16:36:21 +0100702 }
703
Daniel Vetterbaf698b2014-11-12 11:59:47 +0100704 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800705}
Matt Ropere13161a2014-04-01 15:22:38 -0700706EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800707
708/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000709 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800710 * @crtc: CRTC to cleanup
711 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000712 * This function cleans up @crtc and removes it from the DRM mode setting
713 * core. Note that the function does *not* free the crtc structure itself,
714 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800715 */
716void drm_crtc_cleanup(struct drm_crtc *crtc)
717{
718 struct drm_device *dev = crtc->dev;
719
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000720 kfree(crtc->gamma_store);
721 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800722
Rob Clark51fd3712013-11-19 12:10:12 -0500723 drm_modeset_lock_fini(&crtc->mutex);
724
Dave Airlief453ba02008-11-07 14:05:41 -0800725 drm_mode_object_put(dev, &crtc->base);
726 list_del(&crtc->head);
727 dev->mode_config.num_crtc--;
Thierry Reding3009c032014-11-25 12:09:49 +0100728
729 WARN_ON(crtc->state && !crtc->funcs->atomic_destroy_state);
730 if (crtc->state && crtc->funcs->atomic_destroy_state)
731 crtc->funcs->atomic_destroy_state(crtc, crtc->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100732
733 memset(crtc, 0, sizeof(*crtc));
Dave Airlief453ba02008-11-07 14:05:41 -0800734}
735EXPORT_SYMBOL(drm_crtc_cleanup);
736
737/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000738 * drm_crtc_index - find the index of a registered CRTC
739 * @crtc: CRTC to find index for
740 *
741 * Given a registered CRTC, return the index of that CRTC within a DRM
742 * device's list of CRTCs.
743 */
744unsigned int drm_crtc_index(struct drm_crtc *crtc)
745{
746 unsigned int index = 0;
747 struct drm_crtc *tmp;
748
Daniel Vettere4f62542015-07-09 23:44:35 +0200749 drm_for_each_crtc(tmp, crtc->dev) {
Russell Kingdb5f7a62014-01-02 21:27:33 +0000750 if (tmp == crtc)
751 return index;
752
753 index++;
754 }
755
756 BUG();
757}
758EXPORT_SYMBOL(drm_crtc_index);
759
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100760/*
Dave Airlief453ba02008-11-07 14:05:41 -0800761 * drm_mode_remove - remove and free a mode
762 * @connector: connector list to modify
763 * @mode: mode to remove
764 *
Dave Airlief453ba02008-11-07 14:05:41 -0800765 * Remove @mode from @connector's mode list, then free it.
766 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100767static void drm_mode_remove(struct drm_connector *connector,
768 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800769{
770 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100771 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800772}
Dave Airlief453ba02008-11-07 14:05:41 -0800773
774/**
Boris Brezillonb5571e92014-07-22 12:09:10 +0200775 * drm_display_info_set_bus_formats - set the supported bus formats
776 * @info: display info to store bus formats in
Boris Brezillone37bfa12015-01-23 21:09:30 +0100777 * @formats: array containing the supported bus formats
778 * @num_formats: the number of entries in the fmts array
Boris Brezillonb5571e92014-07-22 12:09:10 +0200779 *
780 * Store the supported bus formats in display info structure.
781 * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for
782 * a full list of available formats.
783 */
784int drm_display_info_set_bus_formats(struct drm_display_info *info,
785 const u32 *formats,
786 unsigned int num_formats)
787{
788 u32 *fmts = NULL;
789
790 if (!formats && num_formats)
791 return -EINVAL;
792
793 if (formats && num_formats) {
794 fmts = kmemdup(formats, sizeof(*formats) * num_formats,
795 GFP_KERNEL);
Dan Carpenter944579c2015-01-28 09:43:35 +0300796 if (!fmts)
Boris Brezillonb5571e92014-07-22 12:09:10 +0200797 return -ENOMEM;
798 }
799
800 kfree(info->bus_formats);
801 info->bus_formats = fmts;
802 info->num_bus_formats = num_formats;
803
804 return 0;
805}
806EXPORT_SYMBOL(drm_display_info_set_bus_formats);
807
808/**
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200809 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
810 * @connector: connector to quwery
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200811 *
812 * The kernel supports per-connector configration of its consoles through
813 * use of the video= parameter. This function parses that option and
814 * extracts the user's specified mode (or enable/disable status) for a
815 * particular connector. This is typically only used during the early fbdev
816 * setup.
817 */
818static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
819{
820 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
821 char *option = NULL;
822
823 if (fb_get_options(connector->name, &option))
824 return;
825
826 if (!drm_mode_parse_command_line_for_connector(option,
827 connector,
828 mode))
829 return;
830
831 if (mode->force) {
832 const char *s;
833
834 switch (mode->force) {
835 case DRM_FORCE_OFF:
836 s = "OFF";
837 break;
838 case DRM_FORCE_ON_DIGITAL:
839 s = "ON - dig";
840 break;
841 default:
842 case DRM_FORCE_ON:
843 s = "ON";
844 break;
845 }
846
847 DRM_INFO("forcing %s connector %s\n", connector->name, s);
848 connector->force = mode->force;
849 }
850
851 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
852 connector->name,
853 mode->xres, mode->yres,
854 mode->refresh_specified ? mode->refresh : 60,
855 mode->rb ? " reduced blanking" : "",
856 mode->margins ? " with margins" : "",
857 mode->interlace ? " interlaced" : "");
858}
859
860/**
Dave Airlief453ba02008-11-07 14:05:41 -0800861 * drm_connector_init - Init a preallocated connector
862 * @dev: DRM device
863 * @connector: the connector to init
864 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100865 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800866 *
Dave Airlief453ba02008-11-07 14:05:41 -0800867 * Initialises a preallocated connector. Connectors should be
868 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200869 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100870 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200871 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800872 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200873int drm_connector_init(struct drm_device *dev,
874 struct drm_connector *connector,
875 const struct drm_connector_funcs *funcs,
876 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800877{
Rob Clarkae16c592014-12-18 16:01:54 -0500878 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200879 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400880 struct ida *connector_ida =
881 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200882
Daniel Vetter84849902012-12-02 00:28:11 +0100883 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800884
Dave Airlie2ee39452014-07-24 11:53:45 +1000885 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200886 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300887 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200888
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300889 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800890 connector->dev = dev;
891 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800892 connector->connector_type = connector_type;
893 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400894 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
895 if (connector->connector_type_id < 0) {
896 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300897 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400898 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300899 connector->name =
900 kasprintf(GFP_KERNEL, "%s-%d",
901 drm_connector_enum_list[connector_type].name,
902 connector->connector_type_id);
903 if (!connector->name) {
904 ret = -ENOMEM;
905 goto out_put;
906 }
907
Dave Airlief453ba02008-11-07 14:05:41 -0800908 INIT_LIST_HEAD(&connector->probed_modes);
909 INIT_LIST_HEAD(&connector->modes);
910 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000911 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800912
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200913 drm_connector_get_cmdline_mode(connector);
914
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100915 /* We should add connectors at the end to avoid upsetting the connector
916 * index too much. */
Rob Clarkae16c592014-12-18 16:01:54 -0500917 list_add_tail(&connector->head, &config->connector_list);
918 config->num_connector++;
Dave Airlief453ba02008-11-07 14:05:41 -0800919
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200920 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500921 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500922 config->edid_property,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200923 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800924
Rob Clark58495562012-10-11 20:50:56 -0500925 drm_object_attach_property(&connector->base,
Rob Clarkae16c592014-12-18 16:01:54 -0500926 config->dpms_property, 0);
927
928 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
929 drm_object_attach_property(&connector->base, config->prop_crtc_id, 0);
930 }
Dave Airlief453ba02008-11-07 14:05:41 -0800931
Thomas Wood30f65702014-06-18 17:52:32 +0100932 connector->debugfs_entry = NULL;
933
Jani Nikula2abdd312014-05-14 16:58:19 +0300934out_put:
935 if (ret)
936 drm_mode_object_put(dev, &connector->base);
937
938out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100939 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200940
941 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800942}
943EXPORT_SYMBOL(drm_connector_init);
944
945/**
946 * drm_connector_cleanup - cleans up an initialised connector
947 * @connector: connector to cleanup
948 *
Dave Airlief453ba02008-11-07 14:05:41 -0800949 * Cleans up the connector but doesn't free the object.
950 */
951void drm_connector_cleanup(struct drm_connector *connector)
952{
953 struct drm_device *dev = connector->dev;
954 struct drm_display_mode *mode, *t;
955
Dave Airlie40d9b042014-10-20 16:29:33 +1000956 if (connector->tile_group) {
957 drm_mode_put_tile_group(dev, connector->tile_group);
958 connector->tile_group = NULL;
959 }
960
Dave Airlief453ba02008-11-07 14:05:41 -0800961 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
962 drm_mode_remove(connector, mode);
963
964 list_for_each_entry_safe(mode, t, &connector->modes, head)
965 drm_mode_remove(connector, mode);
966
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400967 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
968 connector->connector_type_id);
969
Boris Brezillonb5571e92014-07-22 12:09:10 +0200970 kfree(connector->display_info.bus_formats);
Dave Airlief453ba02008-11-07 14:05:41 -0800971 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300972 kfree(connector->name);
973 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800974 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000975 dev->mode_config.num_connector--;
Thierry Reding3009c032014-11-25 12:09:49 +0100976
977 WARN_ON(connector->state && !connector->funcs->atomic_destroy_state);
978 if (connector->state && connector->funcs->atomic_destroy_state)
979 connector->funcs->atomic_destroy_state(connector,
980 connector->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +0100981
982 memset(connector, 0, sizeof(*connector));
Dave Airlief453ba02008-11-07 14:05:41 -0800983}
984EXPORT_SYMBOL(drm_connector_cleanup);
985
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100986/**
Daniel Vetter10f637b2014-07-29 13:47:11 +0200987 * drm_connector_index - find the index of a registered connector
988 * @connector: connector to find index for
989 *
990 * Given a registered connector, return the index of that connector within a DRM
991 * device's list of connectors.
992 */
993unsigned int drm_connector_index(struct drm_connector *connector)
994{
995 unsigned int index = 0;
996 struct drm_connector *tmp;
Daniel Vetterc7eb76f2014-11-19 18:38:06 +0100997 struct drm_mode_config *config = &connector->dev->mode_config;
998
999 WARN_ON(!drm_modeset_is_locked(&config->connection_mutex));
Daniel Vetter10f637b2014-07-29 13:47:11 +02001000
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02001001 drm_for_each_connector(tmp, connector->dev) {
Daniel Vetter10f637b2014-07-29 13:47:11 +02001002 if (tmp == connector)
1003 return index;
1004
1005 index++;
1006 }
1007
1008 BUG();
1009}
1010EXPORT_SYMBOL(drm_connector_index);
1011
1012/**
Thomas Wood34ea3d32014-05-29 16:57:41 +01001013 * drm_connector_register - register a connector
1014 * @connector: the connector to register
1015 *
1016 * Register userspace interfaces for a connector
1017 *
1018 * Returns:
1019 * Zero on success, error code on failure.
1020 */
1021int drm_connector_register(struct drm_connector *connector)
1022{
Thomas Wood30f65702014-06-18 17:52:32 +01001023 int ret;
1024
Dave Airlie2ee39452014-07-24 11:53:45 +10001025 drm_mode_object_register(connector->dev, &connector->base);
1026
Thomas Wood30f65702014-06-18 17:52:32 +01001027 ret = drm_sysfs_connector_add(connector);
1028 if (ret)
1029 return ret;
1030
1031 ret = drm_debugfs_connector_add(connector);
1032 if (ret) {
1033 drm_sysfs_connector_remove(connector);
1034 return ret;
1035 }
1036
1037 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +01001038}
1039EXPORT_SYMBOL(drm_connector_register);
1040
1041/**
1042 * drm_connector_unregister - unregister a connector
1043 * @connector: the connector to unregister
1044 *
1045 * Unregister userspace interfaces for a connector
1046 */
1047void drm_connector_unregister(struct drm_connector *connector)
1048{
1049 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +01001050 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001051}
1052EXPORT_SYMBOL(drm_connector_unregister);
1053
1054
1055/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001056 * drm_connector_unplug_all - unregister connector userspace interfaces
1057 * @dev: drm device
1058 *
1059 * This function unregisters all connector userspace interfaces in sysfs. Should
1060 * be call when the device is disconnected, e.g. from an usb driver's
1061 * ->disconnect callback.
1062 */
Dave Airliecbc7e222012-02-20 14:16:40 +00001063void drm_connector_unplug_all(struct drm_device *dev)
1064{
1065 struct drm_connector *connector;
1066
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +02001067 /* FIXME: taking the mode config mutex ends up in a clash with sysfs */
Dave Airliecbc7e222012-02-20 14:16:40 +00001068 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +01001069 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +00001070
1071}
1072EXPORT_SYMBOL(drm_connector_unplug_all);
1073
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001074/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001075 * drm_encoder_init - Init a preallocated encoder
1076 * @dev: drm device
1077 * @encoder: the encoder to init
1078 * @funcs: callbacks for this encoder
1079 * @encoder_type: user visible type of the encoder
1080 *
1081 * Initialises a preallocated encoder. Encoder should be
1082 * subclassed as part of driver encoder objects.
1083 *
1084 * Returns:
1085 * Zero on success, error code on failure.
1086 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001087int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001088 struct drm_encoder *encoder,
1089 const struct drm_encoder_funcs *funcs,
1090 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001091{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001092 int ret;
1093
Daniel Vetter84849902012-12-02 00:28:11 +01001094 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001095
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001096 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1097 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001098 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001099
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001100 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001101 encoder->encoder_type = encoder_type;
1102 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001103 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1104 drm_encoder_enum_list[encoder_type].name,
1105 encoder->base.id);
1106 if (!encoder->name) {
1107 ret = -ENOMEM;
1108 goto out_put;
1109 }
Dave Airlief453ba02008-11-07 14:05:41 -08001110
1111 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1112 dev->mode_config.num_encoder++;
1113
Jani Nikulae5748942014-05-14 16:58:20 +03001114out_put:
1115 if (ret)
1116 drm_mode_object_put(dev, &encoder->base);
1117
1118out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001119 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001120
1121 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001122}
1123EXPORT_SYMBOL(drm_encoder_init);
1124
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001125/**
1126 * drm_encoder_cleanup - cleans up an initialised encoder
1127 * @encoder: encoder to cleanup
1128 *
1129 * Cleans up the encoder but doesn't free the object.
1130 */
Dave Airlief453ba02008-11-07 14:05:41 -08001131void drm_encoder_cleanup(struct drm_encoder *encoder)
1132{
1133 struct drm_device *dev = encoder->dev;
Thierry Reding4dfd9092014-12-10 13:03:34 +01001134
Daniel Vetter84849902012-12-02 00:28:11 +01001135 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001136 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001137 kfree(encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001138 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001139 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001140 drm_modeset_unlock_all(dev);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001141
1142 memset(encoder, 0, sizeof(*encoder));
Dave Airlief453ba02008-11-07 14:05:41 -08001143}
1144EXPORT_SYMBOL(drm_encoder_cleanup);
1145
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001146/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001147 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001148 * @dev: DRM device
1149 * @plane: plane object to init
1150 * @possible_crtcs: bitmask of possible CRTCs
1151 * @funcs: callbacks for the new plane
1152 * @formats: array of supported formats (%DRM_FORMAT_*)
1153 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001154 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001155 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001156 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001157 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001158 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001159 * Zero on success, error code on failure.
1160 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001161int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1162 unsigned long possible_crtcs,
1163 const struct drm_plane_funcs *funcs,
Thierry Reding45e37432015-08-12 16:54:28 +02001164 const uint32_t *formats, unsigned int format_count,
Matt Roperdc415ff2014-04-01 15:22:36 -07001165 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001166{
Rob Clark6b4959f2014-12-18 16:01:53 -05001167 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001168 int ret;
1169
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001170 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1171 if (ret)
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001172 return ret;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001173
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01001174 drm_modeset_lock_init(&plane->mutex);
1175
Rob Clark4d939142012-05-17 02:23:27 -06001176 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001177 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001178 plane->funcs = funcs;
Thierry Reding2f6c5382014-12-10 13:03:36 +01001179 plane->format_types = kmalloc_array(format_count, sizeof(uint32_t),
1180 GFP_KERNEL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001181 if (!plane->format_types) {
1182 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1183 drm_mode_object_put(dev, &plane->base);
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001184 return -ENOMEM;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001185 }
1186
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001187 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001188 plane->format_count = format_count;
1189 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001190 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001191
Rob Clark6b4959f2014-12-18 16:01:53 -05001192 list_add_tail(&plane->head, &config->plane_list);
1193 config->num_total_plane++;
Matt Roperdc415ff2014-04-01 15:22:36 -07001194 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Rob Clark6b4959f2014-12-18 16:01:53 -05001195 config->num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001196
Rob Clark9922ab52014-04-01 20:16:57 -04001197 drm_object_attach_property(&plane->base,
Rob Clark6b4959f2014-12-18 16:01:53 -05001198 config->plane_type_property,
Rob Clark9922ab52014-04-01 20:16:57 -04001199 plane->type);
1200
Rob Clark6b4959f2014-12-18 16:01:53 -05001201 if (drm_core_check_feature(dev, DRIVER_ATOMIC)) {
1202 drm_object_attach_property(&plane->base, config->prop_fb_id, 0);
1203 drm_object_attach_property(&plane->base, config->prop_crtc_id, 0);
1204 drm_object_attach_property(&plane->base, config->prop_crtc_x, 0);
1205 drm_object_attach_property(&plane->base, config->prop_crtc_y, 0);
1206 drm_object_attach_property(&plane->base, config->prop_crtc_w, 0);
1207 drm_object_attach_property(&plane->base, config->prop_crtc_h, 0);
1208 drm_object_attach_property(&plane->base, config->prop_src_x, 0);
1209 drm_object_attach_property(&plane->base, config->prop_src_y, 0);
1210 drm_object_attach_property(&plane->base, config->prop_src_w, 0);
1211 drm_object_attach_property(&plane->base, config->prop_src_h, 0);
1212 }
1213
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001214 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001215}
Matt Roperdc415ff2014-04-01 15:22:36 -07001216EXPORT_SYMBOL(drm_universal_plane_init);
1217
1218/**
1219 * drm_plane_init - Initialize a legacy plane
1220 * @dev: DRM device
1221 * @plane: plane object to init
1222 * @possible_crtcs: bitmask of possible CRTCs
1223 * @funcs: callbacks for the new plane
1224 * @formats: array of supported formats (%DRM_FORMAT_*)
1225 * @format_count: number of elements in @formats
1226 * @is_primary: plane type (primary vs overlay)
1227 *
1228 * Legacy API to initialize a DRM plane.
1229 *
1230 * New drivers should call drm_universal_plane_init() instead.
1231 *
1232 * Returns:
1233 * Zero on success, error code on failure.
1234 */
1235int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1236 unsigned long possible_crtcs,
1237 const struct drm_plane_funcs *funcs,
Thierry Reding45e37432015-08-12 16:54:28 +02001238 const uint32_t *formats, unsigned int format_count,
Matt Roperdc415ff2014-04-01 15:22:36 -07001239 bool is_primary)
1240{
1241 enum drm_plane_type type;
1242
1243 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1244 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1245 formats, format_count, type);
1246}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001247EXPORT_SYMBOL(drm_plane_init);
1248
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001249/**
1250 * drm_plane_cleanup - Clean up the core plane usage
1251 * @plane: plane to cleanup
1252 *
1253 * This function cleans up @plane and removes it from the DRM mode setting
1254 * core. Note that the function does *not* free the plane structure itself,
1255 * this is the responsibility of the caller.
1256 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001257void drm_plane_cleanup(struct drm_plane *plane)
1258{
1259 struct drm_device *dev = plane->dev;
1260
Daniel Vetter84849902012-12-02 00:28:11 +01001261 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001262 kfree(plane->format_types);
1263 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001264
1265 BUG_ON(list_empty(&plane->head));
1266
1267 list_del(&plane->head);
1268 dev->mode_config.num_total_plane--;
1269 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1270 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001271 drm_modeset_unlock_all(dev);
Thierry Reding3009c032014-11-25 12:09:49 +01001272
1273 WARN_ON(plane->state && !plane->funcs->atomic_destroy_state);
1274 if (plane->state && plane->funcs->atomic_destroy_state)
1275 plane->funcs->atomic_destroy_state(plane, plane->state);
Thierry Redinga18c0af2014-12-10 11:38:49 +01001276
1277 memset(plane, 0, sizeof(*plane));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001278}
1279EXPORT_SYMBOL(drm_plane_cleanup);
1280
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001281/**
Daniel Vetter10f637b2014-07-29 13:47:11 +02001282 * drm_plane_index - find the index of a registered plane
1283 * @plane: plane to find index for
1284 *
1285 * Given a registered plane, return the index of that CRTC within a DRM
1286 * device's list of planes.
1287 */
1288unsigned int drm_plane_index(struct drm_plane *plane)
1289{
1290 unsigned int index = 0;
1291 struct drm_plane *tmp;
1292
Daniel Vettere4f62542015-07-09 23:44:35 +02001293 drm_for_each_plane(tmp, plane->dev) {
Daniel Vetter10f637b2014-07-29 13:47:11 +02001294 if (tmp == plane)
1295 return index;
1296
1297 index++;
1298 }
1299
1300 BUG();
1301}
1302EXPORT_SYMBOL(drm_plane_index);
1303
1304/**
Chandra Konduruf81338a2015-04-09 17:36:21 -07001305 * drm_plane_from_index - find the registered plane at an index
1306 * @dev: DRM device
1307 * @idx: index of registered plane to find for
1308 *
1309 * Given a plane index, return the registered plane from DRM device's
1310 * list of planes with matching index.
1311 */
1312struct drm_plane *
1313drm_plane_from_index(struct drm_device *dev, int idx)
1314{
1315 struct drm_plane *plane;
1316 unsigned int i = 0;
1317
Daniel Vetter6295d602015-07-09 23:44:25 +02001318 drm_for_each_plane(plane, dev) {
Chandra Konduruf81338a2015-04-09 17:36:21 -07001319 if (i == idx)
1320 return plane;
1321 i++;
1322 }
1323 return NULL;
1324}
1325EXPORT_SYMBOL(drm_plane_from_index);
1326
1327/**
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001328 * drm_plane_force_disable - Forcibly disable a plane
1329 * @plane: plane to disable
1330 *
1331 * Forces the plane to be disabled.
1332 *
1333 * Used when the plane's current framebuffer is destroyed,
1334 * and when restoring fbdev mode.
1335 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001336void drm_plane_force_disable(struct drm_plane *plane)
1337{
1338 int ret;
1339
Daniel Vetter3d30a592014-07-27 13:42:42 +02001340 if (!plane->fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001341 return;
1342
Daniel Vetter3d30a592014-07-27 13:42:42 +02001343 plane->old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001344 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001345 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001346 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter3d30a592014-07-27 13:42:42 +02001347 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02001348 return;
1349 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001350 /* disconnect the plane from the fb and crtc: */
Daniel Vetter220dd2b2015-02-27 12:58:13 +01001351 drm_framebuffer_unreference(plane->old_fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02001352 plane->old_fb = NULL;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001353 plane->fb = NULL;
1354 plane->crtc = NULL;
1355}
1356EXPORT_SYMBOL(drm_plane_force_disable);
1357
Rob Clark6b4959f2014-12-18 16:01:53 -05001358static int drm_mode_create_standard_properties(struct drm_device *dev)
Dave Airlief453ba02008-11-07 14:05:41 -08001359{
Rob Clark356af0e2014-12-18 16:01:52 -05001360 struct drm_property *prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001361
1362 /*
1363 * Standard properties (apply to all connectors)
1364 */
Rob Clark356af0e2014-12-18 16:01:52 -05001365 prop = drm_property_create(dev, DRM_MODE_PROP_BLOB |
Dave Airlief453ba02008-11-07 14:05:41 -08001366 DRM_MODE_PROP_IMMUTABLE,
1367 "EDID", 0);
Rob Clark356af0e2014-12-18 16:01:52 -05001368 if (!prop)
1369 return -ENOMEM;
1370 dev->mode_config.edid_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001371
Rob Clark356af0e2014-12-18 16:01:52 -05001372 prop = drm_property_create_enum(dev, 0,
Sascha Hauer4a67d392012-02-06 10:58:17 +01001373 "DPMS", drm_dpms_enum_list,
1374 ARRAY_SIZE(drm_dpms_enum_list));
Rob Clark356af0e2014-12-18 16:01:52 -05001375 if (!prop)
1376 return -ENOMEM;
1377 dev->mode_config.dpms_property = prop;
Dave Airlief453ba02008-11-07 14:05:41 -08001378
Rob Clark356af0e2014-12-18 16:01:52 -05001379 prop = drm_property_create(dev,
1380 DRM_MODE_PROP_BLOB |
1381 DRM_MODE_PROP_IMMUTABLE,
1382 "PATH", 0);
1383 if (!prop)
1384 return -ENOMEM;
1385 dev->mode_config.path_property = prop;
Dave Airlie43aba7e2014-06-05 14:01:31 +10001386
Rob Clark356af0e2014-12-18 16:01:52 -05001387 prop = drm_property_create(dev,
1388 DRM_MODE_PROP_BLOB |
1389 DRM_MODE_PROP_IMMUTABLE,
1390 "TILE", 0);
1391 if (!prop)
1392 return -ENOMEM;
1393 dev->mode_config.tile_property = prop;
Dave Airlie6f134d72014-10-20 16:30:50 +10001394
Rob Clark6b4959f2014-12-18 16:01:53 -05001395 prop = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Rob Clark9922ab52014-04-01 20:16:57 -04001396 "type", drm_plane_type_enum_list,
1397 ARRAY_SIZE(drm_plane_type_enum_list));
Rob Clark6b4959f2014-12-18 16:01:53 -05001398 if (!prop)
1399 return -ENOMEM;
1400 dev->mode_config.plane_type_property = prop;
1401
1402 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1403 "SRC_X", 0, UINT_MAX);
1404 if (!prop)
1405 return -ENOMEM;
1406 dev->mode_config.prop_src_x = prop;
1407
1408 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1409 "SRC_Y", 0, UINT_MAX);
1410 if (!prop)
1411 return -ENOMEM;
1412 dev->mode_config.prop_src_y = prop;
1413
1414 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1415 "SRC_W", 0, UINT_MAX);
1416 if (!prop)
1417 return -ENOMEM;
1418 dev->mode_config.prop_src_w = prop;
1419
1420 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1421 "SRC_H", 0, UINT_MAX);
1422 if (!prop)
1423 return -ENOMEM;
1424 dev->mode_config.prop_src_h = prop;
1425
1426 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1427 "CRTC_X", INT_MIN, INT_MAX);
1428 if (!prop)
1429 return -ENOMEM;
1430 dev->mode_config.prop_crtc_x = prop;
1431
1432 prop = drm_property_create_signed_range(dev, DRM_MODE_PROP_ATOMIC,
1433 "CRTC_Y", INT_MIN, INT_MAX);
1434 if (!prop)
1435 return -ENOMEM;
1436 dev->mode_config.prop_crtc_y = prop;
1437
1438 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1439 "CRTC_W", 0, INT_MAX);
1440 if (!prop)
1441 return -ENOMEM;
1442 dev->mode_config.prop_crtc_w = prop;
1443
1444 prop = drm_property_create_range(dev, DRM_MODE_PROP_ATOMIC,
1445 "CRTC_H", 0, INT_MAX);
1446 if (!prop)
1447 return -ENOMEM;
1448 dev->mode_config.prop_crtc_h = prop;
1449
1450 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1451 "FB_ID", DRM_MODE_OBJECT_FB);
1452 if (!prop)
1453 return -ENOMEM;
1454 dev->mode_config.prop_fb_id = prop;
1455
1456 prop = drm_property_create_object(dev, DRM_MODE_PROP_ATOMIC,
1457 "CRTC_ID", DRM_MODE_OBJECT_CRTC);
1458 if (!prop)
1459 return -ENOMEM;
1460 dev->mode_config.prop_crtc_id = prop;
Rob Clark9922ab52014-04-01 20:16:57 -04001461
Daniel Vettereab3bbe2015-01-22 16:36:21 +01001462 prop = drm_property_create_bool(dev, DRM_MODE_PROP_ATOMIC,
1463 "ACTIVE");
1464 if (!prop)
1465 return -ENOMEM;
1466 dev->mode_config.prop_active = prop;
1467
Daniel Stone955f3c32015-05-25 19:11:52 +01001468 prop = drm_property_create(dev,
1469 DRM_MODE_PROP_ATOMIC | DRM_MODE_PROP_BLOB,
1470 "MODE_ID", 0);
1471 if (!prop)
1472 return -ENOMEM;
1473 dev->mode_config.prop_mode_id = prop;
1474
Rob Clark9922ab52014-04-01 20:16:57 -04001475 return 0;
1476}
1477
Dave Airlief453ba02008-11-07 14:05:41 -08001478/**
1479 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1480 * @dev: DRM device
1481 *
1482 * Called by a driver the first time a DVI-I connector is made.
1483 */
1484int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1485{
1486 struct drm_property *dvi_i_selector;
1487 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001488
1489 if (dev->mode_config.dvi_i_select_subconnector_property)
1490 return 0;
1491
1492 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001493 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001494 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001495 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001496 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001497 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1498
Sascha Hauer4a67d392012-02-06 10:58:17 +01001499 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001500 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001501 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001502 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001503 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1504
1505 return 0;
1506}
1507EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1508
1509/**
1510 * drm_create_tv_properties - create TV specific connector properties
1511 * @dev: DRM device
1512 * @num_modes: number of different TV formats (modes) supported
1513 * @modes: array of pointers to strings containing name of each format
1514 *
1515 * Called by a driver's TV initialization routine, this function creates
1516 * the TV specific connector properties for a given device. Caller is
1517 * responsible for allocating a list of format names and passing them to
1518 * this routine.
1519 */
Thierry Reding2f763312014-10-13 12:45:57 +02001520int drm_mode_create_tv_properties(struct drm_device *dev,
1521 unsigned int num_modes,
Ville Syrjäläb7c914b2015-08-31 15:09:26 +03001522 const char * const modes[])
Dave Airlief453ba02008-11-07 14:05:41 -08001523{
1524 struct drm_property *tv_selector;
1525 struct drm_property *tv_subconnector;
Thierry Reding2f763312014-10-13 12:45:57 +02001526 unsigned int i;
Dave Airlief453ba02008-11-07 14:05:41 -08001527
1528 if (dev->mode_config.tv_select_subconnector_property)
1529 return 0;
1530
1531 /*
1532 * Basic connector properties
1533 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001534 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001535 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001536 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001537 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001538 dev->mode_config.tv_select_subconnector_property = tv_selector;
1539
1540 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001541 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1542 "subconnector",
1543 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001544 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001545 dev->mode_config.tv_subconnector_property = tv_subconnector;
1546
1547 /*
1548 * Other, TV specific properties: margins & TV modes.
1549 */
1550 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001551 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001552
1553 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001554 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001555
1556 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001557 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001558
1559 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001560 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001561
1562 dev->mode_config.tv_mode_property =
1563 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1564 "mode", num_modes);
1565 for (i = 0; i < num_modes; i++)
1566 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1567 i, modes[i]);
1568
Francisco Jerezb6b79022009-08-02 04:19:20 +02001569 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001570 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001571
1572 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001573 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001574
1575 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001576 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001577
Francisco Jereza75f0232009-08-12 02:30:10 +02001578 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001579 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001580
1581 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001582 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001583
1584 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001585 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001586
Dave Airlief453ba02008-11-07 14:05:41 -08001587 return 0;
1588}
1589EXPORT_SYMBOL(drm_mode_create_tv_properties);
1590
1591/**
1592 * drm_mode_create_scaling_mode_property - create scaling mode property
1593 * @dev: DRM device
1594 *
1595 * Called by a driver the first time it's needed, must be attached to desired
1596 * connectors.
1597 */
1598int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1599{
1600 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001601
1602 if (dev->mode_config.scaling_mode_property)
1603 return 0;
1604
1605 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001606 drm_property_create_enum(dev, 0, "scaling mode",
1607 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001608 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001609
1610 dev->mode_config.scaling_mode_property = scaling_mode;
1611
1612 return 0;
1613}
1614EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1615
1616/**
Vandana Kannanff587e42014-06-11 10:46:48 +05301617 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1618 * @dev: DRM device
1619 *
1620 * Called by a driver the first time it's needed, must be attached to desired
1621 * connectors.
1622 *
1623 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001624 * Zero on success, negative errno on failure.
Vandana Kannanff587e42014-06-11 10:46:48 +05301625 */
1626int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1627{
1628 if (dev->mode_config.aspect_ratio_property)
1629 return 0;
1630
1631 dev->mode_config.aspect_ratio_property =
1632 drm_property_create_enum(dev, 0, "aspect ratio",
1633 drm_aspect_ratio_enum_list,
1634 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1635
1636 if (dev->mode_config.aspect_ratio_property == NULL)
1637 return -ENOMEM;
1638
1639 return 0;
1640}
1641EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1642
1643/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001644 * drm_mode_create_dirty_property - create dirty property
1645 * @dev: DRM device
1646 *
1647 * Called by a driver the first time it's needed, must be attached to desired
1648 * connectors.
1649 */
1650int drm_mode_create_dirty_info_property(struct drm_device *dev)
1651{
1652 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001653
1654 if (dev->mode_config.dirty_info_property)
1655 return 0;
1656
1657 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001658 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001659 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001660 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001661 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001662 dev->mode_config.dirty_info_property = dirty_info;
1663
1664 return 0;
1665}
1666EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1667
Dave Airlie5bb2bbf2014-11-10 10:18:15 +10001668/**
1669 * drm_mode_create_suggested_offset_properties - create suggests offset properties
1670 * @dev: DRM device
1671 *
1672 * Create the the suggested x/y offset property for connectors.
1673 */
1674int drm_mode_create_suggested_offset_properties(struct drm_device *dev)
1675{
1676 if (dev->mode_config.suggested_x_property && dev->mode_config.suggested_y_property)
1677 return 0;
1678
1679 dev->mode_config.suggested_x_property =
1680 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested X", 0, 0xffffffff);
1681
1682 dev->mode_config.suggested_y_property =
1683 drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, "suggested Y", 0, 0xffffffff);
1684
1685 if (dev->mode_config.suggested_x_property == NULL ||
1686 dev->mode_config.suggested_y_property == NULL)
1687 return -ENOMEM;
1688 return 0;
1689}
1690EXPORT_SYMBOL(drm_mode_create_suggested_offset_properties);
1691
Dave Airlief453ba02008-11-07 14:05:41 -08001692/**
Dave Airlief453ba02008-11-07 14:05:41 -08001693 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001694 * @dev: drm device for the ioctl
1695 * @data: data pointer for the ioctl
1696 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001697 *
Dave Airlief453ba02008-11-07 14:05:41 -08001698 * Construct a set of configuration description structures and return
1699 * them to the user, including CRTC, connector and framebuffer configuration.
1700 *
1701 * Called by the user via ioctl.
1702 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001703 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001704 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001705 */
1706int drm_mode_getresources(struct drm_device *dev, void *data,
1707 struct drm_file *file_priv)
1708{
1709 struct drm_mode_card_res *card_res = data;
1710 struct list_head *lh;
1711 struct drm_framebuffer *fb;
1712 struct drm_connector *connector;
1713 struct drm_crtc *crtc;
1714 struct drm_encoder *encoder;
1715 int ret = 0;
1716 int connector_count = 0;
1717 int crtc_count = 0;
1718 int fb_count = 0;
1719 int encoder_count = 0;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001720 int copied = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001721 uint32_t __user *fb_id;
1722 uint32_t __user *crtc_id;
1723 uint32_t __user *connector_id;
1724 uint32_t __user *encoder_id;
Dave Airlief453ba02008-11-07 14:05:41 -08001725
Dave Airliefb3b06c2011-02-08 13:55:21 +10001726 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1727 return -EINVAL;
1728
Dave Airlief453ba02008-11-07 14:05:41 -08001729
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001730 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001731 /*
1732 * For the non-control nodes we need to limit the list of resources
1733 * by IDs in the group list for this node
1734 */
1735 list_for_each(lh, &file_priv->fbs)
1736 fb_count++;
1737
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001738 /* handle this in 4 parts */
1739 /* FBs */
1740 if (card_res->count_fbs >= fb_count) {
1741 copied = 0;
1742 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1743 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1744 if (put_user(fb->base.id, fb_id + copied)) {
1745 mutex_unlock(&file_priv->fbs_lock);
1746 return -EFAULT;
1747 }
1748 copied++;
1749 }
1750 }
1751 card_res->count_fbs = fb_count;
1752 mutex_unlock(&file_priv->fbs_lock);
1753
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001754 /* mode_config.mutex protects the connector list against e.g. DP MST
1755 * connector hot-adding. CRTC/Plane lists are invariant. */
1756 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001757 drm_for_each_crtc(crtc, dev)
1758 crtc_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001759
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001760 drm_for_each_connector(connector, dev)
1761 connector_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001762
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001763 drm_for_each_encoder(encoder, dev)
1764 encoder_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001765
1766 card_res->max_height = dev->mode_config.max_height;
1767 card_res->min_height = dev->mode_config.min_height;
1768 card_res->max_width = dev->mode_config.max_width;
1769 card_res->min_width = dev->mode_config.min_width;
1770
Dave Airlief453ba02008-11-07 14:05:41 -08001771 /* CRTCs */
1772 if (card_res->count_crtcs >= crtc_count) {
1773 copied = 0;
1774 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001775 drm_for_each_crtc(crtc, dev) {
1776 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
1777 if (put_user(crtc->base.id, crtc_id + copied)) {
1778 ret = -EFAULT;
1779 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001780 }
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001781 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001782 }
1783 }
1784 card_res->count_crtcs = crtc_count;
1785
1786 /* Encoders */
1787 if (card_res->count_encoders >= encoder_count) {
1788 copied = 0;
1789 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001790 drm_for_each_encoder(encoder, dev) {
1791 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1792 encoder->name);
1793 if (put_user(encoder->base.id, encoder_id +
1794 copied)) {
1795 ret = -EFAULT;
1796 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001797 }
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001798 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001799 }
1800 }
1801 card_res->count_encoders = encoder_count;
1802
1803 /* Connectors */
1804 if (card_res->count_connectors >= connector_count) {
1805 copied = 0;
1806 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001807 drm_for_each_connector(connector, dev) {
1808 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1809 connector->base.id,
1810 connector->name);
1811 if (put_user(connector->base.id,
1812 connector_id + copied)) {
1813 ret = -EFAULT;
1814 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001815 }
Daniel Vetter9c7060f2015-07-09 23:44:36 +02001816 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001817 }
1818 }
1819 card_res->count_connectors = connector_count;
1820
Jerome Glisse94401062010-07-15 15:43:25 -04001821 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001822 card_res->count_connectors, card_res->count_encoders);
1823
1824out:
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001825 mutex_unlock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001826 return ret;
1827}
1828
1829/**
1830 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001831 * @dev: drm device for the ioctl
1832 * @data: data pointer for the ioctl
1833 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001834 *
Dave Airlief453ba02008-11-07 14:05:41 -08001835 * Construct a CRTC configuration structure to return to the user.
1836 *
1837 * Called by the user via ioctl.
1838 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001839 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001840 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001841 */
1842int drm_mode_getcrtc(struct drm_device *dev,
1843 void *data, struct drm_file *file_priv)
1844{
1845 struct drm_mode_crtc *crtc_resp = data;
1846 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001847
Dave Airliefb3b06c2011-02-08 13:55:21 +10001848 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1849 return -EINVAL;
1850
Rob Clarka2b34e22013-10-05 16:36:52 -04001851 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001852 if (!crtc)
1853 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001854
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001855 drm_modeset_lock_crtc(crtc, crtc->primary);
Dave Airlief453ba02008-11-07 14:05:41 -08001856 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07001857 if (crtc->primary->fb)
1858 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08001859 else
1860 crtc_resp->fb_id = 0;
1861
Daniel Vetter31c946e2015-02-22 12:24:17 +01001862 if (crtc->state) {
1863 crtc_resp->x = crtc->primary->state->src_x >> 16;
1864 crtc_resp->y = crtc->primary->state->src_y >> 16;
1865 if (crtc->state->enable) {
Daniel Stone934a8a82015-05-22 13:34:48 +01001866 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->state->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +01001867 crtc_resp->mode_valid = 1;
Dave Airlief453ba02008-11-07 14:05:41 -08001868
Daniel Vetter31c946e2015-02-22 12:24:17 +01001869 } else {
1870 crtc_resp->mode_valid = 0;
1871 }
Dave Airlief453ba02008-11-07 14:05:41 -08001872 } else {
Daniel Vetter31c946e2015-02-22 12:24:17 +01001873 crtc_resp->x = crtc->x;
1874 crtc_resp->y = crtc->y;
1875 if (crtc->enabled) {
Daniel Stone934a8a82015-05-22 13:34:48 +01001876 drm_mode_convert_to_umode(&crtc_resp->mode, &crtc->mode);
Daniel Vetter31c946e2015-02-22 12:24:17 +01001877 crtc_resp->mode_valid = 1;
1878
1879 } else {
1880 crtc_resp->mode_valid = 0;
1881 }
Dave Airlief453ba02008-11-07 14:05:41 -08001882 }
Daniel Vetterfcf93f62014-11-12 08:45:01 +01001883 drm_modeset_unlock_crtc(crtc);
Dave Airlief453ba02008-11-07 14:05:41 -08001884
Daniel Vetterbaf698b2014-11-12 11:59:47 +01001885 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001886}
1887
Damien Lespiau61d8e322013-09-25 16:45:22 +01001888static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1889 const struct drm_file *file_priv)
1890{
1891 /*
1892 * If user-space hasn't configured the driver to expose the stereo 3D
1893 * modes, don't expose them.
1894 */
1895 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1896 return false;
1897
1898 return true;
1899}
1900
Daniel Vetterabd69c52014-11-25 23:50:05 +01001901static struct drm_encoder *drm_connector_get_encoder(struct drm_connector *connector)
1902{
1903 /* For atomic drivers only state objects are synchronously updated and
1904 * protected by modeset locks, so check those first. */
1905 if (connector->state)
1906 return connector->state->best_encoder;
1907 return connector->encoder;
1908}
1909
Rob Clark95cbf112014-12-18 16:01:49 -05001910/* helper for getconnector and getproperties ioctls */
Rob Clark88a48e22014-12-18 16:01:50 -05001911static int get_properties(struct drm_mode_object *obj, bool atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05001912 uint32_t __user *prop_ptr, uint64_t __user *prop_values,
1913 uint32_t *arg_count_props)
1914{
Rob Clark88a48e22014-12-18 16:01:50 -05001915 int props_count;
1916 int i, ret, copied;
1917
1918 props_count = obj->properties->count;
1919 if (!atomic)
1920 props_count -= obj->properties->atomic_count;
Rob Clark95cbf112014-12-18 16:01:49 -05001921
1922 if ((*arg_count_props >= props_count) && props_count) {
Rob Clark88a48e22014-12-18 16:01:50 -05001923 for (i = 0, copied = 0; copied < props_count; i++) {
Rob Clark95cbf112014-12-18 16:01:49 -05001924 struct drm_property *prop = obj->properties->properties[i];
1925 uint64_t val;
1926
Rob Clark88a48e22014-12-18 16:01:50 -05001927 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
1928 continue;
1929
Rob Clark95cbf112014-12-18 16:01:49 -05001930 ret = drm_object_property_get_value(obj, prop, &val);
1931 if (ret)
1932 return ret;
1933
1934 if (put_user(prop->base.id, prop_ptr + copied))
1935 return -EFAULT;
1936
1937 if (put_user(val, prop_values + copied))
1938 return -EFAULT;
1939
1940 copied++;
1941 }
1942 }
1943 *arg_count_props = props_count;
1944
1945 return 0;
1946}
1947
Dave Airlief453ba02008-11-07 14:05:41 -08001948/**
1949 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001950 * @dev: drm device for the ioctl
1951 * @data: data pointer for the ioctl
1952 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001953 *
Dave Airlief453ba02008-11-07 14:05:41 -08001954 * Construct a connector configuration structure to return to the user.
1955 *
1956 * Called by the user via ioctl.
1957 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001958 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01001959 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001960 */
1961int drm_mode_getconnector(struct drm_device *dev, void *data,
1962 struct drm_file *file_priv)
1963{
1964 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08001965 struct drm_connector *connector;
Daniel Vetterabd69c52014-11-25 23:50:05 +01001966 struct drm_encoder *encoder;
Dave Airlief453ba02008-11-07 14:05:41 -08001967 struct drm_display_mode *mode;
1968 int mode_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001969 int encoders_count = 0;
1970 int ret = 0;
1971 int copied = 0;
1972 int i;
1973 struct drm_mode_modeinfo u_mode;
1974 struct drm_mode_modeinfo __user *mode_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08001975 uint32_t __user *encoder_ptr;
1976
Dave Airliefb3b06c2011-02-08 13:55:21 +10001977 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1978 return -EINVAL;
1979
Dave Airlief453ba02008-11-07 14:05:41 -08001980 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1981
Jerome Glisse94401062010-07-15 15:43:25 -04001982 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08001983
Daniel Vetter7b240562012-12-12 00:35:33 +01001984 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001985
Rob Clarka2b34e22013-10-05 16:36:52 -04001986 connector = drm_connector_find(dev, out_resp->connector_id);
1987 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03001988 ret = -ENOENT;
Tommi Rantala04bdf442015-04-03 10:45:29 +03001989 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001990 }
Dave Airlief453ba02008-11-07 14:05:41 -08001991
Thierry Reding01073b02014-12-10 13:03:38 +01001992 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++)
1993 if (connector->encoder_ids[i] != 0)
Dave Airlief453ba02008-11-07 14:05:41 -08001994 encoders_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001995
1996 if (out_resp->count_modes == 0) {
1997 connector->funcs->fill_modes(connector,
1998 dev->mode_config.max_width,
1999 dev->mode_config.max_height);
2000 }
2001
2002 /* delayed so we get modes regardless of pre-fill_modes state */
2003 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01002004 if (drm_mode_expose_to_userspace(mode, file_priv))
2005 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08002006
2007 out_resp->connector_id = connector->base.id;
2008 out_resp->connector_type = connector->connector_type;
2009 out_resp->connector_type_id = connector->connector_type_id;
2010 out_resp->mm_width = connector->display_info.width_mm;
2011 out_resp->mm_height = connector->display_info.height_mm;
2012 out_resp->subpixel = connector->display_info.subpixel_order;
2013 out_resp->connection = connector->status;
Daniel Vetter2caa80e2015-02-22 11:38:36 +01002014
2015 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002016 encoder = drm_connector_get_encoder(connector);
2017 if (encoder)
2018 out_resp->encoder_id = encoder->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002019 else
2020 out_resp->encoder_id = 0;
2021
2022 /*
2023 * This ioctl is called twice, once to determine how much space is
2024 * needed, and the 2nd time to fill it.
2025 */
2026 if ((out_resp->count_modes >= mode_count) && mode_count) {
2027 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002028 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002029 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01002030 if (!drm_mode_expose_to_userspace(mode, file_priv))
2031 continue;
2032
Daniel Stone934a8a82015-05-22 13:34:48 +01002033 drm_mode_convert_to_umode(&u_mode, mode);
Dave Airlief453ba02008-11-07 14:05:41 -08002034 if (copy_to_user(mode_ptr + copied,
2035 &u_mode, sizeof(u_mode))) {
2036 ret = -EFAULT;
2037 goto out;
2038 }
2039 copied++;
2040 }
2041 }
2042 out_resp->count_modes = mode_count;
2043
Rob Clark88a48e22014-12-18 16:01:50 -05002044 ret = get_properties(&connector->base, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05002045 (uint32_t __user *)(unsigned long)(out_resp->props_ptr),
2046 (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr),
2047 &out_resp->count_props);
2048 if (ret)
2049 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002050
2051 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2052 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002053 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08002054 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2055 if (connector->encoder_ids[i] != 0) {
2056 if (put_user(connector->encoder_ids[i],
2057 encoder_ptr + copied)) {
2058 ret = -EFAULT;
2059 goto out;
2060 }
2061 copied++;
2062 }
2063 }
2064 }
2065 out_resp->count_encoders = encoders_count;
2066
2067out:
Rob Clarkccfc0862014-12-18 16:01:48 -05002068 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Tommi Rantala04bdf442015-04-03 10:45:29 +03002069
2070out_unlock:
Daniel Vetter7b240562012-12-12 00:35:33 +01002071 mutex_unlock(&dev->mode_config.mutex);
2072
Dave Airlief453ba02008-11-07 14:05:41 -08002073 return ret;
2074}
2075
Daniel Vetterabd69c52014-11-25 23:50:05 +01002076static struct drm_crtc *drm_encoder_get_crtc(struct drm_encoder *encoder)
2077{
2078 struct drm_connector *connector;
2079 struct drm_device *dev = encoder->dev;
2080 bool uses_atomic = false;
2081
2082 /* For atomic drivers only state objects are synchronously updated and
2083 * protected by modeset locks, so check those first. */
Daniel Vetter6295d602015-07-09 23:44:25 +02002084 drm_for_each_connector(connector, dev) {
Daniel Vetterabd69c52014-11-25 23:50:05 +01002085 if (!connector->state)
2086 continue;
2087
2088 uses_atomic = true;
2089
2090 if (connector->state->best_encoder != encoder)
2091 continue;
2092
2093 return connector->state->crtc;
2094 }
2095
2096 /* Don't return stale data (e.g. pending async disable). */
2097 if (uses_atomic)
2098 return NULL;
2099
2100 return encoder->crtc;
2101}
2102
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002103/**
2104 * drm_mode_getencoder - get encoder configuration
2105 * @dev: drm device for the ioctl
2106 * @data: data pointer for the ioctl
2107 * @file_priv: drm file for the ioctl call
2108 *
2109 * Construct a encoder configuration structure to return to the user.
2110 *
2111 * Called by the user via ioctl.
2112 *
2113 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002114 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002115 */
Dave Airlief453ba02008-11-07 14:05:41 -08002116int drm_mode_getencoder(struct drm_device *dev, void *data,
2117 struct drm_file *file_priv)
2118{
2119 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002120 struct drm_encoder *encoder;
Daniel Vetterabd69c52014-11-25 23:50:05 +01002121 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002122
Dave Airliefb3b06c2011-02-08 13:55:21 +10002123 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2124 return -EINVAL;
2125
Rob Clarka2b34e22013-10-05 16:36:52 -04002126 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002127 if (!encoder)
2128 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002129
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002130 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Daniel Vetterabd69c52014-11-25 23:50:05 +01002131 crtc = drm_encoder_get_crtc(encoder);
2132 if (crtc)
2133 enc_resp->crtc_id = crtc->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002134 else
2135 enc_resp->crtc_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002136 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2137
Dave Airlief453ba02008-11-07 14:05:41 -08002138 enc_resp->encoder_type = encoder->encoder_type;
2139 enc_resp->encoder_id = encoder->base.id;
2140 enc_resp->possible_crtcs = encoder->possible_crtcs;
2141 enc_resp->possible_clones = encoder->possible_clones;
2142
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002143 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08002144}
2145
2146/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002147 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002148 * @dev: DRM device
2149 * @data: ioctl data
2150 * @file_priv: DRM file info
2151 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002152 * Construct a list of plane ids to return to the user.
2153 *
2154 * Called by the user via ioctl.
2155 *
2156 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002157 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002158 */
2159int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002160 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002161{
2162 struct drm_mode_get_plane_res *plane_resp = data;
2163 struct drm_mode_config *config;
2164 struct drm_plane *plane;
2165 uint32_t __user *plane_ptr;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002166 int copied = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002167 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002168
2169 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2170 return -EINVAL;
2171
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002172 config = &dev->mode_config;
2173
Matt Roper681e7ec2014-04-01 15:22:42 -07002174 if (file_priv->universal_planes)
2175 num_planes = config->num_total_plane;
2176 else
2177 num_planes = config->num_overlay_plane;
2178
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002179 /*
2180 * This ioctl is called twice, once to determine how much space is
2181 * needed, and the 2nd time to fill it.
2182 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002183 if (num_planes &&
2184 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002185 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002186
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002187 /* Plane lists are invariant, no locking needed. */
Daniel Vettere4f62542015-07-09 23:44:35 +02002188 drm_for_each_plane(plane, dev) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002189 /*
2190 * Unless userspace set the 'universal planes'
2191 * capability bit, only advertise overlays.
2192 */
2193 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2194 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002195 continue;
2196
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002197 if (put_user(plane->base.id, plane_ptr + copied))
2198 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002199 copied++;
2200 }
2201 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002202 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002203
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002204 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002205}
2206
2207/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002208 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002209 * @dev: DRM device
2210 * @data: ioctl data
2211 * @file_priv: DRM file info
2212 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002213 * Construct a plane configuration structure to return to the user.
2214 *
2215 * Called by the user via ioctl.
2216 *
2217 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002218 * Zero on success, negative errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002219 */
2220int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002221 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002222{
2223 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002224 struct drm_plane *plane;
2225 uint32_t __user *format_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002226
2227 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2228 return -EINVAL;
2229
Rob Clarka2b34e22013-10-05 16:36:52 -04002230 plane = drm_plane_find(dev, plane_resp->plane_id);
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002231 if (!plane)
2232 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002233
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002234 drm_modeset_lock(&plane->mutex, NULL);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002235 if (plane->crtc)
2236 plane_resp->crtc_id = plane->crtc->base.id;
2237 else
2238 plane_resp->crtc_id = 0;
2239
2240 if (plane->fb)
2241 plane_resp->fb_id = plane->fb->base.id;
2242 else
2243 plane_resp->fb_id = 0;
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002244 drm_modeset_unlock(&plane->mutex);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002245
2246 plane_resp->plane_id = plane->base.id;
2247 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002248 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002249
2250 /*
2251 * This ioctl is called twice, once to determine how much space is
2252 * needed, and the 2nd time to fill it.
2253 */
2254 if (plane->format_count &&
2255 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002256 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002257 if (copy_to_user(format_ptr,
2258 plane->format_types,
2259 sizeof(uint32_t) * plane->format_count)) {
Daniel Vetterfcf93f62014-11-12 08:45:01 +01002260 return -EFAULT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002261 }
2262 }
2263 plane_resp->count_format_types = plane->format_count;
2264
Daniel Vetterbaf698b2014-11-12 11:59:47 +01002265 return 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002266}
2267
Laurent Pinchartead86102015-03-05 02:25:43 +02002268/**
2269 * drm_plane_check_pixel_format - Check if the plane supports the pixel format
2270 * @plane: plane to check for format support
2271 * @format: the pixel format
2272 *
2273 * Returns:
2274 * Zero of @plane has @format in its list of supported pixel formats, -EINVAL
2275 * otherwise.
2276 */
2277int drm_plane_check_pixel_format(const struct drm_plane *plane, u32 format)
2278{
2279 unsigned int i;
2280
2281 for (i = 0; i < plane->format_count; i++) {
2282 if (format == plane->format_types[i])
2283 return 0;
2284 }
2285
2286 return -EINVAL;
2287}
2288
Matt Roperb36552b2014-06-10 08:28:09 -07002289/*
2290 * setplane_internal - setplane handler for internal callers
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002291 *
Matt Roperb36552b2014-06-10 08:28:09 -07002292 * Note that we assume an extra reference has already been taken on fb. If the
2293 * update fails, this reference will be dropped before return; if it succeeds,
2294 * the previous framebuffer (if any) will be unreferenced instead.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002295 *
Matt Roperb36552b2014-06-10 08:28:09 -07002296 * src_{x,y,w,h} are provided in 16.16 fixed point format
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002297 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002298static int __setplane_internal(struct drm_plane *plane,
2299 struct drm_crtc *crtc,
2300 struct drm_framebuffer *fb,
2301 int32_t crtc_x, int32_t crtc_y,
2302 uint32_t crtc_w, uint32_t crtc_h,
2303 /* src_{x,y,w,h} values are 16.16 fixed point */
2304 uint32_t src_x, uint32_t src_y,
2305 uint32_t src_w, uint32_t src_h)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002306{
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002307 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002308 unsigned int fb_width, fb_height;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002309
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002310 /* No fb means shut it down */
Matt Roperb36552b2014-06-10 08:28:09 -07002311 if (!fb) {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002312 plane->old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002313 ret = plane->funcs->disable_plane(plane);
2314 if (!ret) {
2315 plane->crtc = NULL;
2316 plane->fb = NULL;
2317 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002318 plane->old_fb = NULL;
Daniel Vetter731cce42014-04-23 10:24:11 +02002319 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002320 goto out;
2321 }
2322
Matt Roper7f994f32014-05-29 08:06:51 -07002323 /* Check whether this plane is usable on this CRTC */
2324 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2325 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2326 ret = -EINVAL;
2327 goto out;
2328 }
2329
Ville Syrjälä62443be2011-12-20 00:06:47 +02002330 /* Check whether this plane supports the fb pixel format. */
Laurent Pinchartead86102015-03-05 02:25:43 +02002331 ret = drm_plane_check_pixel_format(plane, fb->pixel_format);
2332 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002333 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2334 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002335 goto out;
2336 }
2337
Matt Roper3968be92015-04-13 11:06:13 -07002338 /* Give drivers some help against integer overflows */
2339 if (crtc_w > INT_MAX ||
2340 crtc_x > INT_MAX - (int32_t) crtc_w ||
2341 crtc_h > INT_MAX ||
2342 crtc_y > INT_MAX - (int32_t) crtc_h) {
2343 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2344 crtc_w, crtc_h, crtc_x, crtc_y);
2345 return -ERANGE;
2346 }
2347
2348
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002349 fb_width = fb->width << 16;
2350 fb_height = fb->height << 16;
2351
2352 /* Make sure source coordinates are inside the fb. */
Matt Roperb36552b2014-06-10 08:28:09 -07002353 if (src_w > fb_width ||
2354 src_x > fb_width - src_w ||
2355 src_h > fb_height ||
2356 src_y > fb_height - src_h) {
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002357 DRM_DEBUG_KMS("Invalid source coordinates "
2358 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
Matt Roperb36552b2014-06-10 08:28:09 -07002359 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2360 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2361 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2362 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002363 ret = -ENOSPC;
2364 goto out;
2365 }
2366
Daniel Vetter3d30a592014-07-27 13:42:42 +02002367 plane->old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002368 ret = plane->funcs->update_plane(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002369 crtc_x, crtc_y, crtc_w, crtc_h,
2370 src_x, src_y, src_w, src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002371 if (!ret) {
2372 plane->crtc = crtc;
2373 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002374 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002375 } else {
Daniel Vetter3d30a592014-07-27 13:42:42 +02002376 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002377 }
2378
2379out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002380 if (fb)
2381 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002382 if (plane->old_fb)
2383 drm_framebuffer_unreference(plane->old_fb);
2384 plane->old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002385
2386 return ret;
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002387}
Matt Roperb36552b2014-06-10 08:28:09 -07002388
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002389static int setplane_internal(struct drm_plane *plane,
2390 struct drm_crtc *crtc,
2391 struct drm_framebuffer *fb,
2392 int32_t crtc_x, int32_t crtc_y,
2393 uint32_t crtc_w, uint32_t crtc_h,
2394 /* src_{x,y,w,h} values are 16.16 fixed point */
2395 uint32_t src_x, uint32_t src_y,
2396 uint32_t src_w, uint32_t src_h)
2397{
2398 int ret;
2399
2400 drm_modeset_lock_all(plane->dev);
2401 ret = __setplane_internal(plane, crtc, fb,
2402 crtc_x, crtc_y, crtc_w, crtc_h,
2403 src_x, src_y, src_w, src_h);
2404 drm_modeset_unlock_all(plane->dev);
2405
2406 return ret;
Matt Roperb36552b2014-06-10 08:28:09 -07002407}
2408
2409/**
2410 * drm_mode_setplane - configure a plane's configuration
2411 * @dev: DRM device
2412 * @data: ioctl data*
2413 * @file_priv: DRM file info
2414 *
2415 * Set plane configuration, including placement, fb, scaling, and other factors.
2416 * Or pass a NULL fb to disable (planes may be disabled without providing a
2417 * valid crtc).
2418 *
2419 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002420 * Zero on success, negative errno on failure.
Matt Roperb36552b2014-06-10 08:28:09 -07002421 */
2422int drm_mode_setplane(struct drm_device *dev, void *data,
2423 struct drm_file *file_priv)
2424{
2425 struct drm_mode_set_plane *plane_req = data;
Matt Roperb36552b2014-06-10 08:28:09 -07002426 struct drm_plane *plane;
2427 struct drm_crtc *crtc = NULL;
2428 struct drm_framebuffer *fb = NULL;
2429
2430 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2431 return -EINVAL;
2432
Matt Roperb36552b2014-06-10 08:28:09 -07002433 /*
2434 * First, find the plane, crtc, and fb objects. If not available,
2435 * we don't bother to call the driver.
2436 */
Rob Clark933f6222014-11-25 20:33:11 -05002437 plane = drm_plane_find(dev, plane_req->plane_id);
2438 if (!plane) {
Matt Roperb36552b2014-06-10 08:28:09 -07002439 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2440 plane_req->plane_id);
2441 return -ENOENT;
2442 }
Matt Roperb36552b2014-06-10 08:28:09 -07002443
2444 if (plane_req->fb_id) {
2445 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2446 if (!fb) {
2447 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2448 plane_req->fb_id);
2449 return -ENOENT;
2450 }
2451
Rob Clark933f6222014-11-25 20:33:11 -05002452 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2453 if (!crtc) {
Matt Roperb36552b2014-06-10 08:28:09 -07002454 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2455 plane_req->crtc_id);
2456 return -ENOENT;
2457 }
Matt Roperb36552b2014-06-10 08:28:09 -07002458 }
2459
Matt Roper161d0dc2014-06-10 08:28:10 -07002460 /*
2461 * setplane_internal will take care of deref'ing either the old or new
2462 * framebuffer depending on success.
2463 */
Chris Wilson17cfd912014-06-13 15:22:28 +01002464 return setplane_internal(plane, crtc, fb,
Matt Roperb36552b2014-06-10 08:28:09 -07002465 plane_req->crtc_x, plane_req->crtc_y,
2466 plane_req->crtc_w, plane_req->crtc_h,
2467 plane_req->src_x, plane_req->src_y,
2468 plane_req->src_w, plane_req->src_h);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002469}
2470
2471/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002472 * drm_mode_set_config_internal - helper to call ->set_config
2473 * @set: modeset config to set
2474 *
2475 * This is a little helper to wrap internal calls to the ->set_config driver
2476 * interface. The only thing it adds is correct refcounting dance.
Thierry Reding4dfd9092014-12-10 13:03:34 +01002477 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002478 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002479 * Zero on success, negative errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002480 */
2481int drm_mode_set_config_internal(struct drm_mode_set *set)
2482{
2483 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002484 struct drm_framebuffer *fb;
2485 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002486 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002487
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002488 /*
2489 * NOTE: ->set_config can also disable other crtcs (if we steal all
2490 * connectors from it), hence we need to refcount the fbs across all
2491 * crtcs. Atomic modeset will have saner semantics ...
2492 */
Daniel Vettere4f62542015-07-09 23:44:35 +02002493 drm_for_each_crtc(tmp, crtc->dev)
Daniel Vetter3d30a592014-07-27 13:42:42 +02002494 tmp->primary->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002495
Daniel Vetterb0d12322012-12-11 01:07:12 +01002496 fb = set->fb;
2497
2498 ret = crtc->funcs->set_config(set);
2499 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002500 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002501 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002502 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002503
Daniel Vettere4f62542015-07-09 23:44:35 +02002504 drm_for_each_crtc(tmp, crtc->dev) {
Matt Roperf4510a22014-04-01 15:22:40 -07002505 if (tmp->primary->fb)
2506 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02002507 if (tmp->primary->old_fb)
2508 drm_framebuffer_unreference(tmp->primary->old_fb);
2509 tmp->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002510 }
2511
2512 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002513}
2514EXPORT_SYMBOL(drm_mode_set_config_internal);
2515
Matt Roperaf936292014-04-01 15:22:34 -07002516/**
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002517 * drm_crtc_get_hv_timing - Fetches hdisplay/vdisplay for given mode
2518 * @mode: mode to query
2519 * @hdisplay: hdisplay value to fill in
2520 * @vdisplay: vdisplay value to fill in
2521 *
2522 * The vdisplay value will be doubled if the specified mode is a stereo mode of
2523 * the appropriate layout.
2524 */
2525void drm_crtc_get_hv_timing(const struct drm_display_mode *mode,
2526 int *hdisplay, int *vdisplay)
2527{
2528 struct drm_display_mode adjusted;
2529
2530 drm_mode_copy(&adjusted, mode);
2531 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE_ONLY);
2532 *hdisplay = adjusted.crtc_hdisplay;
2533 *vdisplay = adjusted.crtc_vdisplay;
2534}
2535EXPORT_SYMBOL(drm_crtc_get_hv_timing);
2536
2537/**
Matt Roperaf936292014-04-01 15:22:34 -07002538 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2539 * CRTC viewport
2540 * @crtc: CRTC that framebuffer will be displayed on
2541 * @x: x panning
2542 * @y: y panning
2543 * @mode: mode that framebuffer will be displayed under
2544 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002545 */
Matt Roperaf936292014-04-01 15:22:34 -07002546int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2547 int x, int y,
2548 const struct drm_display_mode *mode,
2549 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002550
2551{
2552 int hdisplay, vdisplay;
2553
Gustavo Padovanecb7e162014-12-01 15:40:09 -08002554 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002555
Damien Lespiauc11e9282013-09-25 16:45:30 +01002556 if (crtc->invert_dimensions)
2557 swap(hdisplay, vdisplay);
2558
2559 if (hdisplay > fb->width ||
2560 vdisplay > fb->height ||
2561 x > fb->width - hdisplay ||
2562 y > fb->height - vdisplay) {
2563 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2564 fb->width, fb->height, hdisplay, vdisplay, x, y,
2565 crtc->invert_dimensions ? " (inverted)" : "");
2566 return -ENOSPC;
2567 }
2568
2569 return 0;
2570}
Matt Roperaf936292014-04-01 15:22:34 -07002571EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002572
Daniel Vetter2d13b672012-12-11 13:47:23 +01002573/**
Dave Airlief453ba02008-11-07 14:05:41 -08002574 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002575 * @dev: drm device for the ioctl
2576 * @data: data pointer for the ioctl
2577 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002578 *
Dave Airlief453ba02008-11-07 14:05:41 -08002579 * Build a new CRTC configuration based on user request.
2580 *
2581 * Called by the user via ioctl.
2582 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002583 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002584 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08002585 */
2586int drm_mode_setcrtc(struct drm_device *dev, void *data,
2587 struct drm_file *file_priv)
2588{
2589 struct drm_mode_config *config = &dev->mode_config;
2590 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002591 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002592 struct drm_connector **connector_set = NULL, *connector;
2593 struct drm_framebuffer *fb = NULL;
2594 struct drm_display_mode *mode = NULL;
2595 struct drm_mode_set set;
2596 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002597 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002598 int i;
2599
Dave Airliefb3b06c2011-02-08 13:55:21 +10002600 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2601 return -EINVAL;
2602
Zhao Junwang01447e92015-07-07 17:08:35 +08002603 /*
2604 * Universal plane src offsets are only 16.16, prevent havoc for
2605 * drivers using universal plane code internally.
2606 */
2607 if (crtc_req->x & 0xffff0000 || crtc_req->y & 0xffff0000)
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002608 return -ERANGE;
2609
Daniel Vetter84849902012-12-02 00:28:11 +01002610 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002611 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2612 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002613 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002614 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002615 goto out;
2616 }
Jerome Glisse94401062010-07-15 15:43:25 -04002617 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002618
2619 if (crtc_req->mode_valid) {
2620 /* If we have a mode we need a framebuffer. */
2621 /* If we pass -1, set the mode with the currently bound fb */
2622 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002623 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002624 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2625 ret = -EINVAL;
2626 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002627 }
Matt Roperf4510a22014-04-01 15:22:40 -07002628 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002629 /* Make refcounting symmetric with the lookup path. */
2630 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002631 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002632 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2633 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002634 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2635 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002636 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002637 goto out;
2638 }
Dave Airlief453ba02008-11-07 14:05:41 -08002639 }
2640
2641 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002642 if (!mode) {
2643 ret = -ENOMEM;
2644 goto out;
2645 }
2646
Daniel Stone934a8a82015-05-22 13:34:48 +01002647 ret = drm_mode_convert_umode(mode, &crtc_req->mode);
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002648 if (ret) {
2649 DRM_DEBUG_KMS("Invalid mode\n");
2650 goto out;
2651 }
2652
Dave Airlief453ba02008-11-07 14:05:41 -08002653 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002654
Laurent Pinchart7eb5f302015-03-09 10:41:07 +02002655 /*
2656 * Check whether the primary plane supports the fb pixel format.
2657 * Drivers not implementing the universal planes API use a
2658 * default formats list provided by the DRM core which doesn't
2659 * match real hardware capabilities. Skip the check in that
2660 * case.
2661 */
2662 if (!crtc->primary->format_default) {
2663 ret = drm_plane_check_pixel_format(crtc->primary,
2664 fb->pixel_format);
2665 if (ret) {
2666 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2667 drm_get_format_name(fb->pixel_format));
2668 goto out;
2669 }
2670 }
2671
Damien Lespiauc11e9282013-09-25 16:45:30 +01002672 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2673 mode, fb);
2674 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002675 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002676
Dave Airlief453ba02008-11-07 14:05:41 -08002677 }
2678
2679 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002680 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002681 ret = -EINVAL;
2682 goto out;
2683 }
2684
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002685 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002686 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002687 crtc_req->count_connectors);
2688 ret = -EINVAL;
2689 goto out;
2690 }
2691
2692 if (crtc_req->count_connectors > 0) {
2693 u32 out_id;
2694
2695 /* Avoid unbounded kernel memory allocation */
2696 if (crtc_req->count_connectors > config->num_connector) {
2697 ret = -EINVAL;
2698 goto out;
2699 }
2700
Thierry Reding2f6c5382014-12-10 13:03:36 +01002701 connector_set = kmalloc_array(crtc_req->count_connectors,
2702 sizeof(struct drm_connector *),
2703 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08002704 if (!connector_set) {
2705 ret = -ENOMEM;
2706 goto out;
2707 }
2708
2709 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002710 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002711 if (get_user(out_id, &set_connectors_ptr[i])) {
2712 ret = -EFAULT;
2713 goto out;
2714 }
2715
Rob Clarka2b34e22013-10-05 16:36:52 -04002716 connector = drm_connector_find(dev, out_id);
2717 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002718 DRM_DEBUG_KMS("Connector id %d unknown\n",
2719 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002720 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002721 goto out;
2722 }
Jerome Glisse94401062010-07-15 15:43:25 -04002723 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2724 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002725 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002726
2727 connector_set[i] = connector;
2728 }
2729 }
2730
2731 set.crtc = crtc;
2732 set.x = crtc_req->x;
2733 set.y = crtc_req->y;
2734 set.mode = mode;
2735 set.connectors = connector_set;
2736 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002737 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002738 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002739
2740out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002741 if (fb)
2742 drm_framebuffer_unreference(fb);
2743
Dave Airlief453ba02008-11-07 14:05:41 -08002744 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002745 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002746 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002747 return ret;
2748}
2749
Matt Roper161d0dc2014-06-10 08:28:10 -07002750/**
2751 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2752 * universal plane handler call
2753 * @crtc: crtc to update cursor for
2754 * @req: data pointer for the ioctl
2755 * @file_priv: drm file for the ioctl call
2756 *
2757 * Legacy cursor ioctl's work directly with driver buffer handles. To
2758 * translate legacy ioctl calls into universal plane handler calls, we need to
2759 * wrap the native buffer handle in a drm_framebuffer.
2760 *
2761 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2762 * buffer with a pitch of 4*width; the universal plane interface should be used
2763 * directly in cases where the hardware can support other buffer settings and
2764 * userspace wants to make use of these capabilities.
2765 *
2766 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002767 * Zero on success, negative errno on failure.
Matt Roper161d0dc2014-06-10 08:28:10 -07002768 */
2769static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2770 struct drm_mode_cursor2 *req,
2771 struct drm_file *file_priv)
2772{
2773 struct drm_device *dev = crtc->dev;
2774 struct drm_framebuffer *fb = NULL;
2775 struct drm_mode_fb_cmd2 fbreq = {
2776 .width = req->width,
2777 .height = req->height,
2778 .pixel_format = DRM_FORMAT_ARGB8888,
2779 .pitches = { req->width * 4 },
2780 .handles = { req->handle },
2781 };
2782 int32_t crtc_x, crtc_y;
2783 uint32_t crtc_w = 0, crtc_h = 0;
2784 uint32_t src_w = 0, src_h = 0;
2785 int ret = 0;
2786
2787 BUG_ON(!crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002788 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
Matt Roper161d0dc2014-06-10 08:28:10 -07002789
2790 /*
2791 * Obtain fb we'll be using (either new or existing) and take an extra
2792 * reference to it if fb != null. setplane will take care of dropping
2793 * the reference if the plane update fails.
2794 */
2795 if (req->flags & DRM_MODE_CURSOR_BO) {
2796 if (req->handle) {
Chris Wilson9a6f5132015-02-25 13:45:26 +00002797 fb = internal_framebuffer_create(dev, &fbreq, file_priv);
Matt Roper161d0dc2014-06-10 08:28:10 -07002798 if (IS_ERR(fb)) {
2799 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2800 return PTR_ERR(fb);
2801 }
Matt Roper161d0dc2014-06-10 08:28:10 -07002802 } else {
2803 fb = NULL;
2804 }
2805 } else {
Matt Roper161d0dc2014-06-10 08:28:10 -07002806 fb = crtc->cursor->fb;
2807 if (fb)
2808 drm_framebuffer_reference(fb);
Matt Roper161d0dc2014-06-10 08:28:10 -07002809 }
2810
2811 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2812 crtc_x = req->x;
2813 crtc_y = req->y;
2814 } else {
2815 crtc_x = crtc->cursor_x;
2816 crtc_y = crtc->cursor_y;
2817 }
2818
2819 if (fb) {
2820 crtc_w = fb->width;
2821 crtc_h = fb->height;
2822 src_w = fb->width << 16;
2823 src_h = fb->height << 16;
2824 }
2825
2826 /*
2827 * setplane_internal will take care of deref'ing either the old or new
2828 * framebuffer depending on success.
2829 */
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002830 ret = __setplane_internal(crtc->cursor, crtc, fb,
Matt Roper161d0dc2014-06-10 08:28:10 -07002831 crtc_x, crtc_y, crtc_w, crtc_h,
2832 0, 0, src_w, src_h);
2833
2834 /* Update successful; save new cursor position, if necessary */
2835 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2836 crtc->cursor_x = req->x;
2837 crtc->cursor_y = req->y;
2838 }
2839
2840 return ret;
2841}
2842
Dave Airlie4c813d42013-06-20 11:48:52 +10002843static int drm_mode_cursor_common(struct drm_device *dev,
2844 struct drm_mode_cursor2 *req,
2845 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002846{
Dave Airlief453ba02008-11-07 14:05:41 -08002847 struct drm_crtc *crtc;
2848 int ret = 0;
2849
Dave Airliefb3b06c2011-02-08 13:55:21 +10002850 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2851 return -EINVAL;
2852
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002853 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002854 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002855
Rob Clarka2b34e22013-10-05 16:36:52 -04002856 crtc = drm_crtc_find(dev, req->crtc_id);
2857 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002858 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002859 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002860 }
Dave Airlief453ba02008-11-07 14:05:41 -08002861
Matt Roper161d0dc2014-06-10 08:28:10 -07002862 /*
2863 * If this crtc has a universal cursor plane, call that plane's update
2864 * handler rather than using legacy cursor handlers.
2865 */
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01002866 drm_modeset_lock_crtc(crtc, crtc->cursor);
Daniel Vetterf2b50c12014-09-12 17:07:32 +02002867 if (crtc->cursor) {
2868 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2869 goto out;
2870 }
2871
Dave Airlief453ba02008-11-07 14:05:41 -08002872 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002873 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002874 ret = -ENXIO;
2875 goto out;
2876 }
2877 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002878 if (crtc->funcs->cursor_set2)
2879 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2880 req->width, req->height, req->hot_x, req->hot_y);
2881 else
2882 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2883 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002884 }
2885
2886 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2887 if (crtc->funcs->cursor_move) {
2888 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2889 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002890 ret = -EFAULT;
2891 goto out;
2892 }
2893 }
2894out:
Daniel Vetterd059f652014-07-25 18:07:40 +02002895 drm_modeset_unlock_crtc(crtc);
Daniel Vetterdac35662012-12-02 15:24:10 +01002896
Dave Airlief453ba02008-11-07 14:05:41 -08002897 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10002898
2899}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002900
2901
2902/**
2903 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2904 * @dev: drm device for the ioctl
2905 * @data: data pointer for the ioctl
2906 * @file_priv: drm file for the ioctl call
2907 *
2908 * Set the cursor configuration based on user request.
2909 *
2910 * Called by the user via ioctl.
2911 *
2912 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002913 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002914 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002915int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002916 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10002917{
2918 struct drm_mode_cursor *req = data;
2919 struct drm_mode_cursor2 new_req;
2920
2921 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
2922 new_req.hot_x = new_req.hot_y = 0;
2923
2924 return drm_mode_cursor_common(dev, &new_req, file_priv);
2925}
2926
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002927/**
2928 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
2929 * @dev: drm device for the ioctl
2930 * @data: data pointer for the ioctl
2931 * @file_priv: drm file for the ioctl call
2932 *
2933 * Set the cursor configuration based on user request. This implements the 2nd
2934 * version of the cursor ioctl, which allows userspace to additionally specify
2935 * the hotspot of the pointer.
2936 *
2937 * Called by the user via ioctl.
2938 *
2939 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01002940 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002941 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002942int drm_mode_cursor2_ioctl(struct drm_device *dev,
2943 void *data, struct drm_file *file_priv)
2944{
2945 struct drm_mode_cursor2 *req = data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01002946
Dave Airlie4c813d42013-06-20 11:48:52 +10002947 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08002948}
2949
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002950/**
2951 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
2952 * @bpp: bits per pixels
2953 * @depth: bit depth per pixel
2954 *
2955 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
2956 * Useful in fbdev emulation code, since that deals in those values.
2957 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002958uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2959{
2960 uint32_t fmt;
2961
2962 switch (bpp) {
2963 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02002964 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002965 break;
2966 case 16:
2967 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002968 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002969 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002970 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002971 break;
2972 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002973 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002974 break;
2975 case 32:
2976 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002977 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002978 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002979 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002980 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002981 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002982 break;
2983 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002984 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2985 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002986 break;
2987 }
2988
2989 return fmt;
2990}
2991EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2992
Dave Airlief453ba02008-11-07 14:05:41 -08002993/**
2994 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002995 * @dev: drm device for the ioctl
2996 * @data: data pointer for the ioctl
2997 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002998 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002999 * Add a new FB to the specified CRTC, given a user request. This is the
Chuck Ebbert209f5522014-10-08 11:37:20 -05003000 * original addfb ioctl which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08003001 *
3002 * Called by the user via ioctl.
3003 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003004 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003005 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003006 */
3007int drm_mode_addfb(struct drm_device *dev,
3008 void *data, struct drm_file *file_priv)
3009{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003010 struct drm_mode_fb_cmd *or = data;
3011 struct drm_mode_fb_cmd2 r = {};
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003012 int ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003013
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003014 /* convert to new format and call new ioctl */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003015 r.fb_id = or->fb_id;
3016 r.width = or->width;
3017 r.height = or->height;
3018 r.pitches[0] = or->pitch;
3019 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
3020 r.handles[0] = or->handle;
3021
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003022 ret = drm_mode_addfb2(dev, &r, file_priv);
3023 if (ret)
3024 return ret;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003025
Chuck Ebbert228f2cb2014-10-08 11:40:34 -05003026 or->fb_id = r.fb_id;
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003027
Daniel Vetterbaf698b2014-11-12 11:59:47 +01003028 return 0;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003029}
3030
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003031static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02003032{
3033 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
3034
3035 switch (format) {
3036 case DRM_FORMAT_C8:
3037 case DRM_FORMAT_RGB332:
3038 case DRM_FORMAT_BGR233:
3039 case DRM_FORMAT_XRGB4444:
3040 case DRM_FORMAT_XBGR4444:
3041 case DRM_FORMAT_RGBX4444:
3042 case DRM_FORMAT_BGRX4444:
3043 case DRM_FORMAT_ARGB4444:
3044 case DRM_FORMAT_ABGR4444:
3045 case DRM_FORMAT_RGBA4444:
3046 case DRM_FORMAT_BGRA4444:
3047 case DRM_FORMAT_XRGB1555:
3048 case DRM_FORMAT_XBGR1555:
3049 case DRM_FORMAT_RGBX5551:
3050 case DRM_FORMAT_BGRX5551:
3051 case DRM_FORMAT_ARGB1555:
3052 case DRM_FORMAT_ABGR1555:
3053 case DRM_FORMAT_RGBA5551:
3054 case DRM_FORMAT_BGRA5551:
3055 case DRM_FORMAT_RGB565:
3056 case DRM_FORMAT_BGR565:
3057 case DRM_FORMAT_RGB888:
3058 case DRM_FORMAT_BGR888:
3059 case DRM_FORMAT_XRGB8888:
3060 case DRM_FORMAT_XBGR8888:
3061 case DRM_FORMAT_RGBX8888:
3062 case DRM_FORMAT_BGRX8888:
3063 case DRM_FORMAT_ARGB8888:
3064 case DRM_FORMAT_ABGR8888:
3065 case DRM_FORMAT_RGBA8888:
3066 case DRM_FORMAT_BGRA8888:
3067 case DRM_FORMAT_XRGB2101010:
3068 case DRM_FORMAT_XBGR2101010:
3069 case DRM_FORMAT_RGBX1010102:
3070 case DRM_FORMAT_BGRX1010102:
3071 case DRM_FORMAT_ARGB2101010:
3072 case DRM_FORMAT_ABGR2101010:
3073 case DRM_FORMAT_RGBA1010102:
3074 case DRM_FORMAT_BGRA1010102:
3075 case DRM_FORMAT_YUYV:
3076 case DRM_FORMAT_YVYU:
3077 case DRM_FORMAT_UYVY:
3078 case DRM_FORMAT_VYUY:
3079 case DRM_FORMAT_AYUV:
3080 case DRM_FORMAT_NV12:
3081 case DRM_FORMAT_NV21:
3082 case DRM_FORMAT_NV16:
3083 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02003084 case DRM_FORMAT_NV24:
3085 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02003086 case DRM_FORMAT_YUV410:
3087 case DRM_FORMAT_YVU410:
3088 case DRM_FORMAT_YUV411:
3089 case DRM_FORMAT_YVU411:
3090 case DRM_FORMAT_YUV420:
3091 case DRM_FORMAT_YVU420:
3092 case DRM_FORMAT_YUV422:
3093 case DRM_FORMAT_YVU422:
3094 case DRM_FORMAT_YUV444:
3095 case DRM_FORMAT_YVU444:
3096 return 0;
3097 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03003098 DRM_DEBUG_KMS("invalid pixel format %s\n",
3099 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02003100 return -EINVAL;
3101 }
3102}
3103
Ville Syrjäläcff91b62012-05-24 20:54:00 +03003104static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003105{
3106 int ret, hsub, vsub, num_planes, i;
3107
3108 ret = format_check(r);
3109 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03003110 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3111 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003112 return ret;
3113 }
3114
3115 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3116 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3117 num_planes = drm_format_num_planes(r->pixel_format);
3118
3119 if (r->width == 0 || r->width % hsub) {
Chuck Ebbert209f5522014-10-08 11:37:20 -05003120 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003121 return -EINVAL;
3122 }
3123
3124 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003125 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003126 return -EINVAL;
3127 }
3128
3129 for (i = 0; i < num_planes; i++) {
3130 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003131 unsigned int height = r->height / (i != 0 ? vsub : 1);
3132 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003133
3134 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003135 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003136 return -EINVAL;
3137 }
3138
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00003139 if ((uint64_t) width * cpp > UINT_MAX)
3140 return -ERANGE;
3141
3142 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3143 return -ERANGE;
3144
3145 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01003146 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003147 return -EINVAL;
3148 }
Rob Clarke3eb3252015-02-05 14:41:52 +00003149
3150 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
3151 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
3152 r->modifier[i], i);
3153 return -EINVAL;
3154 }
Rob Clark570655b2015-01-30 20:18:11 +05303155
3156 /* modifier specific checks: */
3157 switch (r->modifier[i]) {
3158 case DRM_FORMAT_MOD_SAMSUNG_64_32_TILE:
3159 /* NOTE: the pitch restriction may be lifted later if it turns
3160 * out that no hw has this restriction:
3161 */
3162 if (r->pixel_format != DRM_FORMAT_NV12 ||
3163 width % 128 || height % 32 ||
3164 r->pitches[i] % 128) {
3165 DRM_DEBUG_KMS("bad modifier data for plane %d\n", i);
3166 return -EINVAL;
3167 }
3168 break;
3169
3170 default:
3171 break;
3172 }
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003173 }
3174
Daniel Vetterbbe16a42015-05-20 16:53:53 +02003175 for (i = num_planes; i < 4; i++) {
3176 if (r->modifier[i]) {
3177 DRM_DEBUG_KMS("non-zero modifier for unused plane %d\n", i);
3178 return -EINVAL;
3179 }
3180
3181 /* Pre-FB_MODIFIERS userspace didn't clear the structs properly. */
3182 if (!(r->flags & DRM_MODE_FB_MODIFIERS))
3183 continue;
3184
3185 if (r->handles[i]) {
3186 DRM_DEBUG_KMS("buffer object handle for unused plane %d\n", i);
3187 return -EINVAL;
3188 }
3189
3190 if (r->pitches[i]) {
3191 DRM_DEBUG_KMS("non-zero pitch for unused plane %d\n", i);
3192 return -EINVAL;
3193 }
3194
3195 if (r->offsets[i]) {
3196 DRM_DEBUG_KMS("non-zero offset for unused plane %d\n", i);
3197 return -EINVAL;
3198 }
3199 }
3200
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03003201 return 0;
3202}
3203
Chris Wilson9a6f5132015-02-25 13:45:26 +00003204static struct drm_framebuffer *
3205internal_framebuffer_create(struct drm_device *dev,
3206 struct drm_mode_fb_cmd2 *r,
3207 struct drm_file *file_priv)
Matt Roperc394c2b2014-06-10 08:28:08 -07003208{
3209 struct drm_mode_config *config = &dev->mode_config;
3210 struct drm_framebuffer *fb;
3211 int ret;
3212
Rob Clarke3eb3252015-02-05 14:41:52 +00003213 if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
Matt Roperc394c2b2014-06-10 08:28:08 -07003214 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3215 return ERR_PTR(-EINVAL);
3216 }
3217
3218 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3219 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3220 r->width, config->min_width, config->max_width);
3221 return ERR_PTR(-EINVAL);
3222 }
3223 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3224 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3225 r->height, config->min_height, config->max_height);
3226 return ERR_PTR(-EINVAL);
3227 }
3228
Rob Clarke3eb3252015-02-05 14:41:52 +00003229 if (r->flags & DRM_MODE_FB_MODIFIERS &&
3230 !dev->mode_config.allow_fb_modifiers) {
3231 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
3232 return ERR_PTR(-EINVAL);
3233 }
3234
Matt Roperc394c2b2014-06-10 08:28:08 -07003235 ret = framebuffer_check(r);
3236 if (ret)
3237 return ERR_PTR(ret);
3238
3239 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3240 if (IS_ERR(fb)) {
3241 DRM_DEBUG_KMS("could not create framebuffer\n");
3242 return fb;
3243 }
3244
Matt Roperc394c2b2014-06-10 08:28:08 -07003245 return fb;
3246}
3247
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003248/**
3249 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003250 * @dev: drm device for the ioctl
3251 * @data: data pointer for the ioctl
3252 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003253 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003254 * Add a new FB to the specified CRTC, given a user request with format. This is
3255 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3256 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003257 *
3258 * Called by the user via ioctl.
3259 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003260 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003261 * Zero on success, negative errno on failure.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08003262 */
3263int drm_mode_addfb2(struct drm_device *dev,
3264 void *data, struct drm_file *file_priv)
3265{
Chris Wilson9a6f5132015-02-25 13:45:26 +00003266 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003267 struct drm_framebuffer *fb;
Dave Airlief453ba02008-11-07 14:05:41 -08003268
Dave Airliefb3b06c2011-02-08 13:55:21 +10003269 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3270 return -EINVAL;
3271
Chris Wilson9a6f5132015-02-25 13:45:26 +00003272 fb = internal_framebuffer_create(dev, r, file_priv);
Matt Roperc394c2b2014-06-10 08:28:08 -07003273 if (IS_ERR(fb))
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003274 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003275
Chris Wilson9a6f5132015-02-25 13:45:26 +00003276 /* Transfer ownership to the filp for reaping on close */
3277
3278 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3279 mutex_lock(&file_priv->fbs_lock);
3280 r->fb_id = fb->base.id;
3281 list_add(&fb->filp_head, &file_priv->fbs);
3282 mutex_unlock(&file_priv->fbs_lock);
3283
Matt Roperc394c2b2014-06-10 08:28:08 -07003284 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08003285}
3286
3287/**
3288 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003289 * @dev: drm device for the ioctl
3290 * @data: data pointer for the ioctl
3291 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003292 *
Dave Airlief453ba02008-11-07 14:05:41 -08003293 * Remove the FB specified by the user.
3294 *
3295 * Called by the user via ioctl.
3296 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003297 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003298 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003299 */
3300int drm_mode_rmfb(struct drm_device *dev,
3301 void *data, struct drm_file *file_priv)
3302{
Dave Airlief453ba02008-11-07 14:05:41 -08003303 struct drm_framebuffer *fb = NULL;
3304 struct drm_framebuffer *fbl = NULL;
3305 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003306 int found = 0;
3307
Dave Airliefb3b06c2011-02-08 13:55:21 +10003308 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3309 return -EINVAL;
3310
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003311 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003312 mutex_lock(&dev->mode_config.fb_lock);
3313 fb = __drm_framebuffer_lookup(dev, *id);
3314 if (!fb)
3315 goto fail_lookup;
3316
Dave Airlief453ba02008-11-07 14:05:41 -08003317 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3318 if (fb == fbl)
3319 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01003320 if (!found)
3321 goto fail_lookup;
3322
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003323 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003324 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003325 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003326
Maarten Lankhorst13803132015-09-09 16:40:56 +02003327 drm_framebuffer_unreference(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003328
Daniel Vetter2b677e82012-12-10 21:16:05 +01003329 return 0;
3330
3331fail_lookup:
3332 mutex_unlock(&dev->mode_config.fb_lock);
3333 mutex_unlock(&file_priv->fbs_lock);
3334
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003335 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003336}
3337
3338/**
3339 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003340 * @dev: drm device for the ioctl
3341 * @data: data pointer for the ioctl
3342 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08003343 *
Dave Airlief453ba02008-11-07 14:05:41 -08003344 * Lookup the FB given its ID and return info about it.
3345 *
3346 * Called by the user via ioctl.
3347 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003348 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003349 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003350 */
3351int drm_mode_getfb(struct drm_device *dev,
3352 void *data, struct drm_file *file_priv)
3353{
3354 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003355 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003356 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003357
Dave Airliefb3b06c2011-02-08 13:55:21 +10003358 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3359 return -EINVAL;
3360
Daniel Vetter786b99e2012-12-02 21:53:40 +01003361 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003362 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003363 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003364
3365 r->height = fb->height;
3366 r->width = fb->width;
3367 r->depth = fb->depth;
3368 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003369 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003370 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003371 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003372 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003373 ret = fb->funcs->create_handle(fb, file_priv,
3374 &r->handle);
3375 } else {
3376 /* GET_FB() is an unprivileged ioctl so we must not
3377 * return a buffer-handle to non-master processes! For
3378 * backwards-compatibility reasons, we cannot make
3379 * GET_FB() privileged, so just return an invalid handle
3380 * for non-masters. */
3381 r->handle = 0;
3382 ret = 0;
3383 }
3384 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003385 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003386 }
Dave Airlief453ba02008-11-07 14:05:41 -08003387
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003388 drm_framebuffer_unreference(fb);
3389
Dave Airlief453ba02008-11-07 14:05:41 -08003390 return ret;
3391}
3392
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003393/**
3394 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3395 * @dev: drm device for the ioctl
3396 * @data: data pointer for the ioctl
3397 * @file_priv: drm file for the ioctl call
3398 *
3399 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3400 * rectangle list. Generic userspace which does frontbuffer rendering must call
3401 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3402 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3403 *
3404 * Modesetting drivers which always update the frontbuffer do not need to
3405 * implement the corresponding ->dirty framebuffer callback.
3406 *
3407 * Called by the user via ioctl.
3408 *
3409 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003410 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003411 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003412int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3413 void *data, struct drm_file *file_priv)
3414{
3415 struct drm_clip_rect __user *clips_ptr;
3416 struct drm_clip_rect *clips = NULL;
3417 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003418 struct drm_framebuffer *fb;
3419 unsigned flags;
3420 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003421 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003422
Dave Airliefb3b06c2011-02-08 13:55:21 +10003423 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3424 return -EINVAL;
3425
Daniel Vetter786b99e2012-12-02 21:53:40 +01003426 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003427 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003428 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003429
3430 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003431 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003432
3433 if (!num_clips != !clips_ptr) {
3434 ret = -EINVAL;
3435 goto out_err1;
3436 }
3437
3438 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3439
3440 /* If userspace annotates copy, clips must come in pairs */
3441 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3442 ret = -EINVAL;
3443 goto out_err1;
3444 }
3445
3446 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003447 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3448 ret = -EINVAL;
3449 goto out_err1;
3450 }
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003451 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003452 if (!clips) {
3453 ret = -ENOMEM;
3454 goto out_err1;
3455 }
3456
3457 ret = copy_from_user(clips, clips_ptr,
3458 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003459 if (ret) {
3460 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003461 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003462 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003463 }
3464
3465 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003466 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3467 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003468 } else {
3469 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003470 }
3471
3472out_err2:
3473 kfree(clips);
3474out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003475 drm_framebuffer_unreference(fb);
3476
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003477 return ret;
3478}
3479
3480
Dave Airlief453ba02008-11-07 14:05:41 -08003481/**
3482 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003483 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003484 *
Dave Airlief453ba02008-11-07 14:05:41 -08003485 * Destroy all the FBs associated with @filp.
3486 *
3487 * Called by the user via ioctl.
3488 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003489 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01003490 * Zero on success, negative errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08003491 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003492void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003493{
Dave Airlief453ba02008-11-07 14:05:41 -08003494 struct drm_framebuffer *fb, *tfb;
3495
Daniel Vetter1b116292014-09-24 21:51:06 +02003496 /*
3497 * When the file gets released that means no one else can access the fb
Martin Perese2db7262014-12-09 07:24:04 +01003498 * list any more, so no need to grab fpriv->fbs_lock. And we need to
Daniel Vetter1b116292014-09-24 21:51:06 +02003499 * avoid upsetting lockdep since the universal cursor code adds a
3500 * framebuffer while holding mutex locks.
3501 *
3502 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3503 * locks is impossible here since no one else but this function can get
3504 * at it any more.
3505 */
Dave Airlief453ba02008-11-07 14:05:41 -08003506 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003507 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003508
Maarten Lankhorst73f75702015-09-09 16:40:57 +02003509 /* This drops the fpriv->fbs reference. */
Maarten Lankhorst13803132015-09-09 16:40:56 +02003510 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003511 }
Dave Airlief453ba02008-11-07 14:05:41 -08003512}
3513
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003514/**
3515 * drm_property_create - create a new property type
3516 * @dev: drm device
3517 * @flags: flags specifying the property type
3518 * @name: name of the property
3519 * @num_values: number of pre-defined values
3520 *
3521 * This creates a new generic drm property which can then be attached to a drm
3522 * object with drm_object_attach_property. The returned property object must be
3523 * freed with drm_property_destroy.
3524 *
Damien Lespiau3b5b9932014-10-31 14:39:11 +00003525 * Note that the DRM core keeps a per-device list of properties and that, if
3526 * drm_mode_config_cleanup() is called, it will destroy all properties created
3527 * by the driver.
3528 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003529 * Returns:
3530 * A pointer to the newly created property on success, NULL on failure.
3531 */
Dave Airlief453ba02008-11-07 14:05:41 -08003532struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3533 const char *name, int num_values)
3534{
3535 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003536 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003537
3538 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3539 if (!property)
3540 return NULL;
3541
Rob Clark98f75de2014-05-30 11:37:03 -04003542 property->dev = dev;
3543
Dave Airlief453ba02008-11-07 14:05:41 -08003544 if (num_values) {
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01003545 property->values = kcalloc(num_values, sizeof(uint64_t),
3546 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08003547 if (!property->values)
3548 goto fail;
3549 }
3550
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003551 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3552 if (ret)
3553 goto fail;
3554
Dave Airlief453ba02008-11-07 14:05:41 -08003555 property->flags = flags;
3556 property->num_values = num_values;
Daniel Vetter3758b342014-11-19 18:38:10 +01003557 INIT_LIST_HEAD(&property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003558
Vinson Lee471dd2e2011-11-10 11:55:40 -08003559 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003560 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003561 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3562 }
Dave Airlief453ba02008-11-07 14:05:41 -08003563
3564 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003565
3566 WARN_ON(!drm_property_type_valid(property));
3567
Dave Airlief453ba02008-11-07 14:05:41 -08003568 return property;
3569fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003570 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003571 kfree(property);
3572 return NULL;
3573}
3574EXPORT_SYMBOL(drm_property_create);
3575
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003576/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003577 * drm_property_create_enum - create a new enumeration property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003578 * @dev: drm device
3579 * @flags: flags specifying the property type
3580 * @name: name of the property
3581 * @props: enumeration lists with property values
3582 * @num_values: number of pre-defined values
3583 *
3584 * This creates a new generic drm property which can then be attached to a drm
3585 * object with drm_object_attach_property. The returned property object must be
3586 * freed with drm_property_destroy.
3587 *
3588 * Userspace is only allowed to set one of the predefined values for enumeration
3589 * properties.
3590 *
3591 * Returns:
3592 * A pointer to the newly created property on success, NULL on failure.
3593 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003594struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3595 const char *name,
3596 const struct drm_prop_enum_list *props,
3597 int num_values)
3598{
3599 struct drm_property *property;
3600 int i, ret;
3601
3602 flags |= DRM_MODE_PROP_ENUM;
3603
3604 property = drm_property_create(dev, flags, name, num_values);
3605 if (!property)
3606 return NULL;
3607
3608 for (i = 0; i < num_values; i++) {
3609 ret = drm_property_add_enum(property, i,
3610 props[i].type,
3611 props[i].name);
3612 if (ret) {
3613 drm_property_destroy(dev, property);
3614 return NULL;
3615 }
3616 }
3617
3618 return property;
3619}
3620EXPORT_SYMBOL(drm_property_create_enum);
3621
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003622/**
Thierry Reding2aa9d2b2014-06-26 21:37:20 +02003623 * drm_property_create_bitmask - create a new bitmask property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003624 * @dev: drm device
3625 * @flags: flags specifying the property type
3626 * @name: name of the property
3627 * @props: enumeration lists with property bitflags
Daniel Vetter295ee852014-07-30 14:23:44 +02003628 * @num_props: size of the @props array
3629 * @supported_bits: bitmask of all supported enumeration values
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003630 *
Daniel Vetter295ee852014-07-30 14:23:44 +02003631 * This creates a new bitmask drm property which can then be attached to a drm
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003632 * object with drm_object_attach_property. The returned property object must be
3633 * freed with drm_property_destroy.
3634 *
3635 * Compared to plain enumeration properties userspace is allowed to set any
3636 * or'ed together combination of the predefined property bitflag values
3637 *
3638 * Returns:
3639 * A pointer to the newly created property on success, NULL on failure.
3640 */
Rob Clark49e27542012-05-17 02:23:26 -06003641struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3642 int flags, const char *name,
3643 const struct drm_prop_enum_list *props,
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303644 int num_props,
3645 uint64_t supported_bits)
Rob Clark49e27542012-05-17 02:23:26 -06003646{
3647 struct drm_property *property;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303648 int i, ret, index = 0;
3649 int num_values = hweight64(supported_bits);
Rob Clark49e27542012-05-17 02:23:26 -06003650
3651 flags |= DRM_MODE_PROP_BITMASK;
3652
3653 property = drm_property_create(dev, flags, name, num_values);
3654 if (!property)
3655 return NULL;
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303656 for (i = 0; i < num_props; i++) {
3657 if (!(supported_bits & (1ULL << props[i].type)))
3658 continue;
Rob Clark49e27542012-05-17 02:23:26 -06003659
Ville Syrjälä7689ffb2014-07-08 10:31:52 +05303660 if (WARN_ON(index >= num_values)) {
3661 drm_property_destroy(dev, property);
3662 return NULL;
3663 }
3664
3665 ret = drm_property_add_enum(property, index++,
Rob Clark49e27542012-05-17 02:23:26 -06003666 props[i].type,
3667 props[i].name);
3668 if (ret) {
3669 drm_property_destroy(dev, property);
3670 return NULL;
3671 }
3672 }
3673
3674 return property;
3675}
3676EXPORT_SYMBOL(drm_property_create_bitmask);
3677
Rob Clarkebc44cf2012-09-12 22:22:31 -05003678static struct drm_property *property_create_range(struct drm_device *dev,
3679 int flags, const char *name,
3680 uint64_t min, uint64_t max)
3681{
3682 struct drm_property *property;
3683
3684 property = drm_property_create(dev, flags, name, 2);
3685 if (!property)
3686 return NULL;
3687
3688 property->values[0] = min;
3689 property->values[1] = max;
3690
3691 return property;
3692}
3693
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003694/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003695 * drm_property_create_range - create a new unsigned ranged property type
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003696 * @dev: drm device
3697 * @flags: flags specifying the property type
3698 * @name: name of the property
3699 * @min: minimum value of the property
3700 * @max: maximum value of the property
3701 *
3702 * This creates a new generic drm property which can then be attached to a drm
3703 * object with drm_object_attach_property. The returned property object must be
3704 * freed with drm_property_destroy.
3705 *
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003706 * Userspace is allowed to set any unsigned integer value in the (min, max)
3707 * range inclusive.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003708 *
3709 * Returns:
3710 * A pointer to the newly created property on success, NULL on failure.
3711 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003712struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3713 const char *name,
3714 uint64_t min, uint64_t max)
3715{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003716 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3717 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003718}
3719EXPORT_SYMBOL(drm_property_create_range);
3720
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003721/**
3722 * drm_property_create_signed_range - create a new signed ranged property type
3723 * @dev: drm device
3724 * @flags: flags specifying the property type
3725 * @name: name of the property
3726 * @min: minimum value of the property
3727 * @max: maximum value of the property
3728 *
3729 * This creates a new generic drm property which can then be attached to a drm
3730 * object with drm_object_attach_property. The returned property object must be
3731 * freed with drm_property_destroy.
3732 *
3733 * Userspace is allowed to set any signed integer value in the (min, max)
3734 * range inclusive.
3735 *
3736 * Returns:
3737 * A pointer to the newly created property on success, NULL on failure.
3738 */
Rob Clarkebc44cf2012-09-12 22:22:31 -05003739struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3740 int flags, const char *name,
3741 int64_t min, int64_t max)
3742{
3743 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3744 name, I642U64(min), I642U64(max));
3745}
3746EXPORT_SYMBOL(drm_property_create_signed_range);
3747
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003748/**
3749 * drm_property_create_object - create a new object property type
3750 * @dev: drm device
3751 * @flags: flags specifying the property type
3752 * @name: name of the property
3753 * @type: object type from DRM_MODE_OBJECT_* defines
3754 *
3755 * This creates a new generic drm property which can then be attached to a drm
3756 * object with drm_object_attach_property. The returned property object must be
3757 * freed with drm_property_destroy.
3758 *
3759 * Userspace is only allowed to set this to any property value of the given
3760 * @type. Only useful for atomic properties, which is enforced.
3761 *
3762 * Returns:
3763 * A pointer to the newly created property on success, NULL on failure.
3764 */
Rob Clark98f75de2014-05-30 11:37:03 -04003765struct drm_property *drm_property_create_object(struct drm_device *dev,
3766 int flags, const char *name, uint32_t type)
3767{
3768 struct drm_property *property;
3769
3770 flags |= DRM_MODE_PROP_OBJECT;
3771
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003772 if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
3773 return NULL;
3774
Rob Clark98f75de2014-05-30 11:37:03 -04003775 property = drm_property_create(dev, flags, name, 1);
3776 if (!property)
3777 return NULL;
3778
3779 property->values[0] = type;
3780
3781 return property;
3782}
3783EXPORT_SYMBOL(drm_property_create_object);
3784
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003785/**
Daniel Vetter960cd9d2015-01-21 08:47:38 +01003786 * drm_property_create_bool - create a new boolean property type
3787 * @dev: drm device
3788 * @flags: flags specifying the property type
3789 * @name: name of the property
3790 *
3791 * This creates a new generic drm property which can then be attached to a drm
3792 * object with drm_object_attach_property. The returned property object must be
3793 * freed with drm_property_destroy.
3794 *
3795 * This is implemented as a ranged property with only {0, 1} as valid values.
3796 *
3797 * Returns:
3798 * A pointer to the newly created property on success, NULL on failure.
3799 */
3800struct drm_property *drm_property_create_bool(struct drm_device *dev, int flags,
3801 const char *name)
3802{
3803 return drm_property_create_range(dev, flags, name, 0, 1);
3804}
3805EXPORT_SYMBOL(drm_property_create_bool);
3806
3807/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003808 * drm_property_add_enum - add a possible value to an enumeration property
3809 * @property: enumeration property to change
3810 * @index: index of the new enumeration
3811 * @value: value of the new enumeration
3812 * @name: symbolic name of the new enumeration
3813 *
3814 * This functions adds enumerations to a property.
3815 *
3816 * It's use is deprecated, drivers should use one of the more specific helpers
3817 * to directly create the property with all enumerations already attached.
3818 *
3819 * Returns:
3820 * Zero on success, error code on failure.
3821 */
Dave Airlief453ba02008-11-07 14:05:41 -08003822int drm_property_add_enum(struct drm_property *property, int index,
3823 uint64_t value, const char *name)
3824{
3825 struct drm_property_enum *prop_enum;
3826
Rob Clark5ea22f22014-05-30 11:34:01 -04003827 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3828 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003829 return -EINVAL;
3830
3831 /*
3832 * Bitmask enum properties have the additional constraint of values
3833 * from 0 to 63
3834 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003835 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3836 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003837 return -EINVAL;
3838
Daniel Vetter3758b342014-11-19 18:38:10 +01003839 if (!list_empty(&property->enum_list)) {
3840 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003841 if (prop_enum->value == value) {
3842 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3843 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3844 return 0;
3845 }
3846 }
3847 }
3848
3849 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3850 if (!prop_enum)
3851 return -ENOMEM;
3852
3853 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3854 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3855 prop_enum->value = value;
3856
3857 property->values[index] = value;
Daniel Vetter3758b342014-11-19 18:38:10 +01003858 list_add_tail(&prop_enum->head, &property->enum_list);
Dave Airlief453ba02008-11-07 14:05:41 -08003859 return 0;
3860}
3861EXPORT_SYMBOL(drm_property_add_enum);
3862
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003863/**
3864 * drm_property_destroy - destroy a drm property
3865 * @dev: drm device
3866 * @property: property to destry
3867 *
3868 * This function frees a property including any attached resources like
3869 * enumeration values.
3870 */
Dave Airlief453ba02008-11-07 14:05:41 -08003871void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3872{
3873 struct drm_property_enum *prop_enum, *pt;
3874
Daniel Vetter3758b342014-11-19 18:38:10 +01003875 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08003876 list_del(&prop_enum->head);
3877 kfree(prop_enum);
3878 }
3879
3880 if (property->num_values)
3881 kfree(property->values);
3882 drm_mode_object_put(dev, &property->base);
3883 list_del(&property->head);
3884 kfree(property);
3885}
3886EXPORT_SYMBOL(drm_property_destroy);
3887
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003888/**
3889 * drm_object_attach_property - attach a property to a modeset object
3890 * @obj: drm modeset object
3891 * @property: property to attach
3892 * @init_val: initial value of the property
3893 *
3894 * This attaches the given property to the modeset object with the given initial
3895 * value. Currently this function cannot fail since the properties are stored in
3896 * a statically sized array.
3897 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003898void drm_object_attach_property(struct drm_mode_object *obj,
3899 struct drm_property *property,
3900 uint64_t init_val)
3901{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003902 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003903
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003904 if (count == DRM_OBJECT_MAX_PROPERTY) {
3905 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3906 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3907 "you see this message on the same object type.\n",
3908 obj->type);
3909 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03003910 }
3911
Rob Clarkb17cd752014-12-16 18:05:30 -05003912 obj->properties->properties[count] = property;
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003913 obj->properties->values[count] = init_val;
3914 obj->properties->count++;
Rob Clark88a48e22014-12-18 16:01:50 -05003915 if (property->flags & DRM_MODE_PROP_ATOMIC)
3916 obj->properties->atomic_count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03003917}
3918EXPORT_SYMBOL(drm_object_attach_property);
3919
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003920/**
3921 * drm_object_property_set_value - set the value of a property
3922 * @obj: drm mode object to set property value for
3923 * @property: property to set
3924 * @val: value the property should be set to
3925 *
3926 * This functions sets a given property on a given object. This function only
3927 * changes the software state of the property, it does not call into the
3928 * driver's ->set_property callback.
3929 *
3930 * Returns:
3931 * Zero on success, error code on failure.
3932 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003933int drm_object_property_set_value(struct drm_mode_object *obj,
3934 struct drm_property *property, uint64_t val)
3935{
3936 int i;
3937
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003938 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05003939 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003940 obj->properties->values[i] = val;
3941 return 0;
3942 }
3943 }
3944
3945 return -EINVAL;
3946}
3947EXPORT_SYMBOL(drm_object_property_set_value);
3948
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003949/**
3950 * drm_object_property_get_value - retrieve the value of a property
3951 * @obj: drm mode object to get property value from
3952 * @property: property to retrieve
3953 * @val: storage for the property value
3954 *
3955 * This function retrieves the softare state of the given property for the given
3956 * property. Since there is no driver callback to retrieve the current property
3957 * value this might be out of sync with the hardware, depending upon the driver
3958 * and property.
3959 *
3960 * Returns:
3961 * Zero on success, error code on failure.
3962 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003963int drm_object_property_get_value(struct drm_mode_object *obj,
3964 struct drm_property *property, uint64_t *val)
3965{
3966 int i;
3967
Rob Clark88a48e22014-12-18 16:01:50 -05003968 /* read-only properties bypass atomic mechanism and still store
3969 * their value in obj->properties->values[].. mostly to avoid
3970 * having to deal w/ EDID and similar props in atomic paths:
3971 */
3972 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
3973 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
3974 return drm_atomic_get_property(obj, property, val);
3975
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003976 for (i = 0; i < obj->properties->count; i++) {
Rob Clarkb17cd752014-12-16 18:05:30 -05003977 if (obj->properties->properties[i] == property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003978 *val = obj->properties->values[i];
3979 return 0;
3980 }
3981 }
3982
3983 return -EINVAL;
3984}
3985EXPORT_SYMBOL(drm_object_property_get_value);
3986
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003987/**
Daniel Vetter1a498632014-11-19 18:38:09 +01003988 * drm_mode_getproperty_ioctl - get the property metadata
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003989 * @dev: DRM device
3990 * @data: ioctl data
3991 * @file_priv: DRM file info
3992 *
Daniel Vetter1a498632014-11-19 18:38:09 +01003993 * This function retrieves the metadata for a given property, like the different
3994 * possible values for an enum property or the limits for a range property.
3995 *
3996 * Blob properties are special
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003997 *
3998 * Called by the user via ioctl.
3999 *
4000 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004001 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004002 */
Dave Airlief453ba02008-11-07 14:05:41 -08004003int drm_mode_getproperty_ioctl(struct drm_device *dev,
4004 void *data, struct drm_file *file_priv)
4005{
Dave Airlief453ba02008-11-07 14:05:41 -08004006 struct drm_mode_get_property *out_resp = data;
4007 struct drm_property *property;
4008 int enum_count = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004009 int value_count = 0;
4010 int ret = 0, i;
4011 int copied;
4012 struct drm_property_enum *prop_enum;
4013 struct drm_mode_property_enum __user *enum_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004014 uint64_t __user *values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004015
Dave Airliefb3b06c2011-02-08 13:55:21 +10004016 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4017 return -EINVAL;
4018
Daniel Vetter84849902012-12-02 00:28:11 +01004019 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004020 property = drm_property_find(dev, out_resp->prop_id);
4021 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004022 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004023 goto done;
4024 }
Dave Airlief453ba02008-11-07 14:05:41 -08004025
Rob Clark5ea22f22014-05-30 11:34:01 -04004026 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4027 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Daniel Vetter3758b342014-11-19 18:38:10 +01004028 list_for_each_entry(prop_enum, &property->enum_list, head)
Dave Airlief453ba02008-11-07 14:05:41 -08004029 enum_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08004030 }
4031
4032 value_count = property->num_values;
4033
4034 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
4035 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
4036 out_resp->flags = property->flags;
4037
4038 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004039 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004040 for (i = 0; i < value_count; i++) {
4041 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
4042 ret = -EFAULT;
4043 goto done;
4044 }
4045 }
4046 }
4047 out_resp->count_values = value_count;
4048
Rob Clark5ea22f22014-05-30 11:34:01 -04004049 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
4050 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004051 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
4052 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004053 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Daniel Vetter3758b342014-11-19 18:38:10 +01004054 list_for_each_entry(prop_enum, &property->enum_list, head) {
Dave Airlief453ba02008-11-07 14:05:41 -08004055
4056 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
4057 ret = -EFAULT;
4058 goto done;
4059 }
4060
4061 if (copy_to_user(&enum_ptr[copied].name,
4062 &prop_enum->name, DRM_PROP_NAME_LEN)) {
4063 ret = -EFAULT;
4064 goto done;
4065 }
4066 copied++;
4067 }
4068 }
4069 out_resp->count_enum_blobs = enum_count;
4070 }
4071
Daniel Vetter3758b342014-11-19 18:38:10 +01004072 /*
4073 * NOTE: The idea seems to have been to use this to read all the blob
4074 * property values. But nothing ever added them to the corresponding
4075 * list, userspace always used the special-purpose get_blob ioctl to
4076 * read the value for a blob property. It also doesn't make a lot of
4077 * sense to return values here when everything else is just metadata for
4078 * the property itself.
4079 */
4080 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4081 out_resp->count_enum_blobs = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004082done:
Daniel Vetter84849902012-12-02 00:28:11 +01004083 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004084 return ret;
4085}
4086
Daniel Stone99531d92015-05-22 13:34:49 +01004087/**
4088 * drm_property_create_blob - Create new blob property
4089 *
4090 * Creates a new blob property for a specified DRM device, optionally
4091 * copying data.
4092 *
4093 * @dev: DRM device to create property for
4094 * @length: Length to allocate for blob data
4095 * @data: If specified, copies data into blob
Daniel Stone10e8cb72015-05-22 13:34:50 +01004096 *
4097 * Returns:
4098 * New blob property with a single reference on success, or an ERR_PTR
4099 * value on failure.
Daniel Stone99531d92015-05-22 13:34:49 +01004100 */
Daniel Stone6bcacf52015-04-20 19:22:55 +01004101struct drm_property_blob *
Thierry Redingecbbe592014-05-13 11:36:13 +02004102drm_property_create_blob(struct drm_device *dev, size_t length,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004103 const void *data)
Dave Airlief453ba02008-11-07 14:05:41 -08004104{
4105 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02004106 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004107
Daniel Stone99531d92015-05-22 13:34:49 +01004108 if (!length)
Daniel Stone10e8cb72015-05-22 13:34:50 +01004109 return ERR_PTR(-EINVAL);
Dave Airlief453ba02008-11-07 14:05:41 -08004110
4111 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
4112 if (!blob)
Daniel Stone10e8cb72015-05-22 13:34:50 +01004113 return ERR_PTR(-ENOMEM);
Dave Airlief453ba02008-11-07 14:05:41 -08004114
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004115 /* This must be explicitly initialised, so we can safely call list_del
4116 * on it in the removal handler, even if it isn't in a file list. */
4117 INIT_LIST_HEAD(&blob->head_file);
Dave Airlief453ba02008-11-07 14:05:41 -08004118 blob->length = length;
Daniel Stone6bcacf52015-04-20 19:22:55 +01004119 blob->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08004120
Daniel Stone99531d92015-05-22 13:34:49 +01004121 if (data)
4122 memcpy(blob->data, data, length);
Dave Airlief453ba02008-11-07 14:05:41 -08004123
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004124 mutex_lock(&dev->mode_config.blob_lock);
4125
4126 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
4127 if (ret) {
4128 kfree(blob);
4129 mutex_unlock(&dev->mode_config.blob_lock);
Daniel Stone10e8cb72015-05-22 13:34:50 +01004130 return ERR_PTR(-EINVAL);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004131 }
4132
Daniel Stone6bcacf52015-04-20 19:22:55 +01004133 kref_init(&blob->refcount);
4134
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004135 list_add_tail(&blob->head_global,
4136 &dev->mode_config.property_blob_list);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004137
4138 mutex_unlock(&dev->mode_config.blob_lock);
4139
Dave Airlief453ba02008-11-07 14:05:41 -08004140 return blob;
4141}
Daniel Stone6bcacf52015-04-20 19:22:55 +01004142EXPORT_SYMBOL(drm_property_create_blob);
Dave Airlief453ba02008-11-07 14:05:41 -08004143
Daniel Stone6bcacf52015-04-20 19:22:55 +01004144/**
4145 * drm_property_free_blob - Blob property destructor
4146 *
4147 * Internal free function for blob properties; must not be used directly.
4148 *
Daniel Stonef102c162015-05-22 13:34:44 +01004149 * @kref: Reference
Daniel Stone6bcacf52015-04-20 19:22:55 +01004150 */
4151static void drm_property_free_blob(struct kref *kref)
Dave Airlief453ba02008-11-07 14:05:41 -08004152{
Daniel Stone6bcacf52015-04-20 19:22:55 +01004153 struct drm_property_blob *blob =
4154 container_of(kref, struct drm_property_blob, refcount);
4155
4156 WARN_ON(!mutex_is_locked(&blob->dev->mode_config.blob_lock));
4157
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004158 list_del(&blob->head_global);
4159 list_del(&blob->head_file);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004160 drm_mode_object_put(blob->dev, &blob->base);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004161
Dave Airlief453ba02008-11-07 14:05:41 -08004162 kfree(blob);
4163}
4164
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004165/**
Daniel Stone6bcacf52015-04-20 19:22:55 +01004166 * drm_property_unreference_blob - Unreference a blob property
4167 *
4168 * Drop a reference on a blob property. May free the object.
4169 *
Daniel Stonef102c162015-05-22 13:34:44 +01004170 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004171 */
4172void drm_property_unreference_blob(struct drm_property_blob *blob)
4173{
4174 struct drm_device *dev;
4175
4176 if (!blob)
4177 return;
4178
4179 dev = blob->dev;
4180
4181 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4182
4183 if (kref_put_mutex(&blob->refcount, drm_property_free_blob,
4184 &dev->mode_config.blob_lock))
4185 mutex_unlock(&dev->mode_config.blob_lock);
4186 else
4187 might_lock(&dev->mode_config.blob_lock);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004188}
4189EXPORT_SYMBOL(drm_property_unreference_blob);
4190
4191/**
4192 * drm_property_unreference_blob_locked - Unreference a blob property with blob_lock held
4193 *
4194 * Drop a reference on a blob property. May free the object. This must be
4195 * called with blob_lock held.
4196 *
Daniel Stonef102c162015-05-22 13:34:44 +01004197 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004198 */
4199static void drm_property_unreference_blob_locked(struct drm_property_blob *blob)
4200{
4201 if (!blob)
4202 return;
4203
4204 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4205
4206 kref_put(&blob->refcount, drm_property_free_blob);
4207}
4208
4209/**
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004210 * drm_property_destroy_user_blobs - destroy all blobs created by this client
4211 * @dev: DRM device
4212 * @file_priv: destroy all blobs owned by this file handle
4213 */
4214void drm_property_destroy_user_blobs(struct drm_device *dev,
4215 struct drm_file *file_priv)
4216{
4217 struct drm_property_blob *blob, *bt;
4218
4219 mutex_lock(&dev->mode_config.blob_lock);
4220
4221 list_for_each_entry_safe(blob, bt, &file_priv->blobs, head_file) {
4222 list_del_init(&blob->head_file);
4223 drm_property_unreference_blob_locked(blob);
4224 }
4225
4226 mutex_unlock(&dev->mode_config.blob_lock);
4227}
4228
4229/**
Daniel Stone6bcacf52015-04-20 19:22:55 +01004230 * drm_property_reference_blob - Take a reference on an existing property
4231 *
4232 * Take a new reference on an existing blob property.
4233 *
Daniel Stonef102c162015-05-22 13:34:44 +01004234 * @blob: Pointer to blob property
Daniel Stone6bcacf52015-04-20 19:22:55 +01004235 */
4236struct drm_property_blob *drm_property_reference_blob(struct drm_property_blob *blob)
4237{
4238 DRM_DEBUG("%p: blob ID: %d (%d)\n", blob, blob->base.id, atomic_read(&blob->refcount.refcount));
4239 kref_get(&blob->refcount);
4240 return blob;
4241}
4242EXPORT_SYMBOL(drm_property_reference_blob);
4243
4244/*
4245 * Like drm_property_lookup_blob, but does not return an additional reference.
4246 * Must be called with blob_lock held.
4247 */
4248static struct drm_property_blob *__drm_property_lookup_blob(struct drm_device *dev,
4249 uint32_t id)
4250{
4251 struct drm_mode_object *obj = NULL;
4252 struct drm_property_blob *blob;
4253
4254 WARN_ON(!mutex_is_locked(&dev->mode_config.blob_lock));
4255
4256 mutex_lock(&dev->mode_config.idr_mutex);
4257 obj = idr_find(&dev->mode_config.crtc_idr, id);
4258 if (!obj || (obj->type != DRM_MODE_OBJECT_BLOB) || (obj->id != id))
4259 blob = NULL;
4260 else
4261 blob = obj_to_blob(obj);
4262 mutex_unlock(&dev->mode_config.idr_mutex);
4263
Dave Airlief453ba02008-11-07 14:05:41 -08004264 return blob;
4265}
4266
Daniel Stone6bcacf52015-04-20 19:22:55 +01004267/**
4268 * drm_property_lookup_blob - look up a blob property and take a reference
4269 * @dev: drm device
4270 * @id: id of the blob property
4271 *
4272 * If successful, this takes an additional reference to the blob property.
4273 * callers need to make sure to eventually unreference the returned property
4274 * again, using @drm_property_unreference_blob.
4275 */
4276struct drm_property_blob *drm_property_lookup_blob(struct drm_device *dev,
4277 uint32_t id)
Dave Airlief453ba02008-11-07 14:05:41 -08004278{
Daniel Stone6bcacf52015-04-20 19:22:55 +01004279 struct drm_property_blob *blob;
4280
4281 mutex_lock(&dev->mode_config.blob_lock);
4282 blob = __drm_property_lookup_blob(dev, id);
4283 if (blob) {
4284 if (!kref_get_unless_zero(&blob->refcount))
4285 blob = NULL;
4286 }
4287 mutex_unlock(&dev->mode_config.blob_lock);
4288
4289 return blob;
4290}
4291EXPORT_SYMBOL(drm_property_lookup_blob);
4292
4293/**
Daniel Stoned2ed3432015-04-20 19:22:53 +01004294 * drm_property_replace_global_blob - atomically replace existing blob property
4295 * @dev: drm device
4296 * @replace: location of blob property pointer to be replaced
4297 * @length: length of data for new blob, or 0 for no data
4298 * @data: content for new blob, or NULL for no data
4299 * @obj_holds_id: optional object for property holding blob ID
4300 * @prop_holds_id: optional property holding blob ID
4301 * @return 0 on success or error on failure
4302 *
4303 * This function will atomically replace a global property in the blob list,
4304 * optionally updating a property which holds the ID of that property. It is
4305 * guaranteed to be atomic: no caller will be allowed to see intermediate
4306 * results, and either the entire operation will succeed and clean up the
4307 * previous property, or it will fail and the state will be unchanged.
4308 *
4309 * If length is 0 or data is NULL, no new blob will be created, and the holding
4310 * property, if specified, will be set to 0.
4311 *
4312 * Access to the replace pointer is assumed to be protected by the caller, e.g.
4313 * by holding the relevant modesetting object lock for its parent.
4314 *
4315 * For example, a drm_connector has a 'PATH' property, which contains the ID
4316 * of a blob property with the value of the MST path information. Calling this
4317 * function with replace pointing to the connector's path_blob_ptr, length and
4318 * data set for the new path information, obj_holds_id set to the connector's
4319 * base object, and prop_holds_id set to the path property name, will perform
4320 * a completely atomic update. The access to path_blob_ptr is protected by the
4321 * caller holding a lock on the connector.
4322 */
4323static int drm_property_replace_global_blob(struct drm_device *dev,
4324 struct drm_property_blob **replace,
4325 size_t length,
4326 const void *data,
4327 struct drm_mode_object *obj_holds_id,
4328 struct drm_property *prop_holds_id)
4329{
4330 struct drm_property_blob *new_blob = NULL;
4331 struct drm_property_blob *old_blob = NULL;
4332 int ret;
4333
4334 WARN_ON(replace == NULL);
4335
4336 old_blob = *replace;
4337
4338 if (length && data) {
4339 new_blob = drm_property_create_blob(dev, length, data);
Daniel Stone10e8cb72015-05-22 13:34:50 +01004340 if (IS_ERR(new_blob))
4341 return PTR_ERR(new_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004342 }
4343
4344 /* This does not need to be synchronised with blob_lock, as the
4345 * get_properties ioctl locks all modesetting objects, and
4346 * obj_holds_id must be locked before calling here, so we cannot
4347 * have its value out of sync with the list membership modified
4348 * below under blob_lock. */
4349 if (obj_holds_id) {
4350 ret = drm_object_property_set_value(obj_holds_id,
4351 prop_holds_id,
4352 new_blob ?
4353 new_blob->base.id : 0);
4354 if (ret != 0)
4355 goto err_created;
4356 }
4357
Markus Elfringec530822015-07-05 21:55:10 +02004358 drm_property_unreference_blob(old_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004359 *replace = new_blob;
4360
4361 return 0;
4362
4363err_created:
Daniel Stone6bcacf52015-04-20 19:22:55 +01004364 drm_property_unreference_blob(new_blob);
Daniel Stoned2ed3432015-04-20 19:22:53 +01004365 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004366}
4367
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004368/**
4369 * drm_mode_getblob_ioctl - get the contents of a blob property value
4370 * @dev: DRM device
4371 * @data: ioctl data
4372 * @file_priv: DRM file info
4373 *
4374 * This function retrieves the contents of a blob property. The value stored in
4375 * an object's blob property is just a normal modeset object id.
4376 *
4377 * Called by the user via ioctl.
4378 *
4379 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004380 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004381 */
Dave Airlief453ba02008-11-07 14:05:41 -08004382int drm_mode_getblob_ioctl(struct drm_device *dev,
4383 void *data, struct drm_file *file_priv)
4384{
Dave Airlief453ba02008-11-07 14:05:41 -08004385 struct drm_mode_get_blob *out_resp = data;
4386 struct drm_property_blob *blob;
4387 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004388 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08004389
Dave Airliefb3b06c2011-02-08 13:55:21 +10004390 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4391 return -EINVAL;
4392
Daniel Vetter84849902012-12-02 00:28:11 +01004393 drm_modeset_lock_all(dev);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004394 mutex_lock(&dev->mode_config.blob_lock);
Daniel Stone6bcacf52015-04-20 19:22:55 +01004395 blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
Rob Clarka2b34e22013-10-05 16:36:52 -04004396 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004397 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004398 goto done;
4399 }
Dave Airlief453ba02008-11-07 14:05:41 -08004400
4401 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02004402 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004403 if (copy_to_user(blob_ptr, blob->data, blob->length)) {
Dave Airlief453ba02008-11-07 14:05:41 -08004404 ret = -EFAULT;
4405 goto done;
4406 }
4407 }
4408 out_resp->length = blob->length;
4409
4410done:
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01004411 mutex_unlock(&dev->mode_config.blob_lock);
Daniel Vetter84849902012-12-02 00:28:11 +01004412 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004413 return ret;
4414}
4415
Dave Airliecc7096f2014-10-22 12:03:04 +10004416/**
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01004417 * drm_mode_createblob_ioctl - create a new blob property
4418 * @dev: DRM device
4419 * @data: ioctl data
4420 * @file_priv: DRM file info
4421 *
4422 * This function creates a new blob property with user-defined values. In order
4423 * to give us sensible validation and checking when creating, rather than at
4424 * every potential use, we also require a type to be provided upfront.
4425 *
4426 * Called by the user via ioctl.
4427 *
4428 * Returns:
4429 * Zero on success, negative errno on failure.
4430 */
4431int drm_mode_createblob_ioctl(struct drm_device *dev,
4432 void *data, struct drm_file *file_priv)
4433{
4434 struct drm_mode_create_blob *out_resp = data;
4435 struct drm_property_blob *blob;
4436 void __user *blob_ptr;
4437 int ret = 0;
4438
4439 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4440 return -EINVAL;
4441
4442 blob = drm_property_create_blob(dev, out_resp->length, NULL);
4443 if (IS_ERR(blob))
4444 return PTR_ERR(blob);
4445
4446 blob_ptr = (void __user *)(unsigned long)out_resp->data;
4447 if (copy_from_user(blob->data, blob_ptr, out_resp->length)) {
4448 ret = -EFAULT;
4449 goto out_blob;
4450 }
4451
4452 /* Dropping the lock between create_blob and our access here is safe
4453 * as only the same file_priv can remove the blob; at this point, it is
4454 * not associated with any file_priv. */
4455 mutex_lock(&dev->mode_config.blob_lock);
4456 out_resp->blob_id = blob->base.id;
4457 list_add_tail(&file_priv->blobs, &blob->head_file);
4458 mutex_unlock(&dev->mode_config.blob_lock);
4459
4460 return 0;
4461
4462out_blob:
4463 drm_property_unreference_blob(blob);
4464 return ret;
4465}
4466
4467/**
4468 * drm_mode_destroyblob_ioctl - destroy a user blob property
4469 * @dev: DRM device
4470 * @data: ioctl data
4471 * @file_priv: DRM file info
4472 *
4473 * Destroy an existing user-defined blob property.
4474 *
4475 * Called by the user via ioctl.
4476 *
4477 * Returns:
4478 * Zero on success, negative errno on failure.
4479 */
4480int drm_mode_destroyblob_ioctl(struct drm_device *dev,
4481 void *data, struct drm_file *file_priv)
4482{
4483 struct drm_mode_destroy_blob *out_resp = data;
4484 struct drm_property_blob *blob = NULL, *bt;
4485 bool found = false;
4486 int ret = 0;
4487
4488 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4489 return -EINVAL;
4490
4491 mutex_lock(&dev->mode_config.blob_lock);
4492 blob = __drm_property_lookup_blob(dev, out_resp->blob_id);
4493 if (!blob) {
4494 ret = -ENOENT;
4495 goto err;
4496 }
4497
4498 /* Ensure the property was actually created by this user. */
4499 list_for_each_entry(bt, &file_priv->blobs, head_file) {
4500 if (bt == blob) {
4501 found = true;
4502 break;
4503 }
4504 }
4505
4506 if (!found) {
4507 ret = -EPERM;
4508 goto err;
4509 }
4510
4511 /* We must drop head_file here, because we may not be the last
4512 * reference on the blob. */
4513 list_del_init(&blob->head_file);
4514 drm_property_unreference_blob_locked(blob);
4515 mutex_unlock(&dev->mode_config.blob_lock);
4516
4517 return 0;
4518
4519err:
4520 mutex_unlock(&dev->mode_config.blob_lock);
4521 return ret;
4522}
4523
4524/**
Dave Airliecc7096f2014-10-22 12:03:04 +10004525 * drm_mode_connector_set_path_property - set tile property on connector
4526 * @connector: connector to set property on.
Daniel Stoned2ed3432015-04-20 19:22:53 +01004527 * @path: path to use for property; must not be NULL.
Dave Airliecc7096f2014-10-22 12:03:04 +10004528 *
4529 * This creates a property to expose to userspace to specify a
4530 * connector path. This is mainly used for DisplayPort MST where
4531 * connectors have a topology and we want to allow userspace to give
4532 * them more meaningful names.
4533 *
4534 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004535 * Zero on success, negative errno on failure.
Dave Airliecc7096f2014-10-22 12:03:04 +10004536 */
Dave Airlie43aba7e2014-06-05 14:01:31 +10004537int drm_mode_connector_set_path_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004538 const char *path)
Dave Airlie43aba7e2014-06-05 14:01:31 +10004539{
4540 struct drm_device *dev = connector->dev;
Thierry Redingecbbe592014-05-13 11:36:13 +02004541 int ret;
Dave Airlie43aba7e2014-06-05 14:01:31 +10004542
Daniel Stoned2ed3432015-04-20 19:22:53 +01004543 ret = drm_property_replace_global_blob(dev,
4544 &connector->path_blob_ptr,
4545 strlen(path) + 1,
4546 path,
4547 &connector->base,
4548 dev->mode_config.path_property);
Dave Airlie43aba7e2014-06-05 14:01:31 +10004549 return ret;
4550}
4551EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4552
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004553/**
Dave Airlie6f134d72014-10-20 16:30:50 +10004554 * drm_mode_connector_set_tile_property - set tile property on connector
4555 * @connector: connector to set property on.
4556 *
4557 * This looks up the tile information for a connector, and creates a
4558 * property for userspace to parse if it exists. The property is of
4559 * the form of 8 integers using ':' as a separator.
4560 *
4561 * Returns:
4562 * Zero on success, errno on failure.
4563 */
4564int drm_mode_connector_set_tile_property(struct drm_connector *connector)
4565{
4566 struct drm_device *dev = connector->dev;
Dave Airlie6f134d72014-10-20 16:30:50 +10004567 char tile[256];
Daniel Stoned2ed3432015-04-20 19:22:53 +01004568 int ret;
Dave Airlie6f134d72014-10-20 16:30:50 +10004569
4570 if (!connector->has_tile) {
Daniel Stoned2ed3432015-04-20 19:22:53 +01004571 ret = drm_property_replace_global_blob(dev,
4572 &connector->tile_blob_ptr,
4573 0,
4574 NULL,
4575 &connector->base,
4576 dev->mode_config.tile_property);
Dave Airlie6f134d72014-10-20 16:30:50 +10004577 return ret;
4578 }
4579
4580 snprintf(tile, 256, "%d:%d:%d:%d:%d:%d:%d:%d",
4581 connector->tile_group->id, connector->tile_is_single_monitor,
4582 connector->num_h_tile, connector->num_v_tile,
4583 connector->tile_h_loc, connector->tile_v_loc,
4584 connector->tile_h_size, connector->tile_v_size);
Dave Airlie6f134d72014-10-20 16:30:50 +10004585
Daniel Stoned2ed3432015-04-20 19:22:53 +01004586 ret = drm_property_replace_global_blob(dev,
4587 &connector->tile_blob_ptr,
4588 strlen(tile) + 1,
4589 tile,
4590 &connector->base,
4591 dev->mode_config.tile_property);
Dave Airlie6f134d72014-10-20 16:30:50 +10004592 return ret;
4593}
4594EXPORT_SYMBOL(drm_mode_connector_set_tile_property);
4595
4596/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004597 * drm_mode_connector_update_edid_property - update the edid property of a connector
4598 * @connector: drm connector
4599 * @edid: new value of the edid property
4600 *
4601 * This function creates a new blob modeset object and assigns its id to the
4602 * connector's edid property.
4603 *
4604 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004605 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004606 */
Dave Airlief453ba02008-11-07 14:05:41 -08004607int drm_mode_connector_update_edid_property(struct drm_connector *connector,
Thierry Reding12e6cec2014-05-13 11:38:36 +02004608 const struct edid *edid)
Dave Airlief453ba02008-11-07 14:05:41 -08004609{
4610 struct drm_device *dev = connector->dev;
Daniel Stoned2ed3432015-04-20 19:22:53 +01004611 size_t size = 0;
Thierry Redingecbbe592014-05-13 11:36:13 +02004612 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08004613
Thomas Wood4cf2b282014-06-18 17:52:33 +01004614 /* ignore requests to set edid when overridden */
4615 if (connector->override_edid)
4616 return 0;
4617
Daniel Stoned2ed3432015-04-20 19:22:53 +01004618 if (edid)
Shixin Zenge24ff462015-07-03 08:46:50 +02004619 size = EDID_LENGTH * (1 + edid->extensions);
Dave Airlief453ba02008-11-07 14:05:41 -08004620
Daniel Stoned2ed3432015-04-20 19:22:53 +01004621 ret = drm_property_replace_global_blob(dev,
4622 &connector->edid_blob_ptr,
4623 size,
4624 edid,
4625 &connector->base,
4626 dev->mode_config.edid_property);
Dave Airlief453ba02008-11-07 14:05:41 -08004627 return ret;
4628}
4629EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4630
Rob Clark3843e712014-12-16 18:05:29 -05004631/* Some properties could refer to dynamic refcnt'd objects, or things that
4632 * need special locking to handle lifetime issues (ie. to ensure the prop
4633 * value doesn't become invalid part way through the property update due to
4634 * race). The value returned by reference via 'obj' should be passed back
4635 * to drm_property_change_valid_put() after the property is set (and the
4636 * object to which the property is attached has a chance to take it's own
4637 * reference).
4638 */
Rob Clarkd34f20d2014-12-18 16:01:56 -05004639bool drm_property_change_valid_get(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004640 uint64_t value, struct drm_mode_object **ref)
Paulo Zanoni26a34812012-05-15 18:08:59 -03004641{
Thierry Reding2ca651d2014-12-10 13:03:39 +01004642 int i;
4643
Paulo Zanoni26a34812012-05-15 18:08:59 -03004644 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4645 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04004646
Rob Clark3843e712014-12-16 18:05:29 -05004647 *ref = NULL;
4648
Rob Clark5ea22f22014-05-30 11:34:01 -04004649 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03004650 if (value < property->values[0] || value > property->values[1])
4651 return false;
4652 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05004653 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4654 int64_t svalue = U642I64(value);
Thierry Reding4dfd9092014-12-10 13:03:34 +01004655
Rob Clarkebc44cf2012-09-12 22:22:31 -05004656 if (svalue < U642I64(property->values[0]) ||
4657 svalue > U642I64(property->values[1]))
4658 return false;
4659 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04004660 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Ville Syrjälä592c20e2012-05-24 20:53:58 +03004661 uint64_t valid_mask = 0;
Thierry Reding4dfd9092014-12-10 13:03:34 +01004662
Rob Clark49e27542012-05-17 02:23:26 -06004663 for (i = 0; i < property->num_values; i++)
4664 valid_mask |= (1ULL << property->values[i]);
4665 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04004666 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Daniel Stone6bcacf52015-04-20 19:22:55 +01004667 struct drm_property_blob *blob;
4668
4669 if (value == 0)
4670 return true;
4671
4672 blob = drm_property_lookup_blob(property->dev, value);
4673 if (blob) {
4674 *ref = &blob->base;
4675 return true;
4676 } else {
4677 return false;
4678 }
Rob Clark98f75de2014-05-30 11:37:03 -04004679 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
Rob Clark98f75de2014-05-30 11:37:03 -04004680 /* a zero value for an object property translates to null: */
4681 if (value == 0)
4682 return true;
Rob Clark3843e712014-12-16 18:05:29 -05004683
4684 /* handle refcnt'd objects specially: */
4685 if (property->values[0] == DRM_MODE_OBJECT_FB) {
4686 struct drm_framebuffer *fb;
4687 fb = drm_framebuffer_lookup(property->dev, value);
4688 if (fb) {
4689 *ref = &fb->base;
4690 return true;
4691 } else {
4692 return false;
4693 }
4694 } else {
4695 return _object_find(property->dev, value, property->values[0]) != NULL;
4696 }
Paulo Zanoni26a34812012-05-15 18:08:59 -03004697 }
Thierry Reding2ca651d2014-12-10 13:03:39 +01004698
4699 for (i = 0; i < property->num_values; i++)
4700 if (property->values[i] == value)
4701 return true;
4702 return false;
Paulo Zanoni26a34812012-05-15 18:08:59 -03004703}
4704
Rob Clarkd34f20d2014-12-18 16:01:56 -05004705void drm_property_change_valid_put(struct drm_property *property,
Rob Clark3843e712014-12-16 18:05:29 -05004706 struct drm_mode_object *ref)
4707{
4708 if (!ref)
4709 return;
4710
4711 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4712 if (property->values[0] == DRM_MODE_OBJECT_FB)
4713 drm_framebuffer_unreference(obj_to_fb(ref));
Daniel Stoneda9b2a32015-05-25 19:11:49 +01004714 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
4715 drm_property_unreference_blob(obj_to_blob(ref));
Rob Clark3843e712014-12-16 18:05:29 -05004716}
4717
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004718/**
4719 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4720 * @dev: DRM device
4721 * @data: ioctl data
4722 * @file_priv: DRM file info
4723 *
4724 * This function sets the current value for a connectors's property. It also
4725 * calls into a driver's ->set_property callback to update the hardware state
4726 *
4727 * Called by the user via ioctl.
4728 *
4729 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004730 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004731 */
Dave Airlief453ba02008-11-07 14:05:41 -08004732int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4733 void *data, struct drm_file *file_priv)
4734{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004735 struct drm_mode_connector_set_property *conn_set_prop = data;
4736 struct drm_mode_obj_set_property obj_set_prop = {
4737 .value = conn_set_prop->value,
4738 .prop_id = conn_set_prop->prop_id,
4739 .obj_id = conn_set_prop->connector_id,
4740 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4741 };
Dave Airlief453ba02008-11-07 14:05:41 -08004742
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03004743 /* It does all the locking and checking we need */
4744 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08004745}
4746
Paulo Zanonic5431882012-05-15 18:09:02 -03004747static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4748 struct drm_property *property,
4749 uint64_t value)
4750{
4751 int ret = -EINVAL;
4752 struct drm_connector *connector = obj_to_connector(obj);
4753
4754 /* Do DPMS ourselves */
4755 if (property == connector->dev->mode_config.dpms_property) {
Paulo Zanonic5431882012-05-15 18:09:02 -03004756 ret = 0;
Maarten Lankhorst9a69a9a2015-07-21 11:34:55 +02004757 if (connector->funcs->dpms)
4758 ret = (*connector->funcs->dpms)(connector, (int)value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004759 } else if (connector->funcs->set_property)
4760 ret = connector->funcs->set_property(connector, property, value);
4761
4762 /* store the property value if successful */
4763 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05004764 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03004765 return ret;
4766}
4767
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004768static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4769 struct drm_property *property,
4770 uint64_t value)
4771{
4772 int ret = -EINVAL;
4773 struct drm_crtc *crtc = obj_to_crtc(obj);
4774
4775 if (crtc->funcs->set_property)
4776 ret = crtc->funcs->set_property(crtc, property, value);
4777 if (!ret)
4778 drm_object_property_set_value(obj, property, value);
4779
4780 return ret;
4781}
4782
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004783/**
4784 * drm_mode_plane_set_obj_prop - set the value of a property
4785 * @plane: drm plane object to set property value for
4786 * @property: property to set
4787 * @value: value the property should be set to
4788 *
4789 * This functions sets a given property on a given plane object. This function
4790 * calls the driver's ->set_property callback and changes the software state of
4791 * the property if the callback succeeds.
4792 *
4793 * Returns:
4794 * Zero on success, error code on failure.
4795 */
4796int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4797 struct drm_property *property,
4798 uint64_t value)
Rob Clark4d939142012-05-17 02:23:27 -06004799{
4800 int ret = -EINVAL;
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004801 struct drm_mode_object *obj = &plane->base;
Rob Clark4d939142012-05-17 02:23:27 -06004802
4803 if (plane->funcs->set_property)
4804 ret = plane->funcs->set_property(plane, property, value);
4805 if (!ret)
4806 drm_object_property_set_value(obj, property, value);
4807
4808 return ret;
4809}
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004810EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
Rob Clark4d939142012-05-17 02:23:27 -06004811
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004812/**
Daniel Vetter1a498632014-11-19 18:38:09 +01004813 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004814 * @dev: DRM device
4815 * @data: ioctl data
4816 * @file_priv: DRM file info
4817 *
4818 * This function retrieves the current value for an object's property. Compared
4819 * to the connector specific ioctl this one is extended to also work on crtc and
4820 * plane objects.
4821 *
4822 * Called by the user via ioctl.
4823 *
4824 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004825 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004826 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004827int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4828 struct drm_file *file_priv)
4829{
4830 struct drm_mode_obj_get_properties *arg = data;
4831 struct drm_mode_object *obj;
4832 int ret = 0;
Paulo Zanonic5431882012-05-15 18:09:02 -03004833
4834 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4835 return -EINVAL;
4836
Daniel Vetter84849902012-12-02 00:28:11 +01004837 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004838
4839 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4840 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004841 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004842 goto out;
4843 }
4844 if (!obj->properties) {
4845 ret = -EINVAL;
4846 goto out;
4847 }
4848
Rob Clark88a48e22014-12-18 16:01:50 -05004849 ret = get_properties(obj, file_priv->atomic,
Rob Clark95cbf112014-12-18 16:01:49 -05004850 (uint32_t __user *)(unsigned long)(arg->props_ptr),
4851 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
4852 &arg->count_props);
Paulo Zanonic5431882012-05-15 18:09:02 -03004853
Paulo Zanonic5431882012-05-15 18:09:02 -03004854out:
Daniel Vetter84849902012-12-02 00:28:11 +01004855 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004856 return ret;
4857}
4858
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004859/**
4860 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4861 * @dev: DRM device
4862 * @data: ioctl data
4863 * @file_priv: DRM file info
4864 *
4865 * This function sets the current value for an object's property. It also calls
4866 * into a driver's ->set_property callback to update the hardware state.
4867 * Compared to the connector specific ioctl this one is extended to also work on
4868 * crtc and plane objects.
4869 *
4870 * Called by the user via ioctl.
4871 *
4872 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004873 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004874 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004875int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4876 struct drm_file *file_priv)
4877{
4878 struct drm_mode_obj_set_property *arg = data;
4879 struct drm_mode_object *arg_obj;
4880 struct drm_mode_object *prop_obj;
4881 struct drm_property *property;
Rob Clark3843e712014-12-16 18:05:29 -05004882 int i, ret = -EINVAL;
4883 struct drm_mode_object *ref;
Paulo Zanonic5431882012-05-15 18:09:02 -03004884
4885 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4886 return -EINVAL;
4887
Daniel Vetter84849902012-12-02 00:28:11 +01004888 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004889
4890 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004891 if (!arg_obj) {
4892 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004893 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004894 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004895 if (!arg_obj->properties)
4896 goto out;
4897
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004898 for (i = 0; i < arg_obj->properties->count; i++)
Rob Clarkb17cd752014-12-16 18:05:30 -05004899 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
Paulo Zanonic5431882012-05-15 18:09:02 -03004900 break;
4901
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004902 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004903 goto out;
4904
4905 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4906 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004907 if (!prop_obj) {
4908 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004909 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004910 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004911 property = obj_to_property(prop_obj);
4912
Rob Clark3843e712014-12-16 18:05:29 -05004913 if (!drm_property_change_valid_get(property, arg->value, &ref))
Paulo Zanonic5431882012-05-15 18:09:02 -03004914 goto out;
4915
4916 switch (arg_obj->type) {
4917 case DRM_MODE_OBJECT_CONNECTOR:
4918 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4919 arg->value);
4920 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004921 case DRM_MODE_OBJECT_CRTC:
4922 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4923 break;
Rob Clark4d939142012-05-17 02:23:27 -06004924 case DRM_MODE_OBJECT_PLANE:
Thomas Wood3a5f87c2014-08-20 14:45:00 +01004925 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4926 property, arg->value);
Rob Clark4d939142012-05-17 02:23:27 -06004927 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004928 }
4929
Rob Clark3843e712014-12-16 18:05:29 -05004930 drm_property_change_valid_put(property, ref);
4931
Paulo Zanonic5431882012-05-15 18:09:02 -03004932out:
Daniel Vetter84849902012-12-02 00:28:11 +01004933 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004934 return ret;
4935}
4936
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004937/**
4938 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4939 * @connector: connector to attach
4940 * @encoder: encoder to attach @connector to
4941 *
4942 * This function links up a connector to an encoder. Note that the routing
4943 * restrictions between encoders and crtcs are exposed to userspace through the
4944 * possible_clones and possible_crtcs bitmasks.
4945 *
4946 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004947 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004948 */
Dave Airlief453ba02008-11-07 14:05:41 -08004949int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4950 struct drm_encoder *encoder)
4951{
4952 int i;
4953
4954 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4955 if (connector->encoder_ids[i] == 0) {
4956 connector->encoder_ids[i] = encoder->base.id;
4957 return 0;
4958 }
4959 }
4960 return -ENOMEM;
4961}
4962EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4963
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004964/**
4965 * drm_mode_crtc_set_gamma_size - set the gamma table size
4966 * @crtc: CRTC to set the gamma table size for
4967 * @gamma_size: size of the gamma table
4968 *
4969 * Drivers which support gamma tables should set this to the supported gamma
4970 * table size when initializing the CRTC. Currently the drm core only supports a
4971 * fixed gamma table size.
4972 *
4973 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01004974 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004975 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004976int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004977 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004978{
4979 crtc->gamma_size = gamma_size;
4980
Thierry Redingbd3f0ff2014-12-10 13:03:35 +01004981 crtc->gamma_store = kcalloc(gamma_size, sizeof(uint16_t) * 3,
4982 GFP_KERNEL);
Dave Airlief453ba02008-11-07 14:05:41 -08004983 if (!crtc->gamma_store) {
4984 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004985 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004986 }
4987
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004988 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004989}
4990EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4991
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004992/**
4993 * drm_mode_gamma_set_ioctl - set the gamma table
4994 * @dev: DRM device
4995 * @data: ioctl data
4996 * @file_priv: DRM file info
4997 *
4998 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4999 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
5000 *
5001 * Called by the user via ioctl.
5002 *
5003 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005004 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005005 */
Dave Airlief453ba02008-11-07 14:05:41 -08005006int drm_mode_gamma_set_ioctl(struct drm_device *dev,
5007 void *data, struct drm_file *file_priv)
5008{
5009 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08005010 struct drm_crtc *crtc;
5011 void *r_base, *g_base, *b_base;
5012 int size;
5013 int ret = 0;
5014
Dave Airliefb3b06c2011-02-08 13:55:21 +10005015 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5016 return -EINVAL;
5017
Daniel Vetter84849902012-12-02 00:28:11 +01005018 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04005019 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5020 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005021 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08005022 goto out;
5023 }
Dave Airlief453ba02008-11-07 14:05:41 -08005024
Laurent Pinchartebe0f242012-05-17 13:27:24 +02005025 if (crtc->funcs->gamma_set == NULL) {
5026 ret = -ENOSYS;
5027 goto out;
5028 }
5029
Dave Airlief453ba02008-11-07 14:05:41 -08005030 /* memcpy into gamma store */
5031 if (crtc_lut->gamma_size != crtc->gamma_size) {
5032 ret = -EINVAL;
5033 goto out;
5034 }
5035
5036 size = crtc_lut->gamma_size * (sizeof(uint16_t));
5037 r_base = crtc->gamma_store;
5038 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
5039 ret = -EFAULT;
5040 goto out;
5041 }
5042
5043 g_base = r_base + size;
5044 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
5045 ret = -EFAULT;
5046 goto out;
5047 }
5048
5049 b_base = g_base + size;
5050 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
5051 ret = -EFAULT;
5052 goto out;
5053 }
5054
James Simmons72034252010-08-03 01:33:19 +01005055 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08005056
5057out:
Daniel Vetter84849902012-12-02 00:28:11 +01005058 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08005059 return ret;
5060
5061}
5062
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005063/**
5064 * drm_mode_gamma_get_ioctl - get the gamma table
5065 * @dev: DRM device
5066 * @data: ioctl data
5067 * @file_priv: DRM file info
5068 *
5069 * Copy the current gamma table into the storage provided. This also provides
5070 * the gamma table size the driver expects, which can be used to size the
5071 * allocated storage.
5072 *
5073 * Called by the user via ioctl.
5074 *
5075 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005076 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005077 */
Dave Airlief453ba02008-11-07 14:05:41 -08005078int drm_mode_gamma_get_ioctl(struct drm_device *dev,
5079 void *data, struct drm_file *file_priv)
5080{
5081 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08005082 struct drm_crtc *crtc;
5083 void *r_base, *g_base, *b_base;
5084 int size;
5085 int ret = 0;
5086
Dave Airliefb3b06c2011-02-08 13:55:21 +10005087 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5088 return -EINVAL;
5089
Daniel Vetter84849902012-12-02 00:28:11 +01005090 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04005091 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
5092 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005093 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08005094 goto out;
5095 }
Dave Airlief453ba02008-11-07 14:05:41 -08005096
5097 /* memcpy into gamma store */
5098 if (crtc_lut->gamma_size != crtc->gamma_size) {
5099 ret = -EINVAL;
5100 goto out;
5101 }
5102
5103 size = crtc_lut->gamma_size * (sizeof(uint16_t));
5104 r_base = crtc->gamma_store;
5105 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
5106 ret = -EFAULT;
5107 goto out;
5108 }
5109
5110 g_base = r_base + size;
5111 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
5112 ret = -EFAULT;
5113 goto out;
5114 }
5115
5116 b_base = g_base + size;
5117 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
5118 ret = -EFAULT;
5119 goto out;
5120 }
5121out:
Daniel Vetter84849902012-12-02 00:28:11 +01005122 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08005123 return ret;
5124}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005125
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005126/**
5127 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
5128 * @dev: DRM device
5129 * @data: ioctl data
5130 * @file_priv: DRM file info
5131 *
5132 * This schedules an asynchronous update on a given CRTC, called page flip.
5133 * Optionally a drm event is generated to signal the completion of the event.
5134 * Generic drivers cannot assume that a pageflip with changed framebuffer
5135 * properties (including driver specific metadata like tiling layout) will work,
5136 * but some drivers support e.g. pixel format changes through the pageflip
5137 * ioctl.
5138 *
5139 * Called by the user via ioctl.
5140 *
5141 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005142 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005143 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005144int drm_mode_page_flip_ioctl(struct drm_device *dev,
5145 void *data, struct drm_file *file_priv)
5146{
5147 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005148 struct drm_crtc *crtc;
Daniel Vetter3d30a592014-07-27 13:42:42 +02005149 struct drm_framebuffer *fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005150 struct drm_pending_vblank_event *e = NULL;
5151 unsigned long flags;
5152 int ret = -EINVAL;
5153
5154 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
5155 page_flip->reserved != 0)
5156 return -EINVAL;
5157
Keith Packard62f21042013-07-22 18:50:00 -07005158 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
5159 return -EINVAL;
5160
Rob Clarka2b34e22013-10-05 16:36:52 -04005161 crtc = drm_crtc_find(dev, page_flip->crtc_id);
5162 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03005163 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005164
Daniel Vetter4d02e2d2014-11-11 10:12:00 +01005165 drm_modeset_lock_crtc(crtc, crtc->primary);
Matt Roperf4510a22014-04-01 15:22:40 -07005166 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01005167 /* The framebuffer is currently unbound, presumably
5168 * due to a hotplug event, that userspace has not
5169 * yet discovered.
5170 */
5171 ret = -EBUSY;
5172 goto out;
5173 }
5174
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005175 if (crtc->funcs->page_flip == NULL)
5176 goto out;
5177
Daniel Vetter786b99e2012-12-02 21:53:40 +01005178 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03005179 if (!fb) {
5180 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005181 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03005182 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005183
Damien Lespiauc11e9282013-09-25 16:45:30 +01005184 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
5185 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02005186 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02005187
Matt Roperf4510a22014-04-01 15:22:40 -07005188 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02005189 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
5190 ret = -EINVAL;
5191 goto out;
5192 }
5193
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005194 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5195 ret = -ENOMEM;
5196 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005197 if (file_priv->event_space < sizeof(e->event)) {
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005198 spin_unlock_irqrestore(&dev->event_lock, flags);
5199 goto out;
5200 }
Thierry Redingf76511b2014-12-10 13:03:40 +01005201 file_priv->event_space -= sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005202 spin_unlock_irqrestore(&dev->event_lock, flags);
5203
Thierry Redingf76511b2014-12-10 13:03:40 +01005204 e = kzalloc(sizeof(*e), GFP_KERNEL);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005205 if (e == NULL) {
5206 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005207 file_priv->event_space += sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005208 spin_unlock_irqrestore(&dev->event_lock, flags);
5209 goto out;
5210 }
5211
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08005212 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Thierry Redingf76511b2014-12-10 13:03:40 +01005213 e->event.base.length = sizeof(e->event);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005214 e->event.user_data = page_flip->user_data;
5215 e->base.event = &e->event.base;
5216 e->base.file_priv = file_priv;
5217 e->base.destroy =
5218 (void (*) (struct drm_pending_event *)) kfree;
5219 }
5220
Daniel Vetter3d30a592014-07-27 13:42:42 +02005221 crtc->primary->old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07005222 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005223 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005224 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
5225 spin_lock_irqsave(&dev->event_lock, flags);
Thierry Redingf76511b2014-12-10 13:03:40 +01005226 file_priv->event_space += sizeof(e->event);
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09005227 spin_unlock_irqrestore(&dev->event_lock, flags);
5228 kfree(e);
5229 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01005230 /* Keep the old fb, don't unref it. */
Daniel Vetter3d30a592014-07-27 13:42:42 +02005231 crtc->primary->old_fb = NULL;
Daniel Vetterb0d12322012-12-11 01:07:12 +01005232 } else {
Daniel Vetter3cb43cc2015-07-07 08:43:03 +02005233 crtc->primary->fb = fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01005234 /* Unref only the old framebuffer. */
5235 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005236 }
5237
5238out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01005239 if (fb)
5240 drm_framebuffer_unreference(fb);
Daniel Vetter3d30a592014-07-27 13:42:42 +02005241 if (crtc->primary->old_fb)
5242 drm_framebuffer_unreference(crtc->primary->old_fb);
5243 crtc->primary->old_fb = NULL;
Daniel Vetterd059f652014-07-25 18:07:40 +02005244 drm_modeset_unlock_crtc(crtc);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01005245
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05005246 return ret;
5247}
Chris Wilsoneb033552011-01-24 15:11:08 +00005248
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005249/**
5250 * drm_mode_config_reset - call ->reset callbacks
5251 * @dev: drm device
5252 *
5253 * This functions calls all the crtc's, encoder's and connector's ->reset
5254 * callback. Drivers can use this in e.g. their driver load or resume code to
5255 * reset hardware and software state.
5256 */
Chris Wilsoneb033552011-01-24 15:11:08 +00005257void drm_mode_config_reset(struct drm_device *dev)
5258{
5259 struct drm_crtc *crtc;
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005260 struct drm_plane *plane;
Chris Wilsoneb033552011-01-24 15:11:08 +00005261 struct drm_encoder *encoder;
5262 struct drm_connector *connector;
5263
Daniel Vettere4f62542015-07-09 23:44:35 +02005264 drm_for_each_plane(plane, dev)
Daniel Vetter2a0d7cf2014-07-29 15:32:37 +02005265 if (plane->funcs->reset)
5266 plane->funcs->reset(plane);
5267
Daniel Vettere4f62542015-07-09 23:44:35 +02005268 drm_for_each_crtc(crtc, dev)
Chris Wilsoneb033552011-01-24 15:11:08 +00005269 if (crtc->funcs->reset)
5270 crtc->funcs->reset(crtc);
5271
Daniel Vettere4f62542015-07-09 23:44:35 +02005272 drm_for_each_encoder(encoder, dev)
Chris Wilsoneb033552011-01-24 15:11:08 +00005273 if (encoder->funcs->reset)
5274 encoder->funcs->reset(encoder);
5275
Daniel Vetterf8c2ba32015-07-29 08:32:43 +02005276 mutex_lock(&dev->mode_config.mutex);
Dave Airlie4eebf602015-08-17 14:13:53 +10005277 drm_for_each_connector(connector, dev)
Chris Wilsoneb033552011-01-24 15:11:08 +00005278 if (connector->funcs->reset)
5279 connector->funcs->reset(connector);
Daniel Vetterf8c2ba32015-07-29 08:32:43 +02005280 mutex_unlock(&dev->mode_config.mutex);
Chris Wilsoneb033552011-01-24 15:11:08 +00005281}
5282EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10005283
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005284/**
5285 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
5286 * @dev: DRM device
5287 * @data: ioctl data
5288 * @file_priv: DRM file info
5289 *
5290 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
5291 * TTM or something else entirely) and returns the resulting buffer handle. This
5292 * handle can then be wrapped up into a framebuffer modeset object.
5293 *
5294 * Note that userspace is not allowed to use such objects for render
5295 * acceleration - drivers must create their own private ioctls for such a use
5296 * case.
5297 *
5298 * Called by the user via ioctl.
5299 *
5300 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005301 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005302 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005303int drm_mode_create_dumb_ioctl(struct drm_device *dev,
5304 void *data, struct drm_file *file_priv)
5305{
5306 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01005307 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10005308
5309 if (!dev->driver->dumb_create)
5310 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01005311 if (!args->width || !args->height || !args->bpp)
5312 return -EINVAL;
5313
5314 /* overflow checks for 32bit size calculations */
David Herrmann00e72082014-08-24 19:23:26 +02005315 /* NOTE: DIV_ROUND_UP() can overflow */
David Herrmannb28cd412014-01-20 20:09:55 +01005316 cpp = DIV_ROUND_UP(args->bpp, 8);
David Herrmann00e72082014-08-24 19:23:26 +02005317 if (!cpp || cpp > 0xffffffffU / args->width)
David Herrmannb28cd412014-01-20 20:09:55 +01005318 return -EINVAL;
5319 stride = cpp * args->width;
5320 if (args->height > 0xffffffffU / stride)
5321 return -EINVAL;
5322
5323 /* test for wrap-around */
5324 size = args->height * stride;
5325 if (PAGE_ALIGN(size) == 0)
5326 return -EINVAL;
5327
Thierry Redingf6085952014-11-03 11:14:14 +01005328 /*
5329 * handle, pitch and size are output parameters. Zero them out to
5330 * prevent drivers from accidentally using uninitialized data. Since
5331 * not all existing userspace is clearing these fields properly we
5332 * cannot reject IOCTL with garbage in them.
5333 */
5334 args->handle = 0;
5335 args->pitch = 0;
5336 args->size = 0;
5337
Dave Airlieff72145b2011-02-07 12:16:14 +10005338 return dev->driver->dumb_create(file_priv, dev, args);
5339}
5340
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005341/**
5342 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
5343 * @dev: DRM device
5344 * @data: ioctl data
5345 * @file_priv: DRM file info
5346 *
5347 * Allocate an offset in the drm device node's address space to be able to
5348 * memory map a dumb buffer.
5349 *
5350 * Called by the user via ioctl.
5351 *
5352 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005353 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005354 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005355int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
5356 void *data, struct drm_file *file_priv)
5357{
5358 struct drm_mode_map_dumb *args = data;
5359
5360 /* call driver ioctl to get mmap offset */
5361 if (!dev->driver->dumb_map_offset)
5362 return -ENOSYS;
5363
5364 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
5365}
5366
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005367/**
5368 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
5369 * @dev: DRM device
5370 * @data: ioctl data
5371 * @file_priv: DRM file info
5372 *
5373 * This destroys the userspace handle for the given dumb backing storage buffer.
5374 * Since buffer objects must be reference counted in the kernel a buffer object
5375 * won't be immediately freed if a framebuffer modeset object still uses it.
5376 *
5377 * Called by the user via ioctl.
5378 *
5379 * Returns:
Daniel Vetter1a498632014-11-19 18:38:09 +01005380 * Zero on success, negative errno on failure.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005381 */
Dave Airlieff72145b2011-02-07 12:16:14 +10005382int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
5383 void *data, struct drm_file *file_priv)
5384{
5385 struct drm_mode_destroy_dumb *args = data;
5386
5387 if (!dev->driver->dumb_destroy)
5388 return -ENOSYS;
5389
5390 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
5391}
Dave Airlie248dbc22011-11-29 20:02:54 +00005392
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005393/**
5394 * drm_fb_get_bpp_depth - get the bpp/depth values for format
5395 * @format: pixel format (DRM_FORMAT_*)
5396 * @depth: storage for the depth value
5397 * @bpp: storage for the bpp value
5398 *
5399 * This only supports RGB formats here for compat with code that doesn't use
5400 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00005401 */
5402void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
5403 int *bpp)
5404{
5405 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02005406 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02005407 case DRM_FORMAT_RGB332:
5408 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00005409 *depth = 8;
5410 *bpp = 8;
5411 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005412 case DRM_FORMAT_XRGB1555:
5413 case DRM_FORMAT_XBGR1555:
5414 case DRM_FORMAT_RGBX5551:
5415 case DRM_FORMAT_BGRX5551:
5416 case DRM_FORMAT_ARGB1555:
5417 case DRM_FORMAT_ABGR1555:
5418 case DRM_FORMAT_RGBA5551:
5419 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00005420 *depth = 15;
5421 *bpp = 16;
5422 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005423 case DRM_FORMAT_RGB565:
5424 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00005425 *depth = 16;
5426 *bpp = 16;
5427 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005428 case DRM_FORMAT_RGB888:
5429 case DRM_FORMAT_BGR888:
5430 *depth = 24;
5431 *bpp = 24;
5432 break;
5433 case DRM_FORMAT_XRGB8888:
5434 case DRM_FORMAT_XBGR8888:
5435 case DRM_FORMAT_RGBX8888:
5436 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005437 *depth = 24;
5438 *bpp = 32;
5439 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005440 case DRM_FORMAT_XRGB2101010:
5441 case DRM_FORMAT_XBGR2101010:
5442 case DRM_FORMAT_RGBX1010102:
5443 case DRM_FORMAT_BGRX1010102:
5444 case DRM_FORMAT_ARGB2101010:
5445 case DRM_FORMAT_ABGR2101010:
5446 case DRM_FORMAT_RGBA1010102:
5447 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00005448 *depth = 30;
5449 *bpp = 32;
5450 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02005451 case DRM_FORMAT_ARGB8888:
5452 case DRM_FORMAT_ABGR8888:
5453 case DRM_FORMAT_RGBA8888:
5454 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00005455 *depth = 32;
5456 *bpp = 32;
5457 break;
5458 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03005459 DRM_DEBUG_KMS("unsupported pixel format %s\n",
5460 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00005461 *depth = 0;
5462 *bpp = 0;
5463 break;
5464 }
5465}
5466EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03005467
5468/**
5469 * drm_format_num_planes - get the number of planes for format
5470 * @format: pixel format (DRM_FORMAT_*)
5471 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005472 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005473 * The number of planes used by the specified pixel format.
5474 */
5475int drm_format_num_planes(uint32_t format)
5476{
5477 switch (format) {
5478 case DRM_FORMAT_YUV410:
5479 case DRM_FORMAT_YVU410:
5480 case DRM_FORMAT_YUV411:
5481 case DRM_FORMAT_YVU411:
5482 case DRM_FORMAT_YUV420:
5483 case DRM_FORMAT_YVU420:
5484 case DRM_FORMAT_YUV422:
5485 case DRM_FORMAT_YVU422:
5486 case DRM_FORMAT_YUV444:
5487 case DRM_FORMAT_YVU444:
5488 return 3;
5489 case DRM_FORMAT_NV12:
5490 case DRM_FORMAT_NV21:
5491 case DRM_FORMAT_NV16:
5492 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005493 case DRM_FORMAT_NV24:
5494 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03005495 return 2;
5496 default:
5497 return 1;
5498 }
5499}
5500EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005501
5502/**
5503 * drm_format_plane_cpp - determine the bytes per pixel value
5504 * @format: pixel format (DRM_FORMAT_*)
5505 * @plane: plane index
5506 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005507 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005508 * The bytes per pixel value for the specified plane.
5509 */
5510int drm_format_plane_cpp(uint32_t format, int plane)
5511{
5512 unsigned int depth;
5513 int bpp;
5514
5515 if (plane >= drm_format_num_planes(format))
5516 return 0;
5517
5518 switch (format) {
5519 case DRM_FORMAT_YUYV:
5520 case DRM_FORMAT_YVYU:
5521 case DRM_FORMAT_UYVY:
5522 case DRM_FORMAT_VYUY:
5523 return 2;
5524 case DRM_FORMAT_NV12:
5525 case DRM_FORMAT_NV21:
5526 case DRM_FORMAT_NV16:
5527 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02005528 case DRM_FORMAT_NV24:
5529 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03005530 return plane ? 2 : 1;
5531 case DRM_FORMAT_YUV410:
5532 case DRM_FORMAT_YVU410:
5533 case DRM_FORMAT_YUV411:
5534 case DRM_FORMAT_YVU411:
5535 case DRM_FORMAT_YUV420:
5536 case DRM_FORMAT_YVU420:
5537 case DRM_FORMAT_YUV422:
5538 case DRM_FORMAT_YVU422:
5539 case DRM_FORMAT_YUV444:
5540 case DRM_FORMAT_YVU444:
5541 return 1;
5542 default:
5543 drm_fb_get_bpp_depth(format, &depth, &bpp);
5544 return bpp >> 3;
5545 }
5546}
5547EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005548
5549/**
5550 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
5551 * @format: pixel format (DRM_FORMAT_*)
5552 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005553 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005554 * The horizontal chroma subsampling factor for the
5555 * specified pixel format.
5556 */
5557int drm_format_horz_chroma_subsampling(uint32_t format)
5558{
5559 switch (format) {
5560 case DRM_FORMAT_YUV411:
5561 case DRM_FORMAT_YVU411:
5562 case DRM_FORMAT_YUV410:
5563 case DRM_FORMAT_YVU410:
5564 return 4;
5565 case DRM_FORMAT_YUYV:
5566 case DRM_FORMAT_YVYU:
5567 case DRM_FORMAT_UYVY:
5568 case DRM_FORMAT_VYUY:
5569 case DRM_FORMAT_NV12:
5570 case DRM_FORMAT_NV21:
5571 case DRM_FORMAT_NV16:
5572 case DRM_FORMAT_NV61:
5573 case DRM_FORMAT_YUV422:
5574 case DRM_FORMAT_YVU422:
5575 case DRM_FORMAT_YUV420:
5576 case DRM_FORMAT_YVU420:
5577 return 2;
5578 default:
5579 return 1;
5580 }
5581}
5582EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5583
5584/**
5585 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5586 * @format: pixel format (DRM_FORMAT_*)
5587 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01005588 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03005589 * The vertical chroma subsampling factor for the
5590 * specified pixel format.
5591 */
5592int drm_format_vert_chroma_subsampling(uint32_t format)
5593{
5594 switch (format) {
5595 case DRM_FORMAT_YUV410:
5596 case DRM_FORMAT_YVU410:
5597 return 4;
5598 case DRM_FORMAT_YUV420:
5599 case DRM_FORMAT_YVU420:
5600 case DRM_FORMAT_NV12:
5601 case DRM_FORMAT_NV21:
5602 return 2;
5603 default:
5604 return 1;
5605 }
5606}
5607EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005608
5609/**
Ville Syrjälä3c9855f2014-07-08 10:31:56 +05305610 * drm_rotation_simplify() - Try to simplify the rotation
5611 * @rotation: Rotation to be simplified
5612 * @supported_rotations: Supported rotations
5613 *
5614 * Attempt to simplify the rotation to a form that is supported.
5615 * Eg. if the hardware supports everything except DRM_REFLECT_X
5616 * one could call this function like this:
5617 *
5618 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5619 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5620 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5621 *
5622 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5623 * transforms the hardware supports, this function may not
5624 * be able to produce a supported transform, so the caller should
5625 * check the result afterwards.
5626 */
5627unsigned int drm_rotation_simplify(unsigned int rotation,
5628 unsigned int supported_rotations)
5629{
5630 if (rotation & ~supported_rotations) {
5631 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5632 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5633 }
5634
5635 return rotation;
5636}
5637EXPORT_SYMBOL(drm_rotation_simplify);
5638
5639/**
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005640 * drm_mode_config_init - initialize DRM mode_configuration structure
5641 * @dev: DRM device
5642 *
5643 * Initialize @dev's mode_config structure, used for tracking the graphics
5644 * configuration of @dev.
5645 *
5646 * Since this initializes the modeset locks, no locking is possible. Which is no
5647 * problem, since this should happen single threaded at init time. It is the
5648 * driver's problem to ensure this guarantee.
5649 *
5650 */
5651void drm_mode_config_init(struct drm_device *dev)
5652{
5653 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05005654 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005655 mutex_init(&dev->mode_config.idr_mutex);
5656 mutex_init(&dev->mode_config.fb_lock);
Daniel Stone8fb6e7a2015-04-20 19:22:54 +01005657 mutex_init(&dev->mode_config.blob_lock);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005658 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5659 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5660 INIT_LIST_HEAD(&dev->mode_config.connector_list);
5661 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5662 INIT_LIST_HEAD(&dev->mode_config.property_list);
5663 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5664 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5665 idr_init(&dev->mode_config.crtc_idr);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005666 idr_init(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005667
5668 drm_modeset_lock_all(dev);
Rob Clark6b4959f2014-12-18 16:01:53 -05005669 drm_mode_create_standard_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005670 drm_modeset_unlock_all(dev);
5671
5672 /* Just to be sure */
5673 dev->mode_config.num_fb = 0;
5674 dev->mode_config.num_connector = 0;
5675 dev->mode_config.num_crtc = 0;
5676 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07005677 dev->mode_config.num_overlay_plane = 0;
5678 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005679}
5680EXPORT_SYMBOL(drm_mode_config_init);
5681
5682/**
5683 * drm_mode_config_cleanup - free up DRM mode_config info
5684 * @dev: DRM device
5685 *
5686 * Free up all the connectors and CRTCs associated with this DRM device, then
5687 * free up the framebuffers and associated buffer objects.
5688 *
5689 * Note that since this /should/ happen single-threaded at driver/device
5690 * teardown time, no locking is required. It's the driver's job to ensure that
5691 * this guarantee actually holds true.
5692 *
5693 * FIXME: cleanup any dangling user buffer objects too
5694 */
5695void drm_mode_config_cleanup(struct drm_device *dev)
5696{
5697 struct drm_connector *connector, *ot;
5698 struct drm_crtc *crtc, *ct;
5699 struct drm_encoder *encoder, *enct;
5700 struct drm_framebuffer *fb, *fbt;
5701 struct drm_property *property, *pt;
5702 struct drm_property_blob *blob, *bt;
5703 struct drm_plane *plane, *plt;
5704
5705 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5706 head) {
5707 encoder->funcs->destroy(encoder);
5708 }
5709
5710 list_for_each_entry_safe(connector, ot,
5711 &dev->mode_config.connector_list, head) {
5712 connector->funcs->destroy(connector);
5713 }
5714
5715 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5716 head) {
5717 drm_property_destroy(dev, property);
5718 }
5719
5720 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
Daniel Stonee2f5d2e2015-05-22 13:34:51 +01005721 head_global) {
Daniel Stone6bcacf52015-04-20 19:22:55 +01005722 drm_property_unreference_blob(blob);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005723 }
5724
5725 /*
5726 * Single-threaded teardown context, so it's not required to grab the
5727 * fb_lock to protect against concurrent fb_list access. Contrary, it
5728 * would actually deadlock with the drm_framebuffer_cleanup function.
5729 *
5730 * Also, if there are any framebuffers left, that's a driver leak now,
5731 * so politely WARN about this.
5732 */
5733 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5734 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
Maarten Lankhorstc099b552015-09-09 13:46:21 +02005735 drm_framebuffer_free(&fb->refcount);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005736 }
5737
5738 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5739 head) {
5740 plane->funcs->destroy(plane);
5741 }
5742
5743 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5744 crtc->funcs->destroy(crtc);
5745 }
5746
Dave Airlie138f9eb2014-10-20 16:17:17 +10005747 idr_destroy(&dev->mode_config.tile_idr);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005748 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05005749 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02005750}
5751EXPORT_SYMBOL(drm_mode_config_cleanup);
Ville Syrjäläc1df5f32014-07-08 10:31:53 +05305752
5753struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5754 unsigned int supported_rotations)
5755{
5756 static const struct drm_prop_enum_list props[] = {
5757 { DRM_ROTATE_0, "rotate-0" },
5758 { DRM_ROTATE_90, "rotate-90" },
5759 { DRM_ROTATE_180, "rotate-180" },
5760 { DRM_ROTATE_270, "rotate-270" },
5761 { DRM_REFLECT_X, "reflect-x" },
5762 { DRM_REFLECT_Y, "reflect-y" },
5763 };
5764
5765 return drm_property_create_bitmask(dev, 0, "rotation",
5766 props, ARRAY_SIZE(props),
5767 supported_rotations);
5768}
5769EXPORT_SYMBOL(drm_mode_create_rotation_property);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005770
5771/**
5772 * DOC: Tile group
5773 *
5774 * Tile groups are used to represent tiled monitors with a unique
5775 * integer identifier. Tiled monitors using DisplayID v1.3 have
5776 * a unique 8-byte handle, we store this in a tile group, so we
5777 * have a common identifier for all tiles in a monitor group.
5778 */
5779static void drm_tile_group_free(struct kref *kref)
5780{
5781 struct drm_tile_group *tg = container_of(kref, struct drm_tile_group, refcount);
5782 struct drm_device *dev = tg->dev;
5783 mutex_lock(&dev->mode_config.idr_mutex);
5784 idr_remove(&dev->mode_config.tile_idr, tg->id);
5785 mutex_unlock(&dev->mode_config.idr_mutex);
5786 kfree(tg);
5787}
5788
5789/**
5790 * drm_mode_put_tile_group - drop a reference to a tile group.
5791 * @dev: DRM device
5792 * @tg: tile group to drop reference to.
5793 *
5794 * drop reference to tile group and free if 0.
5795 */
5796void drm_mode_put_tile_group(struct drm_device *dev,
5797 struct drm_tile_group *tg)
5798{
5799 kref_put(&tg->refcount, drm_tile_group_free);
5800}
5801
5802/**
5803 * drm_mode_get_tile_group - get a reference to an existing tile group
5804 * @dev: DRM device
5805 * @topology: 8-bytes unique per monitor.
5806 *
5807 * Use the unique bytes to get a reference to an existing tile group.
5808 *
5809 * RETURNS:
5810 * tile group or NULL if not found.
5811 */
5812struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev,
5813 char topology[8])
5814{
5815 struct drm_tile_group *tg;
5816 int id;
5817 mutex_lock(&dev->mode_config.idr_mutex);
5818 idr_for_each_entry(&dev->mode_config.tile_idr, tg, id) {
5819 if (!memcmp(tg->group_data, topology, 8)) {
5820 if (!kref_get_unless_zero(&tg->refcount))
5821 tg = NULL;
5822 mutex_unlock(&dev->mode_config.idr_mutex);
5823 return tg;
5824 }
5825 }
5826 mutex_unlock(&dev->mode_config.idr_mutex);
5827 return NULL;
5828}
Rob Clark81ddd1b2015-03-27 13:01:52 -04005829EXPORT_SYMBOL(drm_mode_get_tile_group);
Dave Airlie138f9eb2014-10-20 16:17:17 +10005830
5831/**
5832 * drm_mode_create_tile_group - create a tile group from a displayid description
5833 * @dev: DRM device
5834 * @topology: 8-bytes unique per monitor.
5835 *
5836 * Create a tile group for the unique monitor, and get a unique
5837 * identifier for the tile group.
5838 *
5839 * RETURNS:
5840 * new tile group or error.
5841 */
5842struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev,
5843 char topology[8])
5844{
5845 struct drm_tile_group *tg;
5846 int ret;
5847
5848 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
5849 if (!tg)
5850 return ERR_PTR(-ENOMEM);
5851
5852 kref_init(&tg->refcount);
5853 memcpy(tg->group_data, topology, 8);
5854 tg->dev = dev;
5855
5856 mutex_lock(&dev->mode_config.idr_mutex);
5857 ret = idr_alloc(&dev->mode_config.tile_idr, tg, 1, 0, GFP_KERNEL);
5858 if (ret >= 0) {
5859 tg->id = ret;
5860 } else {
5861 kfree(tg);
5862 tg = ERR_PTR(ret);
5863 }
5864
5865 mutex_unlock(&dev->mode_config.idr_mutex);
5866 return tg;
5867}
Rob Clark81ddd1b2015-03-27 13:01:52 -04005868EXPORT_SYMBOL(drm_mode_create_tile_group);