blob: c304e5650bc8e22f249cbc01600230334ec3774a [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>
Dave Airlief453ba02008-11-07 14:05:41 -080041
Daniel Vetter8bd441b2014-01-23 15:35:24 +010042#include "drm_crtc_internal.h"
43
Daniel Vetter84849902012-12-02 00:28:11 +010044/**
45 * drm_modeset_lock_all - take all modeset locks
46 * @dev: drm device
47 *
48 * This function takes all modeset locks, suitable where a more fine-grained
Daniel Vetterc8e32cc2014-03-10 21:33:02 +010049 * scheme isn't (yet) implemented. Locks must be dropped with
50 * drm_modeset_unlock_all.
Daniel Vetter84849902012-12-02 00:28:11 +010051 */
52void drm_modeset_lock_all(struct drm_device *dev)
53{
Rob Clark51fd3712013-11-19 12:10:12 -050054 struct drm_mode_config *config = &dev->mode_config;
55 struct drm_modeset_acquire_ctx *ctx;
56 int ret;
Daniel Vetter29494c12012-12-02 02:18:25 +010057
Rob Clark51fd3712013-11-19 12:10:12 -050058 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
59 if (WARN_ON(!ctx))
60 return;
Daniel Vetter29494c12012-12-02 02:18:25 +010061
Rob Clark51fd3712013-11-19 12:10:12 -050062 mutex_lock(&config->mutex);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020063
Rob Clark51fd3712013-11-19 12:10:12 -050064 drm_modeset_acquire_init(ctx, 0);
65
66retry:
67 ret = drm_modeset_lock(&config->connection_mutex, ctx);
68 if (ret)
69 goto fail;
70 ret = drm_modeset_lock_all_crtcs(dev, ctx);
71 if (ret)
72 goto fail;
73
74 WARN_ON(config->acquire_ctx);
75
76 /* now we hold the locks, so now that it is safe, stash the
77 * ctx for drm_modeset_unlock_all():
78 */
79 config->acquire_ctx = ctx;
80
81 drm_warn_on_modeset_not_all_locked(dev);
82
83 return;
84
85fail:
86 if (ret == -EDEADLK) {
87 drm_modeset_backoff(ctx);
88 goto retry;
89 }
Daniel Vetter84849902012-12-02 00:28:11 +010090}
91EXPORT_SYMBOL(drm_modeset_lock_all);
92
93/**
94 * drm_modeset_unlock_all - drop all modeset locks
95 * @dev: device
Daniel Vetterc8e32cc2014-03-10 21:33:02 +010096 *
97 * This function drop all modeset locks taken by drm_modeset_lock_all.
Daniel Vetter84849902012-12-02 00:28:11 +010098 */
99void drm_modeset_unlock_all(struct drm_device *dev)
100{
Rob Clark51fd3712013-11-19 12:10:12 -0500101 struct drm_mode_config *config = &dev->mode_config;
102 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
Daniel Vetter29494c12012-12-02 02:18:25 +0100103
Rob Clark51fd3712013-11-19 12:10:12 -0500104 if (WARN_ON(!ctx))
105 return;
Daniel Vetter29494c12012-12-02 02:18:25 +0100106
Rob Clark51fd3712013-11-19 12:10:12 -0500107 config->acquire_ctx = NULL;
108 drm_modeset_drop_locks(ctx);
109 drm_modeset_acquire_fini(ctx);
110
111 kfree(ctx);
Daniel Vetter6e9f7982014-05-29 23:54:47 +0200112
Daniel Vetter84849902012-12-02 00:28:11 +0100113 mutex_unlock(&dev->mode_config.mutex);
114}
115EXPORT_SYMBOL(drm_modeset_unlock_all);
116
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100117/**
118 * drm_warn_on_modeset_not_all_locked - check that all modeset locks are locked
119 * @dev: device
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100120 *
121 * Useful as a debug assert.
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100122 */
123void drm_warn_on_modeset_not_all_locked(struct drm_device *dev)
124{
125 struct drm_crtc *crtc;
126
Daniel Vettera9b054e2013-05-02 09:43:05 +0200127 /* Locking is currently fubar in the panic handler. */
128 if (oops_in_progress)
129 return;
130
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100131 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
Rob Clark51fd3712013-11-19 12:10:12 -0500132 WARN_ON(!drm_modeset_is_locked(&crtc->mutex));
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100133
Rob Clark51fd3712013-11-19 12:10:12 -0500134 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100135 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
136}
137EXPORT_SYMBOL(drm_warn_on_modeset_not_all_locked);
138
Dave Airlief453ba02008-11-07 14:05:41 -0800139/* Avoid boilerplate. I'm tired of typing. */
140#define DRM_ENUM_NAME_FN(fnname, list) \
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000141 const char *fnname(int val) \
Dave Airlief453ba02008-11-07 14:05:41 -0800142 { \
143 int i; \
144 for (i = 0; i < ARRAY_SIZE(list); i++) { \
145 if (list[i].type == val) \
146 return list[i].name; \
147 } \
148 return "(unknown)"; \
149 }
150
151/*
152 * Global properties
153 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000154static const struct drm_prop_enum_list drm_dpms_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800155{ { DRM_MODE_DPMS_ON, "On" },
156 { DRM_MODE_DPMS_STANDBY, "Standby" },
157 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
158 { DRM_MODE_DPMS_OFF, "Off" }
159};
160
161DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
162
Rob Clark9922ab52014-04-01 20:16:57 -0400163static const struct drm_prop_enum_list drm_plane_type_enum_list[] =
164{
165 { DRM_PLANE_TYPE_OVERLAY, "Overlay" },
166 { DRM_PLANE_TYPE_PRIMARY, "Primary" },
167 { DRM_PLANE_TYPE_CURSOR, "Cursor" },
168};
169
Dave Airlief453ba02008-11-07 14:05:41 -0800170/*
171 * Optional properties
172 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000173static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800174{
Jesse Barnes53bd8382009-07-01 10:04:40 -0700175 { DRM_MODE_SCALE_NONE, "None" },
176 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
177 { DRM_MODE_SCALE_CENTER, "Center" },
178 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
Dave Airlief453ba02008-11-07 14:05:41 -0800179};
180
Dave Airlief453ba02008-11-07 14:05:41 -0800181/*
182 * Non-global properties, but "required" for certain connectors.
183 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000184static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800185{
186 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
187 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
188 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
189};
190
191DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
192
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000193static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800194{
195 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
196 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
197 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
198};
199
200DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
201 drm_dvi_i_subconnector_enum_list)
202
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000203static const struct drm_prop_enum_list drm_tv_select_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800204{
205 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
206 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
207 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
208 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200209 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800210};
211
212DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
213
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000214static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800215{
216 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
217 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
218 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
219 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
Francisco Jerezaeaa1ad2009-08-02 04:19:19 +0200220 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
Dave Airlief453ba02008-11-07 14:05:41 -0800221};
222
223DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
224 drm_tv_subconnector_enum_list)
225
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000226static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
Jakob Bornecrantz884840a2009-12-03 23:25:47 +0000227 { DRM_MODE_DIRTY_OFF, "Off" },
228 { DRM_MODE_DIRTY_ON, "On" },
229 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
230};
231
Dave Airlief453ba02008-11-07 14:05:41 -0800232struct drm_conn_prop_enum_list {
233 int type;
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000234 const char *name;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400235 struct ida ida;
Dave Airlief453ba02008-11-07 14:05:41 -0800236};
237
238/*
239 * Connector and encoder types.
240 */
241static struct drm_conn_prop_enum_list drm_connector_enum_list[] =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400242{ { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
243 { DRM_MODE_CONNECTOR_VGA, "VGA" },
244 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
245 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
246 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
247 { DRM_MODE_CONNECTOR_Composite, "Composite" },
248 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
249 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
250 { DRM_MODE_CONNECTOR_Component, "Component" },
251 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
252 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
253 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
254 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
255 { DRM_MODE_CONNECTOR_TV, "TV" },
256 { DRM_MODE_CONNECTOR_eDP, "eDP" },
257 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300258 { DRM_MODE_CONNECTOR_DSI, "DSI" },
Dave Airlief453ba02008-11-07 14:05:41 -0800259};
260
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000261static const struct drm_prop_enum_list drm_encoder_enum_list[] =
Dave Airlief453ba02008-11-07 14:05:41 -0800262{ { DRM_MODE_ENCODER_NONE, "None" },
263 { DRM_MODE_ENCODER_DAC, "DAC" },
264 { DRM_MODE_ENCODER_TMDS, "TMDS" },
265 { DRM_MODE_ENCODER_LVDS, "LVDS" },
266 { DRM_MODE_ENCODER_TVDAC, "TV" },
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200267 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
Shobhit Kumarb8923272013-08-27 15:12:13 +0300268 { DRM_MODE_ENCODER_DSI, "DSI" },
Dave Airlie182407a2014-05-02 11:09:54 +1000269 { DRM_MODE_ENCODER_DPMST, "DP MST" },
Dave Airlief453ba02008-11-07 14:05:41 -0800270};
271
Jesse Barnesac1bb362014-02-10 15:32:44 -0800272static const struct drm_prop_enum_list drm_subpixel_enum_list[] =
273{
274 { SubPixelUnknown, "Unknown" },
275 { SubPixelHorizontalRGB, "Horizontal RGB" },
276 { SubPixelHorizontalBGR, "Horizontal BGR" },
277 { SubPixelVerticalRGB, "Vertical RGB" },
278 { SubPixelVerticalBGR, "Vertical BGR" },
279 { SubPixelNone, "None" },
280};
281
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400282void drm_connector_ida_init(void)
283{
284 int i;
285
286 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
287 ida_init(&drm_connector_enum_list[i].ida);
288}
289
290void drm_connector_ida_destroy(void)
291{
292 int i;
293
294 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
295 ida_destroy(&drm_connector_enum_list[i].ida);
296}
297
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100298/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100299 * drm_get_connector_status_name - return a string for connector status
300 * @status: connector status to compute name of
301 *
302 * In contrast to the other drm_get_*_name functions this one here returns a
303 * const pointer and hence is threadsafe.
304 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000305const char *drm_get_connector_status_name(enum drm_connector_status status)
Dave Airlief453ba02008-11-07 14:05:41 -0800306{
307 if (status == connector_status_connected)
308 return "connected";
309 else if (status == connector_status_disconnected)
310 return "disconnected";
311 else
312 return "unknown";
313}
Lespiau, Damiened7951d2013-05-10 12:36:42 +0000314EXPORT_SYMBOL(drm_get_connector_status_name);
Dave Airlief453ba02008-11-07 14:05:41 -0800315
Jesse Barnesac1bb362014-02-10 15:32:44 -0800316/**
317 * drm_get_subpixel_order_name - return a string for a given subpixel enum
318 * @order: enum of subpixel_order
319 *
320 * Note you could abuse this and return something out of bounds, but that
321 * would be a caller error. No unscrubbed user data should make it here.
322 */
323const char *drm_get_subpixel_order_name(enum subpixel_order order)
324{
325 return drm_subpixel_enum_list[order].name;
326}
327EXPORT_SYMBOL(drm_get_subpixel_order_name);
328
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300329static char printable_char(int c)
330{
331 return isascii(c) && isprint(c) ? c : '?';
332}
333
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100334/**
335 * drm_get_format_name - return a string for drm fourcc format
336 * @format: format to compute name of
337 *
338 * Note that the buffer used by this function is globally shared and owned by
339 * the function itself.
340 *
341 * FIXME: This isn't really multithreading safe.
342 */
Ville Syrjäläd20d3172013-06-07 15:43:07 +0000343const char *drm_get_format_name(uint32_t format)
Ville Syrjälä6ba6d032013-06-10 11:15:10 +0300344{
345 static char buf[32];
346
347 snprintf(buf, sizeof(buf),
348 "%c%c%c%c %s-endian (0x%08x)",
349 printable_char(format & 0xff),
350 printable_char((format >> 8) & 0xff),
351 printable_char((format >> 16) & 0xff),
352 printable_char((format >> 24) & 0x7f),
353 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
354 format);
355
356 return buf;
357}
358EXPORT_SYMBOL(drm_get_format_name);
359
Dave Airlief453ba02008-11-07 14:05:41 -0800360/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100361 * drm_mode_object_get - allocate a new modeset identifier
Dave Airlief453ba02008-11-07 14:05:41 -0800362 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100363 * @obj: object pointer, used to generate unique ID
364 * @obj_type: object type
Dave Airlief453ba02008-11-07 14:05:41 -0800365 *
Dave Airlief453ba02008-11-07 14:05:41 -0800366 * Create a unique identifier based on @ptr in @dev's identifier space. Used
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100367 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
368 * modeset identifiers are _not_ reference counted. Hence don't use this for
369 * reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800370 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100371 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -0800372 * New unique (relative to other objects in @dev) integer identifier for the
373 * object.
374 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100375int drm_mode_object_get(struct drm_device *dev,
376 struct drm_mode_object *obj, uint32_t obj_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800377{
Dave Airlief453ba02008-11-07 14:05:41 -0800378 int ret;
379
Jesse Barnesad2563c2009-01-19 17:21:45 +1000380 mutex_lock(&dev->mode_config.idr_mutex);
Tejun Heo2e928812013-02-27 17:04:08 -0800381 ret = idr_alloc(&dev->mode_config.crtc_idr, obj, 1, 0, GFP_KERNEL);
382 if (ret >= 0) {
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100383 /*
384 * Set up the object linking under the protection of the idr
385 * lock so that other users can't see inconsistent state.
386 */
Tejun Heo2e928812013-02-27 17:04:08 -0800387 obj->id = ret;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100388 obj->type = obj_type;
389 }
Jesse Barnesad2563c2009-01-19 17:21:45 +1000390 mutex_unlock(&dev->mode_config.idr_mutex);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100391
Tejun Heo2e928812013-02-27 17:04:08 -0800392 return ret < 0 ? ret : 0;
Dave Airlief453ba02008-11-07 14:05:41 -0800393}
394
395/**
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100396 * drm_mode_object_put - free a modeset identifer
Dave Airlief453ba02008-11-07 14:05:41 -0800397 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100398 * @object: object to free
Dave Airlief453ba02008-11-07 14:05:41 -0800399 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100400 * Free @id from @dev's unique identifier pool. Note that despite the _get
401 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
402 * for reference counted modeset objects like framebuffers.
Dave Airlief453ba02008-11-07 14:05:41 -0800403 */
Daniel Vetter8bd441b2014-01-23 15:35:24 +0100404void drm_mode_object_put(struct drm_device *dev,
405 struct drm_mode_object *object)
Dave Airlief453ba02008-11-07 14:05:41 -0800406{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000407 mutex_lock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800408 idr_remove(&dev->mode_config.crtc_idr, object->id);
Jesse Barnesad2563c2009-01-19 17:21:45 +1000409 mutex_unlock(&dev->mode_config.idr_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -0800410}
411
Rob Clark98f75de2014-05-30 11:37:03 -0400412static struct drm_mode_object *_object_find(struct drm_device *dev,
413 uint32_t id, uint32_t type)
414{
415 struct drm_mode_object *obj = NULL;
416
417 mutex_lock(&dev->mode_config.idr_mutex);
418 obj = idr_find(&dev->mode_config.crtc_idr, id);
419 if (!obj || (type != DRM_MODE_OBJECT_ANY && obj->type != type) ||
420 (obj->id != id))
421 obj = NULL;
422 mutex_unlock(&dev->mode_config.idr_mutex);
423
424 return obj;
425}
426
Daniel Vetter786b99e2012-12-02 21:53:40 +0100427/**
428 * drm_mode_object_find - look up a drm object with static lifetime
429 * @dev: drm device
430 * @id: id of the mode object
431 * @type: type of the mode object
432 *
433 * Note that framebuffers cannot be looked up with this functions - since those
Rob Clark98f75de2014-05-30 11:37:03 -0400434 * are reference counted, they need special treatment. Even with
435 * DRM_MODE_OBJECT_ANY (although that will simply return NULL
436 * rather than WARN_ON()).
Daniel Vetter786b99e2012-12-02 21:53:40 +0100437 */
Daniel Vetter7a9c9062009-09-15 22:57:31 +0200438struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
439 uint32_t id, uint32_t type)
Dave Airlief453ba02008-11-07 14:05:41 -0800440{
Jesse Barnesad2563c2009-01-19 17:21:45 +1000441 struct drm_mode_object *obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800442
Daniel Vetter786b99e2012-12-02 21:53:40 +0100443 /* Framebuffers are reference counted and need their own lookup
444 * function.*/
445 WARN_ON(type == DRM_MODE_OBJECT_FB);
Rob Clark98f75de2014-05-30 11:37:03 -0400446 obj = _object_find(dev, id, type);
447 /* don't leak out unref'd fb's */
448 if (obj && (obj->type == DRM_MODE_OBJECT_FB))
Jesse Barnesad2563c2009-01-19 17:21:45 +1000449 obj = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800450 return obj;
451}
452EXPORT_SYMBOL(drm_mode_object_find);
453
454/**
Dave Airlief453ba02008-11-07 14:05:41 -0800455 * drm_framebuffer_init - initialize a framebuffer
456 * @dev: DRM device
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100457 * @fb: framebuffer to be initialized
458 * @funcs: ... with these functions
Dave Airlief453ba02008-11-07 14:05:41 -0800459 *
Dave Airlief453ba02008-11-07 14:05:41 -0800460 * Allocates an ID for the framebuffer's parent mode object, sets its mode
461 * functions & device file and adds it to the master fd list.
462 *
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100463 * IMPORTANT:
464 * This functions publishes the fb and makes it available for concurrent access
465 * by other users. Which means by this point the fb _must_ be fully set up -
466 * since all the fb attributes are invariant over its lifetime, no further
467 * locking but only correct reference counting is required.
468 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100469 * Returns:
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200470 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800471 */
472int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
473 const struct drm_framebuffer_funcs *funcs)
474{
475 int ret;
476
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100477 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000478 kref_init(&fb->refcount);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100479 INIT_LIST_HEAD(&fb->filp_head);
480 fb->dev = dev;
481 fb->funcs = funcs;
Rob Clarkf7eff602012-09-05 21:48:38 +0000482
Dave Airlief453ba02008-11-07 14:05:41 -0800483 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200484 if (ret)
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100485 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800486
Daniel Vetter2b677e82012-12-10 21:16:05 +0100487 /* Grab the idr reference. */
488 drm_framebuffer_reference(fb);
489
Dave Airlief453ba02008-11-07 14:05:41 -0800490 dev->mode_config.num_fb++;
491 list_add(&fb->head, &dev->mode_config.fb_list);
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100492out:
493 mutex_unlock(&dev->mode_config.fb_lock);
Dave Airlief453ba02008-11-07 14:05:41 -0800494
495 return 0;
496}
497EXPORT_SYMBOL(drm_framebuffer_init);
498
Rob Clarkf7eff602012-09-05 21:48:38 +0000499static void drm_framebuffer_free(struct kref *kref)
500{
501 struct drm_framebuffer *fb =
502 container_of(kref, struct drm_framebuffer, refcount);
503 fb->funcs->destroy(fb);
504}
505
Daniel Vetter2b677e82012-12-10 21:16:05 +0100506static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
507 uint32_t id)
508{
509 struct drm_mode_object *obj = NULL;
510 struct drm_framebuffer *fb;
511
512 mutex_lock(&dev->mode_config.idr_mutex);
513 obj = idr_find(&dev->mode_config.crtc_idr, id);
514 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
515 fb = NULL;
516 else
517 fb = obj_to_fb(obj);
518 mutex_unlock(&dev->mode_config.idr_mutex);
519
520 return fb;
521}
522
Rob Clarkf7eff602012-09-05 21:48:38 +0000523/**
Daniel Vetter786b99e2012-12-02 21:53:40 +0100524 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
525 * @dev: drm device
526 * @id: id of the fb object
527 *
528 * If successful, this grabs an additional reference to the framebuffer -
529 * callers need to make sure to eventually unreference the returned framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100530 * again, using @drm_framebuffer_unreference.
Daniel Vetter786b99e2012-12-02 21:53:40 +0100531 */
532struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
533 uint32_t id)
534{
Daniel Vetter786b99e2012-12-02 21:53:40 +0100535 struct drm_framebuffer *fb;
536
537 mutex_lock(&dev->mode_config.fb_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100538 fb = __drm_framebuffer_lookup(dev, id);
Daniel Vetter786b99e2012-12-02 21:53:40 +0100539 if (fb)
archit taneja9131d3d2013-04-10 08:59:39 +0000540 drm_framebuffer_reference(fb);
Daniel Vetter786b99e2012-12-02 21:53:40 +0100541 mutex_unlock(&dev->mode_config.fb_lock);
542
543 return fb;
544}
545EXPORT_SYMBOL(drm_framebuffer_lookup);
546
547/**
Rob Clarkf7eff602012-09-05 21:48:38 +0000548 * drm_framebuffer_unreference - unref a framebuffer
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100549 * @fb: framebuffer to unref
550 *
551 * This functions decrements the fb's refcount and frees it if it drops to zero.
Rob Clarkf7eff602012-09-05 21:48:38 +0000552 */
553void drm_framebuffer_unreference(struct drm_framebuffer *fb)
554{
Rob Clark82912722014-03-18 10:07:08 -0400555 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000556 kref_put(&fb->refcount, drm_framebuffer_free);
557}
558EXPORT_SYMBOL(drm_framebuffer_unreference);
559
560/**
561 * drm_framebuffer_reference - incr the fb refcnt
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100562 * @fb: framebuffer
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100563 *
564 * This functions increments the fb's refcount.
Rob Clarkf7eff602012-09-05 21:48:38 +0000565 */
566void drm_framebuffer_reference(struct drm_framebuffer *fb)
567{
Rob Clark82912722014-03-18 10:07:08 -0400568 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Rob Clarkf7eff602012-09-05 21:48:38 +0000569 kref_get(&fb->refcount);
570}
571EXPORT_SYMBOL(drm_framebuffer_reference);
572
Daniel Vetter2b677e82012-12-10 21:16:05 +0100573static void drm_framebuffer_free_bug(struct kref *kref)
574{
575 BUG();
576}
577
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100578static void __drm_framebuffer_unreference(struct drm_framebuffer *fb)
579{
Rob Clark82912722014-03-18 10:07:08 -0400580 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100581 kref_put(&fb->refcount, drm_framebuffer_free_bug);
582}
583
Daniel Vetter2b677e82012-12-10 21:16:05 +0100584/* dev->mode_config.fb_lock must be held! */
585static void __drm_framebuffer_unregister(struct drm_device *dev,
586 struct drm_framebuffer *fb)
587{
588 mutex_lock(&dev->mode_config.idr_mutex);
589 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
590 mutex_unlock(&dev->mode_config.idr_mutex);
591
592 fb->base.id = 0;
593
Daniel Vetter6c2a7532012-12-11 00:59:24 +0100594 __drm_framebuffer_unreference(fb);
Daniel Vetter2b677e82012-12-10 21:16:05 +0100595}
596
Dave Airlief453ba02008-11-07 14:05:41 -0800597/**
Daniel Vetter36206362012-12-10 20:42:17 +0100598 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
599 * @fb: fb to unregister
600 *
601 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
602 * those used for fbdev. Note that the caller must hold a reference of it's own,
603 * i.e. the object may not be destroyed through this call (since it'll lead to a
604 * locking inversion).
605 */
606void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
607{
Daniel Vetter2b677e82012-12-10 21:16:05 +0100608 struct drm_device *dev = fb->dev;
609
610 mutex_lock(&dev->mode_config.fb_lock);
611 /* Mark fb as reaped and drop idr ref. */
612 __drm_framebuffer_unregister(dev, fb);
613 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter36206362012-12-10 20:42:17 +0100614}
615EXPORT_SYMBOL(drm_framebuffer_unregister_private);
616
617/**
Dave Airlief453ba02008-11-07 14:05:41 -0800618 * drm_framebuffer_cleanup - remove a framebuffer object
619 * @fb: framebuffer to remove
620 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100621 * Cleanup framebuffer. This function is intended to be used from the drivers
622 * ->destroy callback. It can also be used to clean up driver private
623 * framebuffers embedded into a larger structure.
Daniel Vetter36206362012-12-10 20:42:17 +0100624 *
625 * Note that this function does not remove the fb from active usuage - if it is
626 * still used anywhere, hilarity can ensue since userspace could call getfb on
627 * the id and get back -EINVAL. Obviously no concern at driver unload time.
628 *
629 * Also, the framebuffer will not be removed from the lookup idr - for
630 * user-created framebuffers this will happen in in the rmfb ioctl. For
631 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
632 * drm_framebuffer_unregister_private.
Dave Airlief453ba02008-11-07 14:05:41 -0800633 */
634void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
635{
636 struct drm_device *dev = fb->dev;
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100637
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100638 mutex_lock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000639 list_del(&fb->head);
640 dev->mode_config.num_fb--;
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100641 mutex_unlock(&dev->mode_config.fb_lock);
Rob Clarkf7eff602012-09-05 21:48:38 +0000642}
643EXPORT_SYMBOL(drm_framebuffer_cleanup);
644
645/**
646 * drm_framebuffer_remove - remove and unreference a framebuffer object
647 * @fb: framebuffer to remove
648 *
Rob Clarkf7eff602012-09-05 21:48:38 +0000649 * Scans all the CRTCs and planes in @dev's mode_config. If they're
Daniel Vetter36206362012-12-10 20:42:17 +0100650 * using @fb, removes it, setting it to NULL. Then drops the reference to the
Daniel Vetterb62584e2012-12-11 16:51:35 +0100651 * passed-in framebuffer. Might take the modeset locks.
652 *
653 * Note that this function optimizes the cleanup away if the caller holds the
654 * last reference to the framebuffer. It is also guaranteed to not take the
655 * modeset locks in this case.
Rob Clarkf7eff602012-09-05 21:48:38 +0000656 */
657void drm_framebuffer_remove(struct drm_framebuffer *fb)
658{
659 struct drm_device *dev = fb->dev;
Dave Airlief453ba02008-11-07 14:05:41 -0800660 struct drm_crtc *crtc;
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800661 struct drm_plane *plane;
Dave Airlie5ef5f722009-08-17 13:11:23 +1000662 struct drm_mode_set set;
663 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800664
Daniel Vetter4b096ac2012-12-10 21:19:18 +0100665 WARN_ON(!list_empty(&fb->filp_head));
Daniel Vetter8faf6b12012-12-01 23:43:11 +0100666
Daniel Vetterb62584e2012-12-11 16:51:35 +0100667 /*
668 * drm ABI mandates that we remove any deleted framebuffers from active
669 * useage. But since most sane clients only remove framebuffers they no
670 * longer need, try to optimize this away.
671 *
672 * Since we're holding a reference ourselves, observing a refcount of 1
673 * means that we're the last holder and can skip it. Also, the refcount
674 * can never increase from 1 again, so we don't need any barriers or
675 * locks.
676 *
677 * Note that userspace could try to race with use and instate a new
678 * usage _after_ we've cleared all current ones. End result will be an
679 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
680 * in this manner.
681 */
682 if (atomic_read(&fb->refcount.refcount) > 1) {
683 drm_modeset_lock_all(dev);
684 /* remove from any CRTC */
685 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -0700686 if (crtc->primary->fb == fb) {
Daniel Vetterb62584e2012-12-11 16:51:35 +0100687 /* should turn off the crtc */
688 memset(&set, 0, sizeof(struct drm_mode_set));
689 set.crtc = crtc;
690 set.fb = NULL;
691 ret = drm_mode_set_config_internal(&set);
692 if (ret)
693 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
694 }
Dave Airlie5ef5f722009-08-17 13:11:23 +1000695 }
Dave Airlief453ba02008-11-07 14:05:41 -0800696
Daniel Vetterb62584e2012-12-11 16:51:35 +0100697 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
Ville Syrjälä9125e612013-06-03 16:10:40 +0300698 if (plane->fb == fb)
699 drm_plane_force_disable(plane);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800700 }
Daniel Vetterb62584e2012-12-11 16:51:35 +0100701 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -0800702 }
703
Rob Clarkf7eff602012-09-05 21:48:38 +0000704 drm_framebuffer_unreference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -0800705}
Rob Clarkf7eff602012-09-05 21:48:38 +0000706EXPORT_SYMBOL(drm_framebuffer_remove);
Dave Airlief453ba02008-11-07 14:05:41 -0800707
Rob Clark51fd3712013-11-19 12:10:12 -0500708DEFINE_WW_CLASS(crtc_ww_class);
709
Dave Airlief453ba02008-11-07 14:05:41 -0800710/**
Matt Ropere13161a2014-04-01 15:22:38 -0700711 * drm_crtc_init_with_planes - Initialise a new CRTC object with
712 * specified primary and cursor planes.
Dave Airlief453ba02008-11-07 14:05:41 -0800713 * @dev: DRM device
714 * @crtc: CRTC object to init
Matt Ropere13161a2014-04-01 15:22:38 -0700715 * @primary: Primary plane for CRTC
716 * @cursor: Cursor plane for CRTC
Dave Airlief453ba02008-11-07 14:05:41 -0800717 * @funcs: callbacks for the new CRTC
718 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000719 * Inits a new object created as base part of a driver crtc object.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200720 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100721 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200722 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800723 */
Matt Ropere13161a2014-04-01 15:22:38 -0700724int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
725 struct drm_plane *primary,
726 void *cursor,
727 const struct drm_crtc_funcs *funcs)
Dave Airlief453ba02008-11-07 14:05:41 -0800728{
Rob Clark51fd3712013-11-19 12:10:12 -0500729 struct drm_mode_config *config = &dev->mode_config;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200730 int ret;
731
Dave Airlief453ba02008-11-07 14:05:41 -0800732 crtc->dev = dev;
733 crtc->funcs = funcs;
Rob Clark7c80e122012-09-04 16:35:56 +0000734 crtc->invert_dimensions = false;
Dave Airlief453ba02008-11-07 14:05:41 -0800735
Daniel Vetter84849902012-12-02 00:28:11 +0100736 drm_modeset_lock_all(dev);
Rob Clark51fd3712013-11-19 12:10:12 -0500737 drm_modeset_lock_init(&crtc->mutex);
738 /* dropped by _unlock_all(): */
739 drm_modeset_lock(&crtc->mutex, config->acquire_ctx);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200740
741 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
742 if (ret)
743 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -0800744
Paulo Zanonibffd9de02012-05-15 18:09:05 -0300745 crtc->base.properties = &crtc->properties;
746
Rob Clark51fd3712013-11-19 12:10:12 -0500747 list_add_tail(&crtc->head, &config->crtc_list);
748 config->num_crtc++;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200749
Matt Ropere13161a2014-04-01 15:22:38 -0700750 crtc->primary = primary;
751 if (primary)
752 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
753
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200754 out:
Daniel Vetter84849902012-12-02 00:28:11 +0100755 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200756
757 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800758}
Matt Ropere13161a2014-04-01 15:22:38 -0700759EXPORT_SYMBOL(drm_crtc_init_with_planes);
Dave Airlief453ba02008-11-07 14:05:41 -0800760
761/**
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000762 * drm_crtc_cleanup - Clean up the core crtc usage
Dave Airlief453ba02008-11-07 14:05:41 -0800763 * @crtc: CRTC to cleanup
764 *
Ville Syrjäläad6f5c32013-06-05 12:39:55 +0000765 * This function cleans up @crtc and removes it from the DRM mode setting
766 * core. Note that the function does *not* free the crtc structure itself,
767 * this is the responsibility of the caller.
Dave Airlief453ba02008-11-07 14:05:41 -0800768 */
769void drm_crtc_cleanup(struct drm_crtc *crtc)
770{
771 struct drm_device *dev = crtc->dev;
772
Sachin Kamat9e1c1562012-11-19 09:44:56 +0000773 kfree(crtc->gamma_store);
774 crtc->gamma_store = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800775
Rob Clark51fd3712013-11-19 12:10:12 -0500776 drm_modeset_lock_fini(&crtc->mutex);
777
Dave Airlief453ba02008-11-07 14:05:41 -0800778 drm_mode_object_put(dev, &crtc->base);
779 list_del(&crtc->head);
780 dev->mode_config.num_crtc--;
781}
782EXPORT_SYMBOL(drm_crtc_cleanup);
783
784/**
Russell Kingdb5f7a62014-01-02 21:27:33 +0000785 * drm_crtc_index - find the index of a registered CRTC
786 * @crtc: CRTC to find index for
787 *
788 * Given a registered CRTC, return the index of that CRTC within a DRM
789 * device's list of CRTCs.
790 */
791unsigned int drm_crtc_index(struct drm_crtc *crtc)
792{
793 unsigned int index = 0;
794 struct drm_crtc *tmp;
795
796 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
797 if (tmp == crtc)
798 return index;
799
800 index++;
801 }
802
803 BUG();
804}
805EXPORT_SYMBOL(drm_crtc_index);
806
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100807/*
Dave Airlief453ba02008-11-07 14:05:41 -0800808 * drm_mode_remove - remove and free a mode
809 * @connector: connector list to modify
810 * @mode: mode to remove
811 *
Dave Airlief453ba02008-11-07 14:05:41 -0800812 * Remove @mode from @connector's mode list, then free it.
813 */
Lespiau, Damien86f422d2013-08-20 00:53:06 +0100814static void drm_mode_remove(struct drm_connector *connector,
815 struct drm_display_mode *mode)
Dave Airlief453ba02008-11-07 14:05:41 -0800816{
817 list_del(&mode->head);
Sascha Hauer554f1d72012-02-01 11:38:19 +0100818 drm_mode_destroy(connector->dev, mode);
Dave Airlief453ba02008-11-07 14:05:41 -0800819}
Dave Airlief453ba02008-11-07 14:05:41 -0800820
821/**
822 * drm_connector_init - Init a preallocated connector
823 * @dev: DRM device
824 * @connector: the connector to init
825 * @funcs: callbacks for this connector
Daniel Vetter065a50ed2012-12-02 00:09:18 +0100826 * @connector_type: user visible type of the connector
Dave Airlief453ba02008-11-07 14:05:41 -0800827 *
Dave Airlief453ba02008-11-07 14:05:41 -0800828 * Initialises a preallocated connector. Connectors should be
829 * subclassed as part of driver connector objects.
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200830 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100831 * Returns:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200832 * Zero on success, error code on failure.
Dave Airlief453ba02008-11-07 14:05:41 -0800833 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200834int drm_connector_init(struct drm_device *dev,
835 struct drm_connector *connector,
836 const struct drm_connector_funcs *funcs,
837 int connector_type)
Dave Airlief453ba02008-11-07 14:05:41 -0800838{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200839 int ret;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400840 struct ida *connector_ida =
841 &drm_connector_enum_list[connector_type].ida;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200842
Daniel Vetter84849902012-12-02 00:28:11 +0100843 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -0800844
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200845 ret = drm_mode_object_get(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR);
846 if (ret)
Jani Nikula2abdd312014-05-14 16:58:19 +0300847 goto out_unlock;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200848
Paulo Zanoni7e3bdf42012-05-15 18:09:01 -0300849 connector->base.properties = &connector->properties;
Dave Airlief453ba02008-11-07 14:05:41 -0800850 connector->dev = dev;
851 connector->funcs = funcs;
Dave Airlief453ba02008-11-07 14:05:41 -0800852 connector->connector_type = connector_type;
853 connector->connector_type_id =
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400854 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
855 if (connector->connector_type_id < 0) {
856 ret = connector->connector_type_id;
Jani Nikula2abdd312014-05-14 16:58:19 +0300857 goto out_put;
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400858 }
Jani Nikula2abdd312014-05-14 16:58:19 +0300859 connector->name =
860 kasprintf(GFP_KERNEL, "%s-%d",
861 drm_connector_enum_list[connector_type].name,
862 connector->connector_type_id);
863 if (!connector->name) {
864 ret = -ENOMEM;
865 goto out_put;
866 }
867
Dave Airlief453ba02008-11-07 14:05:41 -0800868 INIT_LIST_HEAD(&connector->probed_modes);
869 INIT_LIST_HEAD(&connector->modes);
870 connector->edid_blob_ptr = NULL;
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +0000871 connector->status = connector_status_unknown;
Dave Airlief453ba02008-11-07 14:05:41 -0800872
873 list_add_tail(&connector->head, &dev->mode_config.connector_list);
874 dev->mode_config.num_connector++;
875
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200876 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
Rob Clark58495562012-10-11 20:50:56 -0500877 drm_object_attach_property(&connector->base,
Thomas Hellstroma7331e52011-10-22 10:36:19 +0200878 dev->mode_config.edid_property,
879 0);
Dave Airlief453ba02008-11-07 14:05:41 -0800880
Rob Clark58495562012-10-11 20:50:56 -0500881 drm_object_attach_property(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -0800882 dev->mode_config.dpms_property, 0);
883
Thomas Wood30f65702014-06-18 17:52:32 +0100884 connector->debugfs_entry = NULL;
885
Jani Nikula2abdd312014-05-14 16:58:19 +0300886out_put:
887 if (ret)
888 drm_mode_object_put(dev, &connector->base);
889
890out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +0100891 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +0200892
893 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -0800894}
895EXPORT_SYMBOL(drm_connector_init);
896
897/**
898 * drm_connector_cleanup - cleans up an initialised connector
899 * @connector: connector to cleanup
900 *
Dave Airlief453ba02008-11-07 14:05:41 -0800901 * Cleans up the connector but doesn't free the object.
902 */
903void drm_connector_cleanup(struct drm_connector *connector)
904{
905 struct drm_device *dev = connector->dev;
906 struct drm_display_mode *mode, *t;
907
908 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
909 drm_mode_remove(connector, mode);
910
911 list_for_each_entry_safe(mode, t, &connector->modes, head)
912 drm_mode_remove(connector, mode);
913
Ilia Mirkinb21e3af2013-08-07 22:34:48 -0400914 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
915 connector->connector_type_id);
916
Dave Airlief453ba02008-11-07 14:05:41 -0800917 drm_mode_object_put(dev, &connector->base);
Jani Nikula2abdd312014-05-14 16:58:19 +0300918 kfree(connector->name);
919 connector->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -0800920 list_del(&connector->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +0000921 dev->mode_config.num_connector--;
Dave Airlief453ba02008-11-07 14:05:41 -0800922}
923EXPORT_SYMBOL(drm_connector_cleanup);
924
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100925/**
Thomas Wood34ea3d32014-05-29 16:57:41 +0100926 * drm_connector_register - register a connector
927 * @connector: the connector to register
928 *
929 * Register userspace interfaces for a connector
930 *
931 * Returns:
932 * Zero on success, error code on failure.
933 */
934int drm_connector_register(struct drm_connector *connector)
935{
Thomas Wood30f65702014-06-18 17:52:32 +0100936 int ret;
937
938 ret = drm_sysfs_connector_add(connector);
939 if (ret)
940 return ret;
941
942 ret = drm_debugfs_connector_add(connector);
943 if (ret) {
944 drm_sysfs_connector_remove(connector);
945 return ret;
946 }
947
948 return 0;
Thomas Wood34ea3d32014-05-29 16:57:41 +0100949}
950EXPORT_SYMBOL(drm_connector_register);
951
952/**
953 * drm_connector_unregister - unregister a connector
954 * @connector: the connector to unregister
955 *
956 * Unregister userspace interfaces for a connector
957 */
958void drm_connector_unregister(struct drm_connector *connector)
959{
960 drm_sysfs_connector_remove(connector);
Thomas Wood30f65702014-06-18 17:52:32 +0100961 drm_debugfs_connector_remove(connector);
Thomas Wood34ea3d32014-05-29 16:57:41 +0100962}
963EXPORT_SYMBOL(drm_connector_unregister);
964
965
966/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100967 * drm_connector_unplug_all - unregister connector userspace interfaces
968 * @dev: drm device
969 *
970 * This function unregisters all connector userspace interfaces in sysfs. Should
971 * be call when the device is disconnected, e.g. from an usb driver's
972 * ->disconnect callback.
973 */
Dave Airliecbc7e222012-02-20 14:16:40 +0000974void drm_connector_unplug_all(struct drm_device *dev)
975{
976 struct drm_connector *connector;
977
978 /* taking the mode config mutex ends up in a clash with sysfs */
979 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
Thomas Wood34ea3d32014-05-29 16:57:41 +0100980 drm_connector_unregister(connector);
Dave Airliecbc7e222012-02-20 14:16:40 +0000981
982}
983EXPORT_SYMBOL(drm_connector_unplug_all);
984
Daniel Vetterc8e32cc2014-03-10 21:33:02 +0100985/**
986 * drm_bridge_init - initialize a drm transcoder/bridge
987 * @dev: drm device
988 * @bridge: transcoder/bridge to set up
989 * @funcs: bridge function table
990 *
991 * Initialises a preallocated bridge. Bridges should be
992 * subclassed as part of driver connector objects.
993 *
994 * Returns:
995 * Zero on success, error code on failure.
996 */
Sean Paul3b336ec2013-08-14 16:47:37 -0400997int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
998 const struct drm_bridge_funcs *funcs)
999{
1000 int ret;
1001
1002 drm_modeset_lock_all(dev);
1003
1004 ret = drm_mode_object_get(dev, &bridge->base, DRM_MODE_OBJECT_BRIDGE);
1005 if (ret)
1006 goto out;
1007
1008 bridge->dev = dev;
1009 bridge->funcs = funcs;
1010
1011 list_add_tail(&bridge->head, &dev->mode_config.bridge_list);
1012 dev->mode_config.num_bridge++;
1013
1014 out:
1015 drm_modeset_unlock_all(dev);
1016 return ret;
1017}
1018EXPORT_SYMBOL(drm_bridge_init);
1019
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001020/**
1021 * drm_bridge_cleanup - cleans up an initialised bridge
1022 * @bridge: bridge to cleanup
1023 *
1024 * Cleans up the bridge but doesn't free the object.
1025 */
Sean Paul3b336ec2013-08-14 16:47:37 -04001026void drm_bridge_cleanup(struct drm_bridge *bridge)
1027{
1028 struct drm_device *dev = bridge->dev;
1029
1030 drm_modeset_lock_all(dev);
1031 drm_mode_object_put(dev, &bridge->base);
1032 list_del(&bridge->head);
1033 dev->mode_config.num_bridge--;
1034 drm_modeset_unlock_all(dev);
1035}
1036EXPORT_SYMBOL(drm_bridge_cleanup);
1037
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001038/**
1039 * drm_encoder_init - Init a preallocated encoder
1040 * @dev: drm device
1041 * @encoder: the encoder to init
1042 * @funcs: callbacks for this encoder
1043 * @encoder_type: user visible type of the encoder
1044 *
1045 * Initialises a preallocated encoder. Encoder should be
1046 * subclassed as part of driver encoder objects.
1047 *
1048 * Returns:
1049 * Zero on success, error code on failure.
1050 */
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001051int drm_encoder_init(struct drm_device *dev,
Dave Airliecbc7e222012-02-20 14:16:40 +00001052 struct drm_encoder *encoder,
1053 const struct drm_encoder_funcs *funcs,
1054 int encoder_type)
Dave Airlief453ba02008-11-07 14:05:41 -08001055{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001056 int ret;
1057
Daniel Vetter84849902012-12-02 00:28:11 +01001058 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001059
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001060 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1061 if (ret)
Jani Nikulae5748942014-05-14 16:58:20 +03001062 goto out_unlock;
Dave Airlief453ba02008-11-07 14:05:41 -08001063
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001064 encoder->dev = dev;
Dave Airlief453ba02008-11-07 14:05:41 -08001065 encoder->encoder_type = encoder_type;
1066 encoder->funcs = funcs;
Jani Nikulae5748942014-05-14 16:58:20 +03001067 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1068 drm_encoder_enum_list[encoder_type].name,
1069 encoder->base.id);
1070 if (!encoder->name) {
1071 ret = -ENOMEM;
1072 goto out_put;
1073 }
Dave Airlief453ba02008-11-07 14:05:41 -08001074
1075 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1076 dev->mode_config.num_encoder++;
1077
Jani Nikulae5748942014-05-14 16:58:20 +03001078out_put:
1079 if (ret)
1080 drm_mode_object_put(dev, &encoder->base);
1081
1082out_unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001083 drm_modeset_unlock_all(dev);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001084
1085 return ret;
Dave Airlief453ba02008-11-07 14:05:41 -08001086}
1087EXPORT_SYMBOL(drm_encoder_init);
1088
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001089/**
1090 * drm_encoder_cleanup - cleans up an initialised encoder
1091 * @encoder: encoder to cleanup
1092 *
1093 * Cleans up the encoder but doesn't free the object.
1094 */
Dave Airlief453ba02008-11-07 14:05:41 -08001095void drm_encoder_cleanup(struct drm_encoder *encoder)
1096{
1097 struct drm_device *dev = encoder->dev;
Daniel Vetter84849902012-12-02 00:28:11 +01001098 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001099 drm_mode_object_put(dev, &encoder->base);
Jani Nikulae5748942014-05-14 16:58:20 +03001100 kfree(encoder->name);
1101 encoder->name = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001102 list_del(&encoder->head);
Joonyoung Shim6380c502011-08-27 02:06:21 +00001103 dev->mode_config.num_encoder--;
Daniel Vetter84849902012-12-02 00:28:11 +01001104 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001105}
1106EXPORT_SYMBOL(drm_encoder_cleanup);
1107
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001108/**
Matt Roperdc415ff2014-04-01 15:22:36 -07001109 * drm_universal_plane_init - Initialize a new universal plane object
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001110 * @dev: DRM device
1111 * @plane: plane object to init
1112 * @possible_crtcs: bitmask of possible CRTCs
1113 * @funcs: callbacks for the new plane
1114 * @formats: array of supported formats (%DRM_FORMAT_*)
1115 * @format_count: number of elements in @formats
Matt Roperdc415ff2014-04-01 15:22:36 -07001116 * @type: type of plane (overlay, primary, cursor)
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001117 *
Matt Roperdc415ff2014-04-01 15:22:36 -07001118 * Initializes a plane object of type @type.
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001119 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001120 * Returns:
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001121 * Zero on success, error code on failure.
1122 */
Matt Roperdc415ff2014-04-01 15:22:36 -07001123int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1124 unsigned long possible_crtcs,
1125 const struct drm_plane_funcs *funcs,
1126 const uint32_t *formats, uint32_t format_count,
1127 enum drm_plane_type type)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001128{
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001129 int ret;
1130
Daniel Vetter84849902012-12-02 00:28:11 +01001131 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001132
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001133 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1134 if (ret)
1135 goto out;
1136
Rob Clark4d939142012-05-17 02:23:27 -06001137 plane->base.properties = &plane->properties;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001138 plane->dev = dev;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001139 plane->funcs = funcs;
1140 plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
1141 GFP_KERNEL);
1142 if (!plane->format_types) {
1143 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1144 drm_mode_object_put(dev, &plane->base);
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001145 ret = -ENOMEM;
1146 goto out;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001147 }
1148
Jesse Barnes308e5bc2011-11-14 14:51:28 -08001149 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001150 plane->format_count = format_count;
1151 plane->possible_crtcs = possible_crtcs;
Matt Roperdc415ff2014-04-01 15:22:36 -07001152 plane->type = type;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001153
Matt Roperdc415ff2014-04-01 15:22:36 -07001154 list_add_tail(&plane->head, &dev->mode_config.plane_list);
1155 dev->mode_config.num_total_plane++;
1156 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1157 dev->mode_config.num_overlay_plane++;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001158
Rob Clark9922ab52014-04-01 20:16:57 -04001159 drm_object_attach_property(&plane->base,
1160 dev->mode_config.plane_type_property,
1161 plane->type);
1162
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001163 out:
Daniel Vetter84849902012-12-02 00:28:11 +01001164 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001165
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02001166 return ret;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001167}
Matt Roperdc415ff2014-04-01 15:22:36 -07001168EXPORT_SYMBOL(drm_universal_plane_init);
1169
1170/**
1171 * drm_plane_init - Initialize a legacy plane
1172 * @dev: DRM device
1173 * @plane: plane object to init
1174 * @possible_crtcs: bitmask of possible CRTCs
1175 * @funcs: callbacks for the new plane
1176 * @formats: array of supported formats (%DRM_FORMAT_*)
1177 * @format_count: number of elements in @formats
1178 * @is_primary: plane type (primary vs overlay)
1179 *
1180 * Legacy API to initialize a DRM plane.
1181 *
1182 * New drivers should call drm_universal_plane_init() instead.
1183 *
1184 * Returns:
1185 * Zero on success, error code on failure.
1186 */
1187int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1188 unsigned long possible_crtcs,
1189 const struct drm_plane_funcs *funcs,
1190 const uint32_t *formats, uint32_t format_count,
1191 bool is_primary)
1192{
1193 enum drm_plane_type type;
1194
1195 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1196 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1197 formats, format_count, type);
1198}
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001199EXPORT_SYMBOL(drm_plane_init);
1200
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001201/**
1202 * drm_plane_cleanup - Clean up the core plane usage
1203 * @plane: plane to cleanup
1204 *
1205 * This function cleans up @plane and removes it from the DRM mode setting
1206 * core. Note that the function does *not* free the plane structure itself,
1207 * this is the responsibility of the caller.
1208 */
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001209void drm_plane_cleanup(struct drm_plane *plane)
1210{
1211 struct drm_device *dev = plane->dev;
1212
Daniel Vetter84849902012-12-02 00:28:11 +01001213 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001214 kfree(plane->format_types);
1215 drm_mode_object_put(dev, &plane->base);
Matt Roperdc415ff2014-04-01 15:22:36 -07001216
1217 BUG_ON(list_empty(&plane->head));
1218
1219 list_del(&plane->head);
1220 dev->mode_config.num_total_plane--;
1221 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1222 dev->mode_config.num_overlay_plane--;
Daniel Vetter84849902012-12-02 00:28:11 +01001223 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08001224}
1225EXPORT_SYMBOL(drm_plane_cleanup);
1226
Ville Syrjälä35f2c3a2013-06-05 15:39:56 +03001227/**
1228 * drm_plane_force_disable - Forcibly disable a plane
1229 * @plane: plane to disable
1230 *
1231 * Forces the plane to be disabled.
1232 *
1233 * Used when the plane's current framebuffer is destroyed,
1234 * and when restoring fbdev mode.
1235 */
Ville Syrjälä9125e612013-06-03 16:10:40 +03001236void drm_plane_force_disable(struct drm_plane *plane)
1237{
Daniel Vetter0fe27f02014-04-23 17:34:06 +02001238 struct drm_framebuffer *old_fb = plane->fb;
Ville Syrjälä9125e612013-06-03 16:10:40 +03001239 int ret;
1240
Daniel Vetter0fe27f02014-04-23 17:34:06 +02001241 if (!old_fb)
Ville Syrjälä9125e612013-06-03 16:10:40 +03001242 return;
1243
1244 ret = plane->funcs->disable_plane(plane);
Daniel Vetter731cce42014-04-23 10:24:11 +02001245 if (ret) {
Ville Syrjälä9125e612013-06-03 16:10:40 +03001246 DRM_ERROR("failed to disable plane with busy fb\n");
Daniel Vetter731cce42014-04-23 10:24:11 +02001247 return;
1248 }
Ville Syrjälä9125e612013-06-03 16:10:40 +03001249 /* disconnect the plane from the fb and crtc: */
Daniel Vetter0fe27f02014-04-23 17:34:06 +02001250 __drm_framebuffer_unreference(old_fb);
Ville Syrjälä9125e612013-06-03 16:10:40 +03001251 plane->fb = NULL;
1252 plane->crtc = NULL;
1253}
1254EXPORT_SYMBOL(drm_plane_force_disable);
1255
Dave Airlief453ba02008-11-07 14:05:41 -08001256static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
1257{
1258 struct drm_property *edid;
1259 struct drm_property *dpms;
Dave Airlief453ba02008-11-07 14:05:41 -08001260
1261 /*
1262 * Standard properties (apply to all connectors)
1263 */
1264 edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1265 DRM_MODE_PROP_IMMUTABLE,
1266 "EDID", 0);
1267 dev->mode_config.edid_property = edid;
1268
Sascha Hauer4a67d392012-02-06 10:58:17 +01001269 dpms = drm_property_create_enum(dev, 0,
1270 "DPMS", drm_dpms_enum_list,
1271 ARRAY_SIZE(drm_dpms_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001272 dev->mode_config.dpms_property = dpms;
1273
1274 return 0;
1275}
1276
Rob Clark9922ab52014-04-01 20:16:57 -04001277static int drm_mode_create_standard_plane_properties(struct drm_device *dev)
1278{
1279 struct drm_property *type;
1280
1281 /*
1282 * Standard properties (apply to all planes)
1283 */
1284 type = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1285 "type", drm_plane_type_enum_list,
1286 ARRAY_SIZE(drm_plane_type_enum_list));
1287 dev->mode_config.plane_type_property = type;
1288
1289 return 0;
1290}
1291
Dave Airlief453ba02008-11-07 14:05:41 -08001292/**
1293 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1294 * @dev: DRM device
1295 *
1296 * Called by a driver the first time a DVI-I connector is made.
1297 */
1298int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1299{
1300 struct drm_property *dvi_i_selector;
1301 struct drm_property *dvi_i_subconnector;
Dave Airlief453ba02008-11-07 14:05:41 -08001302
1303 if (dev->mode_config.dvi_i_select_subconnector_property)
1304 return 0;
1305
1306 dvi_i_selector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001307 drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001308 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001309 drm_dvi_i_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001310 ARRAY_SIZE(drm_dvi_i_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001311 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1312
Sascha Hauer4a67d392012-02-06 10:58:17 +01001313 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Dave Airlief453ba02008-11-07 14:05:41 -08001314 "subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001315 drm_dvi_i_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001316 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001317 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1318
1319 return 0;
1320}
1321EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1322
1323/**
1324 * drm_create_tv_properties - create TV specific connector properties
1325 * @dev: DRM device
1326 * @num_modes: number of different TV formats (modes) supported
1327 * @modes: array of pointers to strings containing name of each format
1328 *
1329 * Called by a driver's TV initialization routine, this function creates
1330 * the TV specific connector properties for a given device. Caller is
1331 * responsible for allocating a list of format names and passing them to
1332 * this routine.
1333 */
1334int drm_mode_create_tv_properties(struct drm_device *dev, int num_modes,
1335 char *modes[])
1336{
1337 struct drm_property *tv_selector;
1338 struct drm_property *tv_subconnector;
1339 int i;
1340
1341 if (dev->mode_config.tv_select_subconnector_property)
1342 return 0;
1343
1344 /*
1345 * Basic connector properties
1346 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01001347 tv_selector = drm_property_create_enum(dev, 0,
Dave Airlief453ba02008-11-07 14:05:41 -08001348 "select subconnector",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001349 drm_tv_select_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001350 ARRAY_SIZE(drm_tv_select_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001351 dev->mode_config.tv_select_subconnector_property = tv_selector;
1352
1353 tv_subconnector =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001354 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1355 "subconnector",
1356 drm_tv_subconnector_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001357 ARRAY_SIZE(drm_tv_subconnector_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001358 dev->mode_config.tv_subconnector_property = tv_subconnector;
1359
1360 /*
1361 * Other, TV specific properties: margins & TV modes.
1362 */
1363 dev->mode_config.tv_left_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001364 drm_property_create_range(dev, 0, "left margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001365
1366 dev->mode_config.tv_right_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001367 drm_property_create_range(dev, 0, "right margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001368
1369 dev->mode_config.tv_top_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001370 drm_property_create_range(dev, 0, "top margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001371
1372 dev->mode_config.tv_bottom_margin_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001373 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
Dave Airlief453ba02008-11-07 14:05:41 -08001374
1375 dev->mode_config.tv_mode_property =
1376 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1377 "mode", num_modes);
1378 for (i = 0; i < num_modes; i++)
1379 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1380 i, modes[i]);
1381
Francisco Jerezb6b79022009-08-02 04:19:20 +02001382 dev->mode_config.tv_brightness_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001383 drm_property_create_range(dev, 0, "brightness", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001384
1385 dev->mode_config.tv_contrast_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001386 drm_property_create_range(dev, 0, "contrast", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001387
1388 dev->mode_config.tv_flicker_reduction_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001389 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
Francisco Jerezb6b79022009-08-02 04:19:20 +02001390
Francisco Jereza75f0232009-08-12 02:30:10 +02001391 dev->mode_config.tv_overscan_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001392 drm_property_create_range(dev, 0, "overscan", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001393
1394 dev->mode_config.tv_saturation_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001395 drm_property_create_range(dev, 0, "saturation", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001396
1397 dev->mode_config.tv_hue_property =
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01001398 drm_property_create_range(dev, 0, "hue", 0, 100);
Francisco Jereza75f0232009-08-12 02:30:10 +02001399
Dave Airlief453ba02008-11-07 14:05:41 -08001400 return 0;
1401}
1402EXPORT_SYMBOL(drm_mode_create_tv_properties);
1403
1404/**
1405 * drm_mode_create_scaling_mode_property - create scaling mode property
1406 * @dev: DRM device
1407 *
1408 * Called by a driver the first time it's needed, must be attached to desired
1409 * connectors.
1410 */
1411int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1412{
1413 struct drm_property *scaling_mode;
Dave Airlief453ba02008-11-07 14:05:41 -08001414
1415 if (dev->mode_config.scaling_mode_property)
1416 return 0;
1417
1418 scaling_mode =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001419 drm_property_create_enum(dev, 0, "scaling mode",
1420 drm_scaling_mode_enum_list,
Dave Airlief453ba02008-11-07 14:05:41 -08001421 ARRAY_SIZE(drm_scaling_mode_enum_list));
Dave Airlief453ba02008-11-07 14:05:41 -08001422
1423 dev->mode_config.scaling_mode_property = scaling_mode;
1424
1425 return 0;
1426}
1427EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1428
1429/**
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001430 * drm_mode_create_dirty_property - create dirty property
1431 * @dev: DRM device
1432 *
1433 * Called by a driver the first time it's needed, must be attached to desired
1434 * connectors.
1435 */
1436int drm_mode_create_dirty_info_property(struct drm_device *dev)
1437{
1438 struct drm_property *dirty_info;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001439
1440 if (dev->mode_config.dirty_info_property)
1441 return 0;
1442
1443 dirty_info =
Sascha Hauer4a67d392012-02-06 10:58:17 +01001444 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001445 "dirty",
Sascha Hauer4a67d392012-02-06 10:58:17 +01001446 drm_dirty_info_enum_list,
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001447 ARRAY_SIZE(drm_dirty_info_enum_list));
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00001448 dev->mode_config.dirty_info_property = dirty_info;
1449
1450 return 0;
1451}
1452EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1453
Ville Syrjäläea9cbb02013-04-25 20:09:20 +03001454static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
Dave Airlief453ba02008-11-07 14:05:41 -08001455{
1456 uint32_t total_objects = 0;
1457
1458 total_objects += dev->mode_config.num_crtc;
1459 total_objects += dev->mode_config.num_connector;
1460 total_objects += dev->mode_config.num_encoder;
Sean Paul3b336ec2013-08-14 16:47:37 -04001461 total_objects += dev->mode_config.num_bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001462
Dave Airlief453ba02008-11-07 14:05:41 -08001463 group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1464 if (!group->id_list)
1465 return -ENOMEM;
1466
1467 group->num_crtcs = 0;
1468 group->num_connectors = 0;
1469 group->num_encoders = 0;
Sean Paul3b336ec2013-08-14 16:47:37 -04001470 group->num_bridges = 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001471 return 0;
1472}
1473
Dave Airliead222792014-05-02 13:22:19 +10001474void drm_mode_group_destroy(struct drm_mode_group *group)
1475{
1476 kfree(group->id_list);
1477 group->id_list = NULL;
1478}
1479
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001480/*
1481 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1482 * the drm core's responsibility to set up mode control groups.
1483 */
Dave Airlief453ba02008-11-07 14:05:41 -08001484int drm_mode_group_init_legacy_group(struct drm_device *dev,
1485 struct drm_mode_group *group)
1486{
1487 struct drm_crtc *crtc;
1488 struct drm_encoder *encoder;
1489 struct drm_connector *connector;
Sean Paul3b336ec2013-08-14 16:47:37 -04001490 struct drm_bridge *bridge;
Dave Airlief453ba02008-11-07 14:05:41 -08001491 int ret;
1492
1493 if ((ret = drm_mode_group_init(dev, group)))
1494 return ret;
1495
1496 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1497 group->id_list[group->num_crtcs++] = crtc->base.id;
1498
1499 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1500 group->id_list[group->num_crtcs + group->num_encoders++] =
1501 encoder->base.id;
1502
1503 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1504 group->id_list[group->num_crtcs + group->num_encoders +
1505 group->num_connectors++] = connector->base.id;
1506
Sean Paul3b336ec2013-08-14 16:47:37 -04001507 list_for_each_entry(bridge, &dev->mode_config.bridge_list, head)
1508 group->id_list[group->num_crtcs + group->num_encoders +
1509 group->num_connectors + group->num_bridges++] =
1510 bridge->base.id;
1511
Dave Airlief453ba02008-11-07 14:05:41 -08001512 return 0;
1513}
Dave Airlie9c1dfc52012-03-20 06:59:29 +00001514EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
Dave Airlief453ba02008-11-07 14:05:41 -08001515
1516/**
Dave Airlief453ba02008-11-07 14:05:41 -08001517 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1518 * @out: drm_mode_modeinfo struct to return to the user
1519 * @in: drm_display_mode to use
1520 *
Dave Airlief453ba02008-11-07 14:05:41 -08001521 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1522 * the user.
1523 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001524static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1525 const struct drm_display_mode *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001526{
Ville Syrjäläe36fae32012-03-13 12:35:40 +02001527 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1528 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1529 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1530 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1531 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1532 "timing values too large for mode info\n");
1533
Dave Airlief453ba02008-11-07 14:05:41 -08001534 out->clock = in->clock;
1535 out->hdisplay = in->hdisplay;
1536 out->hsync_start = in->hsync_start;
1537 out->hsync_end = in->hsync_end;
1538 out->htotal = in->htotal;
1539 out->hskew = in->hskew;
1540 out->vdisplay = in->vdisplay;
1541 out->vsync_start = in->vsync_start;
1542 out->vsync_end = in->vsync_end;
1543 out->vtotal = in->vtotal;
1544 out->vscan = in->vscan;
1545 out->vrefresh = in->vrefresh;
1546 out->flags = in->flags;
1547 out->type = in->type;
1548 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1549 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1550}
1551
1552/**
Marc-André Lureau74afee72013-10-18 16:11:27 +02001553 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
Dave Airlief453ba02008-11-07 14:05:41 -08001554 * @out: drm_display_mode to return to the user
1555 * @in: drm_mode_modeinfo to use
1556 *
Dave Airlief453ba02008-11-07 14:05:41 -08001557 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1558 * the caller.
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001559 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001560 * Returns:
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001561 * Zero on success, errno on failure.
Dave Airlief453ba02008-11-07 14:05:41 -08001562 */
Ville Syrjälä93bbf6d2012-03-13 12:35:47 +02001563static int drm_crtc_convert_umode(struct drm_display_mode *out,
1564 const struct drm_mode_modeinfo *in)
Dave Airlief453ba02008-11-07 14:05:41 -08001565{
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001566 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1567 return -ERANGE;
1568
Damien Lespiau5848ad42013-09-27 12:11:50 +01001569 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1570 return -EINVAL;
1571
Dave Airlief453ba02008-11-07 14:05:41 -08001572 out->clock = in->clock;
1573 out->hdisplay = in->hdisplay;
1574 out->hsync_start = in->hsync_start;
1575 out->hsync_end = in->hsync_end;
1576 out->htotal = in->htotal;
1577 out->hskew = in->hskew;
1578 out->vdisplay = in->vdisplay;
1579 out->vsync_start = in->vsync_start;
1580 out->vsync_end = in->vsync_end;
1581 out->vtotal = in->vtotal;
1582 out->vscan = in->vscan;
1583 out->vrefresh = in->vrefresh;
1584 out->flags = in->flags;
1585 out->type = in->type;
1586 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1587 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
Ville Syrjälä90367bf2012-03-13 12:35:44 +02001588
1589 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08001590}
1591
1592/**
1593 * drm_mode_getresources - get graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001594 * @dev: drm device for the ioctl
1595 * @data: data pointer for the ioctl
1596 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001597 *
Dave Airlief453ba02008-11-07 14:05:41 -08001598 * Construct a set of configuration description structures and return
1599 * them to the user, including CRTC, connector and framebuffer configuration.
1600 *
1601 * Called by the user via ioctl.
1602 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001603 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08001604 * Zero on success, errno on failure.
1605 */
1606int drm_mode_getresources(struct drm_device *dev, void *data,
1607 struct drm_file *file_priv)
1608{
1609 struct drm_mode_card_res *card_res = data;
1610 struct list_head *lh;
1611 struct drm_framebuffer *fb;
1612 struct drm_connector *connector;
1613 struct drm_crtc *crtc;
1614 struct drm_encoder *encoder;
1615 int ret = 0;
1616 int connector_count = 0;
1617 int crtc_count = 0;
1618 int fb_count = 0;
1619 int encoder_count = 0;
1620 int copied = 0, i;
1621 uint32_t __user *fb_id;
1622 uint32_t __user *crtc_id;
1623 uint32_t __user *connector_id;
1624 uint32_t __user *encoder_id;
1625 struct drm_mode_group *mode_group;
1626
Dave Airliefb3b06c2011-02-08 13:55:21 +10001627 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1628 return -EINVAL;
1629
Dave Airlief453ba02008-11-07 14:05:41 -08001630
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001631 mutex_lock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08001632 /*
1633 * For the non-control nodes we need to limit the list of resources
1634 * by IDs in the group list for this node
1635 */
1636 list_for_each(lh, &file_priv->fbs)
1637 fb_count++;
1638
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001639 /* handle this in 4 parts */
1640 /* FBs */
1641 if (card_res->count_fbs >= fb_count) {
1642 copied = 0;
1643 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1644 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1645 if (put_user(fb->base.id, fb_id + copied)) {
1646 mutex_unlock(&file_priv->fbs_lock);
1647 return -EFAULT;
1648 }
1649 copied++;
1650 }
1651 }
1652 card_res->count_fbs = fb_count;
1653 mutex_unlock(&file_priv->fbs_lock);
1654
1655 drm_modeset_lock_all(dev);
Thomas Hellstrom43683052014-03-13 11:07:44 +01001656 if (!drm_is_primary_client(file_priv)) {
Dave Airlief453ba02008-11-07 14:05:41 -08001657
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001658 mode_group = NULL;
Dave Airlief453ba02008-11-07 14:05:41 -08001659 list_for_each(lh, &dev->mode_config.crtc_list)
1660 crtc_count++;
1661
1662 list_for_each(lh, &dev->mode_config.connector_list)
1663 connector_count++;
1664
1665 list_for_each(lh, &dev->mode_config.encoder_list)
1666 encoder_count++;
1667 } else {
1668
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001669 mode_group = &file_priv->master->minor->mode_group;
Dave Airlief453ba02008-11-07 14:05:41 -08001670 crtc_count = mode_group->num_crtcs;
1671 connector_count = mode_group->num_connectors;
1672 encoder_count = mode_group->num_encoders;
1673 }
1674
1675 card_res->max_height = dev->mode_config.max_height;
1676 card_res->min_height = dev->mode_config.min_height;
1677 card_res->max_width = dev->mode_config.max_width;
1678 card_res->min_width = dev->mode_config.min_width;
1679
Dave Airlief453ba02008-11-07 14:05:41 -08001680 /* CRTCs */
1681 if (card_res->count_crtcs >= crtc_count) {
1682 copied = 0;
1683 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001684 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001685 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1686 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001687 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08001688 if (put_user(crtc->base.id, crtc_id + copied)) {
1689 ret = -EFAULT;
1690 goto out;
1691 }
1692 copied++;
1693 }
1694 } else {
1695 for (i = 0; i < mode_group->num_crtcs; i++) {
1696 if (put_user(mode_group->id_list[i],
1697 crtc_id + copied)) {
1698 ret = -EFAULT;
1699 goto out;
1700 }
1701 copied++;
1702 }
1703 }
1704 }
1705 card_res->count_crtcs = crtc_count;
1706
1707 /* Encoders */
1708 if (card_res->count_encoders >= encoder_count) {
1709 copied = 0;
1710 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001711 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001712 list_for_each_entry(encoder,
1713 &dev->mode_config.encoder_list,
1714 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001715 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
Jani Nikula83a8cfd2014-06-03 14:56:22 +03001716 encoder->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001717 if (put_user(encoder->base.id, encoder_id +
1718 copied)) {
1719 ret = -EFAULT;
1720 goto out;
1721 }
1722 copied++;
1723 }
1724 } else {
1725 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1726 if (put_user(mode_group->id_list[i],
1727 encoder_id + copied)) {
1728 ret = -EFAULT;
1729 goto out;
1730 }
1731 copied++;
1732 }
1733
1734 }
1735 }
1736 card_res->count_encoders = encoder_count;
1737
1738 /* Connectors */
1739 if (card_res->count_connectors >= connector_count) {
1740 copied = 0;
1741 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01001742 if (!mode_group) {
Dave Airlief453ba02008-11-07 14:05:41 -08001743 list_for_each_entry(connector,
1744 &dev->mode_config.connector_list,
1745 head) {
Jerome Glisse94401062010-07-15 15:43:25 -04001746 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1747 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03001748 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08001749 if (put_user(connector->base.id,
1750 connector_id + copied)) {
1751 ret = -EFAULT;
1752 goto out;
1753 }
1754 copied++;
1755 }
1756 } else {
1757 int start = mode_group->num_crtcs +
1758 mode_group->num_encoders;
1759 for (i = start; i < start + mode_group->num_connectors; i++) {
1760 if (put_user(mode_group->id_list[i],
1761 connector_id + copied)) {
1762 ret = -EFAULT;
1763 goto out;
1764 }
1765 copied++;
1766 }
1767 }
1768 }
1769 card_res->count_connectors = connector_count;
1770
Jerome Glisse94401062010-07-15 15:43:25 -04001771 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
Dave Airlief453ba02008-11-07 14:05:41 -08001772 card_res->count_connectors, card_res->count_encoders);
1773
1774out:
Daniel Vetter84849902012-12-02 00:28:11 +01001775 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001776 return ret;
1777}
1778
1779/**
1780 * drm_mode_getcrtc - get CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001781 * @dev: drm device for the ioctl
1782 * @data: data pointer for the ioctl
1783 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001784 *
Dave Airlief453ba02008-11-07 14:05:41 -08001785 * Construct a CRTC configuration structure to return to the user.
1786 *
1787 * Called by the user via ioctl.
1788 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001789 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08001790 * Zero on success, errno on failure.
1791 */
1792int drm_mode_getcrtc(struct drm_device *dev,
1793 void *data, struct drm_file *file_priv)
1794{
1795 struct drm_mode_crtc *crtc_resp = data;
1796 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08001797 int ret = 0;
1798
Dave Airliefb3b06c2011-02-08 13:55:21 +10001799 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1800 return -EINVAL;
1801
Daniel Vetter84849902012-12-02 00:28:11 +01001802 drm_modeset_lock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001803
Rob Clarka2b34e22013-10-05 16:36:52 -04001804 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
1805 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03001806 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001807 goto out;
1808 }
Dave Airlief453ba02008-11-07 14:05:41 -08001809
1810 crtc_resp->x = crtc->x;
1811 crtc_resp->y = crtc->y;
1812 crtc_resp->gamma_size = crtc->gamma_size;
Matt Roperf4510a22014-04-01 15:22:40 -07001813 if (crtc->primary->fb)
1814 crtc_resp->fb_id = crtc->primary->fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08001815 else
1816 crtc_resp->fb_id = 0;
1817
1818 if (crtc->enabled) {
1819
1820 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1821 crtc_resp->mode_valid = 1;
1822
1823 } else {
1824 crtc_resp->mode_valid = 0;
1825 }
1826
1827out:
Daniel Vetter84849902012-12-02 00:28:11 +01001828 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08001829 return ret;
1830}
1831
Damien Lespiau61d8e322013-09-25 16:45:22 +01001832static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1833 const struct drm_file *file_priv)
1834{
1835 /*
1836 * If user-space hasn't configured the driver to expose the stereo 3D
1837 * modes, don't expose them.
1838 */
1839 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1840 return false;
1841
1842 return true;
1843}
1844
Dave Airlief453ba02008-11-07 14:05:41 -08001845/**
1846 * drm_mode_getconnector - get connector configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01001847 * @dev: drm device for the ioctl
1848 * @data: data pointer for the ioctl
1849 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08001850 *
Dave Airlief453ba02008-11-07 14:05:41 -08001851 * Construct a connector configuration structure to return to the user.
1852 *
1853 * Called by the user via ioctl.
1854 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001855 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08001856 * Zero on success, errno on failure.
1857 */
1858int drm_mode_getconnector(struct drm_device *dev, void *data,
1859 struct drm_file *file_priv)
1860{
1861 struct drm_mode_get_connector *out_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08001862 struct drm_connector *connector;
1863 struct drm_display_mode *mode;
1864 int mode_count = 0;
1865 int props_count = 0;
1866 int encoders_count = 0;
1867 int ret = 0;
1868 int copied = 0;
1869 int i;
1870 struct drm_mode_modeinfo u_mode;
1871 struct drm_mode_modeinfo __user *mode_ptr;
1872 uint32_t __user *prop_ptr;
1873 uint64_t __user *prop_values;
1874 uint32_t __user *encoder_ptr;
1875
Dave Airliefb3b06c2011-02-08 13:55:21 +10001876 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1877 return -EINVAL;
1878
Dave Airlief453ba02008-11-07 14:05:41 -08001879 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1880
Jerome Glisse94401062010-07-15 15:43:25 -04001881 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
Dave Airlief453ba02008-11-07 14:05:41 -08001882
Daniel Vetter7b240562012-12-12 00:35:33 +01001883 mutex_lock(&dev->mode_config.mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001884
Rob Clarka2b34e22013-10-05 16:36:52 -04001885 connector = drm_connector_find(dev, out_resp->connector_id);
1886 if (!connector) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03001887 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08001888 goto out;
1889 }
Dave Airlief453ba02008-11-07 14:05:41 -08001890
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001891 props_count = connector->properties.count;
Dave Airlief453ba02008-11-07 14:05:41 -08001892
1893 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1894 if (connector->encoder_ids[i] != 0) {
1895 encoders_count++;
1896 }
1897 }
1898
1899 if (out_resp->count_modes == 0) {
1900 connector->funcs->fill_modes(connector,
1901 dev->mode_config.max_width,
1902 dev->mode_config.max_height);
1903 }
1904
1905 /* delayed so we get modes regardless of pre-fill_modes state */
1906 list_for_each_entry(mode, &connector->modes, head)
Damien Lespiau61d8e322013-09-25 16:45:22 +01001907 if (drm_mode_expose_to_userspace(mode, file_priv))
1908 mode_count++;
Dave Airlief453ba02008-11-07 14:05:41 -08001909
1910 out_resp->connector_id = connector->base.id;
1911 out_resp->connector_type = connector->connector_type;
1912 out_resp->connector_type_id = connector->connector_type_id;
1913 out_resp->mm_width = connector->display_info.width_mm;
1914 out_resp->mm_height = connector->display_info.height_mm;
1915 out_resp->subpixel = connector->display_info.subpixel_order;
1916 out_resp->connection = connector->status;
Daniel Vetter832fd392014-06-05 11:07:20 +02001917 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
Dave Airlief453ba02008-11-07 14:05:41 -08001918 if (connector->encoder)
1919 out_resp->encoder_id = connector->encoder->base.id;
1920 else
1921 out_resp->encoder_id = 0;
Daniel Vetter832fd392014-06-05 11:07:20 +02001922 drm_modeset_unlock(&dev->mode_config.connection_mutex);
Dave Airlief453ba02008-11-07 14:05:41 -08001923
1924 /*
1925 * This ioctl is called twice, once to determine how much space is
1926 * needed, and the 2nd time to fill it.
1927 */
1928 if ((out_resp->count_modes >= mode_count) && mode_count) {
1929 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001930 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08001931 list_for_each_entry(mode, &connector->modes, head) {
Damien Lespiau61d8e322013-09-25 16:45:22 +01001932 if (!drm_mode_expose_to_userspace(mode, file_priv))
1933 continue;
1934
Dave Airlief453ba02008-11-07 14:05:41 -08001935 drm_crtc_convert_to_umode(&u_mode, mode);
1936 if (copy_to_user(mode_ptr + copied,
1937 &u_mode, sizeof(u_mode))) {
1938 ret = -EFAULT;
1939 goto out;
1940 }
1941 copied++;
1942 }
1943 }
1944 out_resp->count_modes = mode_count;
1945
1946 if ((out_resp->count_props >= props_count) && props_count) {
1947 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001948 prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
1949 prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001950 for (i = 0; i < connector->properties.count; i++) {
1951 if (put_user(connector->properties.ids[i],
1952 prop_ptr + copied)) {
1953 ret = -EFAULT;
1954 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08001955 }
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03001956
1957 if (put_user(connector->properties.values[i],
1958 prop_values + copied)) {
1959 ret = -EFAULT;
1960 goto out;
1961 }
1962 copied++;
Dave Airlief453ba02008-11-07 14:05:41 -08001963 }
1964 }
1965 out_resp->count_props = props_count;
1966
1967 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
1968 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02001969 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
Dave Airlief453ba02008-11-07 14:05:41 -08001970 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1971 if (connector->encoder_ids[i] != 0) {
1972 if (put_user(connector->encoder_ids[i],
1973 encoder_ptr + copied)) {
1974 ret = -EFAULT;
1975 goto out;
1976 }
1977 copied++;
1978 }
1979 }
1980 }
1981 out_resp->count_encoders = encoders_count;
1982
1983out:
Daniel Vetter7b240562012-12-12 00:35:33 +01001984 mutex_unlock(&dev->mode_config.mutex);
1985
Dave Airlief453ba02008-11-07 14:05:41 -08001986 return ret;
1987}
1988
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01001989/**
1990 * drm_mode_getencoder - get encoder configuration
1991 * @dev: drm device for the ioctl
1992 * @data: data pointer for the ioctl
1993 * @file_priv: drm file for the ioctl call
1994 *
1995 * Construct a encoder configuration structure to return to the user.
1996 *
1997 * Called by the user via ioctl.
1998 *
1999 * Returns:
2000 * Zero on success, errno on failure.
2001 */
Dave Airlief453ba02008-11-07 14:05:41 -08002002int drm_mode_getencoder(struct drm_device *dev, void *data,
2003 struct drm_file *file_priv)
2004{
2005 struct drm_mode_get_encoder *enc_resp = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002006 struct drm_encoder *encoder;
2007 int ret = 0;
2008
Dave Airliefb3b06c2011-02-08 13:55:21 +10002009 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2010 return -EINVAL;
2011
Daniel Vetter84849902012-12-02 00:28:11 +01002012 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002013 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
2014 if (!encoder) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002015 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002016 goto out;
2017 }
Dave Airlief453ba02008-11-07 14:05:41 -08002018
2019 if (encoder->crtc)
2020 enc_resp->crtc_id = encoder->crtc->base.id;
2021 else
2022 enc_resp->crtc_id = 0;
2023 enc_resp->encoder_type = encoder->encoder_type;
2024 enc_resp->encoder_id = encoder->base.id;
2025 enc_resp->possible_crtcs = encoder->possible_crtcs;
2026 enc_resp->possible_clones = encoder->possible_clones;
2027
2028out:
Daniel Vetter84849902012-12-02 00:28:11 +01002029 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002030 return ret;
2031}
2032
2033/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002034 * drm_mode_getplane_res - enumerate all plane resources
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002035 * @dev: DRM device
2036 * @data: ioctl data
2037 * @file_priv: DRM file info
2038 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002039 * Construct a list of plane ids to return to the user.
2040 *
2041 * Called by the user via ioctl.
2042 *
2043 * Returns:
2044 * Zero on success, errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002045 */
2046int drm_mode_getplane_res(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002047 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002048{
2049 struct drm_mode_get_plane_res *plane_resp = data;
2050 struct drm_mode_config *config;
2051 struct drm_plane *plane;
2052 uint32_t __user *plane_ptr;
2053 int copied = 0, ret = 0;
Matt Roper681e7ec2014-04-01 15:22:42 -07002054 unsigned num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002055
2056 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2057 return -EINVAL;
2058
Daniel Vetter84849902012-12-02 00:28:11 +01002059 drm_modeset_lock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002060 config = &dev->mode_config;
2061
Matt Roper681e7ec2014-04-01 15:22:42 -07002062 if (file_priv->universal_planes)
2063 num_planes = config->num_total_plane;
2064 else
2065 num_planes = config->num_overlay_plane;
2066
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002067 /*
2068 * This ioctl is called twice, once to determine how much space is
2069 * needed, and the 2nd time to fill it.
2070 */
Matt Roper681e7ec2014-04-01 15:22:42 -07002071 if (num_planes &&
2072 (plane_resp->count_planes >= num_planes)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002073 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002074
2075 list_for_each_entry(plane, &config->plane_list, head) {
Matt Roper681e7ec2014-04-01 15:22:42 -07002076 /*
2077 * Unless userspace set the 'universal planes'
2078 * capability bit, only advertise overlays.
2079 */
2080 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2081 !file_priv->universal_planes)
Matt Ropere27dde32014-04-01 15:22:30 -07002082 continue;
2083
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002084 if (put_user(plane->base.id, plane_ptr + copied)) {
2085 ret = -EFAULT;
2086 goto out;
2087 }
2088 copied++;
2089 }
2090 }
Matt Roper681e7ec2014-04-01 15:22:42 -07002091 plane_resp->count_planes = num_planes;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002092
2093out:
Daniel Vetter84849902012-12-02 00:28:11 +01002094 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002095 return ret;
2096}
2097
2098/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002099 * drm_mode_getplane - get plane configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002100 * @dev: DRM device
2101 * @data: ioctl data
2102 * @file_priv: DRM file info
2103 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002104 * Construct a plane configuration structure to return to the user.
2105 *
2106 * Called by the user via ioctl.
2107 *
2108 * Returns:
2109 * Zero on success, errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002110 */
2111int drm_mode_getplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002112 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002113{
2114 struct drm_mode_get_plane *plane_resp = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002115 struct drm_plane *plane;
2116 uint32_t __user *format_ptr;
2117 int ret = 0;
2118
2119 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2120 return -EINVAL;
2121
Daniel Vetter84849902012-12-02 00:28:11 +01002122 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002123 plane = drm_plane_find(dev, plane_resp->plane_id);
2124 if (!plane) {
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002125 ret = -ENOENT;
2126 goto out;
2127 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002128
2129 if (plane->crtc)
2130 plane_resp->crtc_id = plane->crtc->base.id;
2131 else
2132 plane_resp->crtc_id = 0;
2133
2134 if (plane->fb)
2135 plane_resp->fb_id = plane->fb->base.id;
2136 else
2137 plane_resp->fb_id = 0;
2138
2139 plane_resp->plane_id = plane->base.id;
2140 plane_resp->possible_crtcs = plane->possible_crtcs;
Ville Syrjälä778ad902013-06-03 16:11:42 +03002141 plane_resp->gamma_size = 0;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002142
2143 /*
2144 * This ioctl is called twice, once to determine how much space is
2145 * needed, and the 2nd time to fill it.
2146 */
2147 if (plane->format_count &&
2148 (plane_resp->count_format_types >= plane->format_count)) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002149 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002150 if (copy_to_user(format_ptr,
2151 plane->format_types,
2152 sizeof(uint32_t) * plane->format_count)) {
2153 ret = -EFAULT;
2154 goto out;
2155 }
2156 }
2157 plane_resp->count_format_types = plane->format_count;
2158
2159out:
Daniel Vetter84849902012-12-02 00:28:11 +01002160 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002161 return ret;
2162}
2163
2164/**
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002165 * drm_mode_setplane - configure a plane's configuration
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002166 * @dev: DRM device
2167 * @data: ioctl data*
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002168 * @file_priv: DRM file info
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002169 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002170 * Set plane configuration, including placement, fb, scaling, and other factors.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002171 * Or pass a NULL fb to disable.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002172 *
2173 * Returns:
2174 * Zero on success, errno on failure.
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002175 */
2176int drm_mode_setplane(struct drm_device *dev, void *data,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002177 struct drm_file *file_priv)
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002178{
2179 struct drm_mode_set_plane *plane_req = data;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002180 struct drm_plane *plane;
2181 struct drm_crtc *crtc;
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002182 struct drm_framebuffer *fb = NULL, *old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002183 int ret = 0;
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002184 unsigned int fb_width, fb_height;
Ville Syrjälä62443be2011-12-20 00:06:47 +02002185 int i;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002186
2187 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2188 return -EINVAL;
2189
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002190 /*
2191 * First, find the plane, crtc, and fb objects. If not available,
2192 * we don't bother to call the driver.
2193 */
Rob Clarka2b34e22013-10-05 16:36:52 -04002194 plane = drm_plane_find(dev, plane_req->plane_id);
2195 if (!plane) {
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002196 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2197 plane_req->plane_id);
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002198 return -ENOENT;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002199 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002200
2201 /* No fb means shut it down */
2202 if (!plane_req->fb_id) {
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002203 drm_modeset_lock_all(dev);
2204 old_fb = plane->fb;
Daniel Vetter731cce42014-04-23 10:24:11 +02002205 ret = plane->funcs->disable_plane(plane);
2206 if (!ret) {
2207 plane->crtc = NULL;
2208 plane->fb = NULL;
2209 } else {
2210 old_fb = NULL;
2211 }
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002212 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002213 goto out;
2214 }
2215
Rob Clarka2b34e22013-10-05 16:36:52 -04002216 crtc = drm_crtc_find(dev, plane_req->crtc_id);
2217 if (!crtc) {
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002218 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2219 plane_req->crtc_id);
2220 ret = -ENOENT;
2221 goto out;
2222 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002223
Matt Roper7f994f32014-05-29 08:06:51 -07002224 /* Check whether this plane is usable on this CRTC */
2225 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2226 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2227 ret = -EINVAL;
2228 goto out;
2229 }
2230
Daniel Vetter786b99e2012-12-02 21:53:40 +01002231 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2232 if (!fb) {
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002233 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2234 plane_req->fb_id);
2235 ret = -ENOENT;
2236 goto out;
2237 }
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002238
Ville Syrjälä62443be2011-12-20 00:06:47 +02002239 /* Check whether this plane supports the fb pixel format. */
2240 for (i = 0; i < plane->format_count; i++)
2241 if (fb->pixel_format == plane->format_types[i])
2242 break;
2243 if (i == plane->format_count) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002244 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2245 drm_get_format_name(fb->pixel_format));
Ville Syrjälä62443be2011-12-20 00:06:47 +02002246 ret = -EINVAL;
2247 goto out;
2248 }
2249
Ville Syrjälä42ef8782011-12-20 00:06:44 +02002250 fb_width = fb->width << 16;
2251 fb_height = fb->height << 16;
2252
2253 /* Make sure source coordinates are inside the fb. */
2254 if (plane_req->src_w > fb_width ||
2255 plane_req->src_x > fb_width - plane_req->src_w ||
2256 plane_req->src_h > fb_height ||
2257 plane_req->src_y > fb_height - plane_req->src_h) {
2258 DRM_DEBUG_KMS("Invalid source coordinates "
2259 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
2260 plane_req->src_w >> 16,
2261 ((plane_req->src_w & 0xffff) * 15625) >> 10,
2262 plane_req->src_h >> 16,
2263 ((plane_req->src_h & 0xffff) * 15625) >> 10,
2264 plane_req->src_x >> 16,
2265 ((plane_req->src_x & 0xffff) * 15625) >> 10,
2266 plane_req->src_y >> 16,
2267 ((plane_req->src_y & 0xffff) * 15625) >> 10);
2268 ret = -ENOSPC;
2269 goto out;
2270 }
2271
Ville Syrjälä687a0402011-12-20 00:06:45 +02002272 /* Give drivers some help against integer overflows */
2273 if (plane_req->crtc_w > INT_MAX ||
2274 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2275 plane_req->crtc_h > INT_MAX ||
2276 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2277 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2278 plane_req->crtc_w, plane_req->crtc_h,
2279 plane_req->crtc_x, plane_req->crtc_y);
2280 ret = -ERANGE;
2281 goto out;
2282 }
2283
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002284 drm_modeset_lock_all(dev);
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002285 old_fb = plane->fb;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002286 ret = plane->funcs->update_plane(plane, crtc, fb,
2287 plane_req->crtc_x, plane_req->crtc_y,
2288 plane_req->crtc_w, plane_req->crtc_h,
2289 plane_req->src_x, plane_req->src_y,
2290 plane_req->src_w, plane_req->src_h);
2291 if (!ret) {
2292 plane->crtc = crtc;
2293 plane->fb = fb;
Daniel Vetter35f8bad2013-02-15 21:21:37 +01002294 fb = NULL;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002295 } else {
2296 old_fb = NULL;
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002297 }
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002298 drm_modeset_unlock_all(dev);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002299
2300out:
Daniel Vetter6c2a7532012-12-11 00:59:24 +01002301 if (fb)
2302 drm_framebuffer_unreference(fb);
2303 if (old_fb)
2304 drm_framebuffer_unreference(old_fb);
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002305
2306 return ret;
2307}
2308
2309/**
Daniel Vetter2d13b672012-12-11 13:47:23 +01002310 * drm_mode_set_config_internal - helper to call ->set_config
2311 * @set: modeset config to set
2312 *
2313 * This is a little helper to wrap internal calls to the ->set_config driver
2314 * interface. The only thing it adds is correct refcounting dance.
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002315 *
2316 * Returns:
2317 * Zero on success, errno on failure.
Daniel Vetter2d13b672012-12-11 13:47:23 +01002318 */
2319int drm_mode_set_config_internal(struct drm_mode_set *set)
2320{
2321 struct drm_crtc *crtc = set->crtc;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002322 struct drm_framebuffer *fb;
2323 struct drm_crtc *tmp;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002324 int ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002325
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002326 /*
2327 * NOTE: ->set_config can also disable other crtcs (if we steal all
2328 * connectors from it), hence we need to refcount the fbs across all
2329 * crtcs. Atomic modeset will have saner semantics ...
2330 */
2331 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
Matt Roperf4510a22014-04-01 15:22:40 -07002332 tmp->old_fb = tmp->primary->fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002333
Daniel Vetterb0d12322012-12-11 01:07:12 +01002334 fb = set->fb;
2335
2336 ret = crtc->funcs->set_config(set);
2337 if (ret == 0) {
Matt Ropere13161a2014-04-01 15:22:38 -07002338 crtc->primary->crtc = crtc;
Daniel Vetter0fe27f02014-04-23 17:34:06 +02002339 crtc->primary->fb = fb;
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002340 }
Daniel Vettercc85e122013-06-15 00:13:15 +02002341
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002342 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
Matt Roperf4510a22014-04-01 15:22:40 -07002343 if (tmp->primary->fb)
2344 drm_framebuffer_reference(tmp->primary->fb);
Daniel Vetter5cef29a2013-06-15 00:13:16 +02002345 if (tmp->old_fb)
2346 drm_framebuffer_unreference(tmp->old_fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01002347 }
2348
2349 return ret;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002350}
2351EXPORT_SYMBOL(drm_mode_set_config_internal);
2352
Matt Roperaf936292014-04-01 15:22:34 -07002353/**
2354 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2355 * CRTC viewport
2356 * @crtc: CRTC that framebuffer will be displayed on
2357 * @x: x panning
2358 * @y: y panning
2359 * @mode: mode that framebuffer will be displayed under
2360 * @fb: framebuffer to check size of
Damien Lespiauc11e9282013-09-25 16:45:30 +01002361 */
Matt Roperaf936292014-04-01 15:22:34 -07002362int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2363 int x, int y,
2364 const struct drm_display_mode *mode,
2365 const struct drm_framebuffer *fb)
Damien Lespiauc11e9282013-09-25 16:45:30 +01002366
2367{
2368 int hdisplay, vdisplay;
2369
2370 hdisplay = mode->hdisplay;
2371 vdisplay = mode->vdisplay;
2372
Damien Lespiaua0c1bbb2013-09-25 16:45:31 +01002373 if (drm_mode_is_stereo(mode)) {
2374 struct drm_display_mode adjusted = *mode;
2375
2376 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE);
2377 hdisplay = adjusted.crtc_hdisplay;
2378 vdisplay = adjusted.crtc_vdisplay;
2379 }
2380
Damien Lespiauc11e9282013-09-25 16:45:30 +01002381 if (crtc->invert_dimensions)
2382 swap(hdisplay, vdisplay);
2383
2384 if (hdisplay > fb->width ||
2385 vdisplay > fb->height ||
2386 x > fb->width - hdisplay ||
2387 y > fb->height - vdisplay) {
2388 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2389 fb->width, fb->height, hdisplay, vdisplay, x, y,
2390 crtc->invert_dimensions ? " (inverted)" : "");
2391 return -ENOSPC;
2392 }
2393
2394 return 0;
2395}
Matt Roperaf936292014-04-01 15:22:34 -07002396EXPORT_SYMBOL(drm_crtc_check_viewport);
Damien Lespiauc11e9282013-09-25 16:45:30 +01002397
Daniel Vetter2d13b672012-12-11 13:47:23 +01002398/**
Dave Airlief453ba02008-11-07 14:05:41 -08002399 * drm_mode_setcrtc - set CRTC configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002400 * @dev: drm device for the ioctl
2401 * @data: data pointer for the ioctl
2402 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002403 *
Dave Airlief453ba02008-11-07 14:05:41 -08002404 * Build a new CRTC configuration based on user request.
2405 *
2406 * Called by the user via ioctl.
2407 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002408 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08002409 * Zero on success, errno on failure.
2410 */
2411int drm_mode_setcrtc(struct drm_device *dev, void *data,
2412 struct drm_file *file_priv)
2413{
2414 struct drm_mode_config *config = &dev->mode_config;
2415 struct drm_mode_crtc *crtc_req = data;
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002416 struct drm_crtc *crtc;
Dave Airlief453ba02008-11-07 14:05:41 -08002417 struct drm_connector **connector_set = NULL, *connector;
2418 struct drm_framebuffer *fb = NULL;
2419 struct drm_display_mode *mode = NULL;
2420 struct drm_mode_set set;
2421 uint32_t __user *set_connectors_ptr;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002422 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002423 int i;
2424
Dave Airliefb3b06c2011-02-08 13:55:21 +10002425 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2426 return -EINVAL;
2427
Ville Syrjälä1d97e912012-03-13 12:35:41 +02002428 /* For some reason crtc x/y offsets are signed internally. */
2429 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2430 return -ERANGE;
2431
Daniel Vetter84849902012-12-02 00:28:11 +01002432 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04002433 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2434 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002435 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002436 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002437 goto out;
2438 }
Jerome Glisse94401062010-07-15 15:43:25 -04002439 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
Dave Airlief453ba02008-11-07 14:05:41 -08002440
2441 if (crtc_req->mode_valid) {
2442 /* If we have a mode we need a framebuffer. */
2443 /* If we pass -1, set the mode with the currently bound fb */
2444 if (crtc_req->fb_id == -1) {
Matt Roperf4510a22014-04-01 15:22:40 -07002445 if (!crtc->primary->fb) {
Ville Syrjälä6653cc82012-03-13 12:35:38 +02002446 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2447 ret = -EINVAL;
2448 goto out;
Dave Airlief453ba02008-11-07 14:05:41 -08002449 }
Matt Roperf4510a22014-04-01 15:22:40 -07002450 fb = crtc->primary->fb;
Daniel Vetterb0d12322012-12-11 01:07:12 +01002451 /* Make refcounting symmetric with the lookup path. */
2452 drm_framebuffer_reference(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002453 } else {
Daniel Vetter786b99e2012-12-02 21:53:40 +01002454 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2455 if (!fb) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002456 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2457 crtc_req->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002458 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002459 goto out;
2460 }
Dave Airlief453ba02008-11-07 14:05:41 -08002461 }
2462
2463 mode = drm_mode_create(dev);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002464 if (!mode) {
2465 ret = -ENOMEM;
2466 goto out;
2467 }
2468
Ville Syrjälä90367bf2012-03-13 12:35:44 +02002469 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2470 if (ret) {
2471 DRM_DEBUG_KMS("Invalid mode\n");
2472 goto out;
2473 }
2474
Dave Airlief453ba02008-11-07 14:05:41 -08002475 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002476
Damien Lespiauc11e9282013-09-25 16:45:30 +01002477 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2478 mode, fb);
2479 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02002480 goto out;
Damien Lespiauc11e9282013-09-25 16:45:30 +01002481
Dave Airlief453ba02008-11-07 14:05:41 -08002482 }
2483
2484 if (crtc_req->count_connectors == 0 && mode) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002485 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
Dave Airlief453ba02008-11-07 14:05:41 -08002486 ret = -EINVAL;
2487 goto out;
2488 }
2489
Jakob Bornecrantz7781de72009-08-03 13:43:58 +01002490 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002491 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
Dave Airlief453ba02008-11-07 14:05:41 -08002492 crtc_req->count_connectors);
2493 ret = -EINVAL;
2494 goto out;
2495 }
2496
2497 if (crtc_req->count_connectors > 0) {
2498 u32 out_id;
2499
2500 /* Avoid unbounded kernel memory allocation */
2501 if (crtc_req->count_connectors > config->num_connector) {
2502 ret = -EINVAL;
2503 goto out;
2504 }
2505
2506 connector_set = kmalloc(crtc_req->count_connectors *
2507 sizeof(struct drm_connector *),
2508 GFP_KERNEL);
2509 if (!connector_set) {
2510 ret = -ENOMEM;
2511 goto out;
2512 }
2513
2514 for (i = 0; i < crtc_req->count_connectors; i++) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02002515 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08002516 if (get_user(out_id, &set_connectors_ptr[i])) {
2517 ret = -EFAULT;
2518 goto out;
2519 }
2520
Rob Clarka2b34e22013-10-05 16:36:52 -04002521 connector = drm_connector_find(dev, out_id);
2522 if (!connector) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002523 DRM_DEBUG_KMS("Connector id %d unknown\n",
2524 out_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002525 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002526 goto out;
2527 }
Jerome Glisse94401062010-07-15 15:43:25 -04002528 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2529 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +03002530 connector->name);
Dave Airlief453ba02008-11-07 14:05:41 -08002531
2532 connector_set[i] = connector;
2533 }
2534 }
2535
2536 set.crtc = crtc;
2537 set.x = crtc_req->x;
2538 set.y = crtc_req->y;
2539 set.mode = mode;
2540 set.connectors = connector_set;
2541 set.num_connectors = crtc_req->count_connectors;
Dave Airlie5ef5f722009-08-17 13:11:23 +10002542 set.fb = fb;
Daniel Vetter2d13b672012-12-11 13:47:23 +01002543 ret = drm_mode_set_config_internal(&set);
Dave Airlief453ba02008-11-07 14:05:41 -08002544
2545out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01002546 if (fb)
2547 drm_framebuffer_unreference(fb);
2548
Dave Airlief453ba02008-11-07 14:05:41 -08002549 kfree(connector_set);
Ville Syrjäläee34ab52012-03-13 12:35:43 +02002550 drm_mode_destroy(dev, mode);
Daniel Vetter84849902012-12-02 00:28:11 +01002551 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08002552 return ret;
2553}
2554
Dave Airlie4c813d42013-06-20 11:48:52 +10002555static int drm_mode_cursor_common(struct drm_device *dev,
2556 struct drm_mode_cursor2 *req,
2557 struct drm_file *file_priv)
Dave Airlief453ba02008-11-07 14:05:41 -08002558{
Dave Airlief453ba02008-11-07 14:05:41 -08002559 struct drm_crtc *crtc;
2560 int ret = 0;
2561
Dave Airliefb3b06c2011-02-08 13:55:21 +10002562 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2563 return -EINVAL;
2564
Jakob Bornecrantz7c4eaca2012-08-16 08:29:03 +00002565 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
Dave Airlief453ba02008-11-07 14:05:41 -08002566 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08002567
Rob Clarka2b34e22013-10-05 16:36:52 -04002568 crtc = drm_crtc_find(dev, req->crtc_id);
2569 if (!crtc) {
Zhao Yakui58367ed2009-07-20 13:48:07 +08002570 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03002571 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002572 }
Dave Airlief453ba02008-11-07 14:05:41 -08002573
Rob Clark51fd3712013-11-19 12:10:12 -05002574 drm_modeset_lock(&crtc->mutex, NULL);
Dave Airlief453ba02008-11-07 14:05:41 -08002575 if (req->flags & DRM_MODE_CURSOR_BO) {
Dave Airlie4c813d42013-06-20 11:48:52 +10002576 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
Dave Airlief453ba02008-11-07 14:05:41 -08002577 ret = -ENXIO;
2578 goto out;
2579 }
2580 /* Turns off the cursor if handle is 0 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002581 if (crtc->funcs->cursor_set2)
2582 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2583 req->width, req->height, req->hot_x, req->hot_y);
2584 else
2585 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2586 req->width, req->height);
Dave Airlief453ba02008-11-07 14:05:41 -08002587 }
2588
2589 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2590 if (crtc->funcs->cursor_move) {
2591 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2592 } else {
Dave Airlief453ba02008-11-07 14:05:41 -08002593 ret = -EFAULT;
2594 goto out;
2595 }
2596 }
2597out:
Rob Clark51fd3712013-11-19 12:10:12 -05002598 drm_modeset_unlock(&crtc->mutex);
Daniel Vetterdac35662012-12-02 15:24:10 +01002599
Dave Airlief453ba02008-11-07 14:05:41 -08002600 return ret;
Dave Airlie4c813d42013-06-20 11:48:52 +10002601
2602}
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002603
2604
2605/**
2606 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2607 * @dev: drm device for the ioctl
2608 * @data: data pointer for the ioctl
2609 * @file_priv: drm file for the ioctl call
2610 *
2611 * Set the cursor configuration based on user request.
2612 *
2613 * Called by the user via ioctl.
2614 *
2615 * Returns:
2616 * Zero on success, errno on failure.
2617 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002618int drm_mode_cursor_ioctl(struct drm_device *dev,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002619 void *data, struct drm_file *file_priv)
Dave Airlie4c813d42013-06-20 11:48:52 +10002620{
2621 struct drm_mode_cursor *req = data;
2622 struct drm_mode_cursor2 new_req;
2623
2624 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
2625 new_req.hot_x = new_req.hot_y = 0;
2626
2627 return drm_mode_cursor_common(dev, &new_req, file_priv);
2628}
2629
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002630/**
2631 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
2632 * @dev: drm device for the ioctl
2633 * @data: data pointer for the ioctl
2634 * @file_priv: drm file for the ioctl call
2635 *
2636 * Set the cursor configuration based on user request. This implements the 2nd
2637 * version of the cursor ioctl, which allows userspace to additionally specify
2638 * the hotspot of the pointer.
2639 *
2640 * Called by the user via ioctl.
2641 *
2642 * Returns:
2643 * Zero on success, errno on failure.
2644 */
Dave Airlie4c813d42013-06-20 11:48:52 +10002645int drm_mode_cursor2_ioctl(struct drm_device *dev,
2646 void *data, struct drm_file *file_priv)
2647{
2648 struct drm_mode_cursor2 *req = data;
2649 return drm_mode_cursor_common(dev, req, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08002650}
2651
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002652/**
2653 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
2654 * @bpp: bits per pixels
2655 * @depth: bit depth per pixel
2656 *
2657 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
2658 * Useful in fbdev emulation code, since that deals in those values.
2659 */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002660uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2661{
2662 uint32_t fmt;
2663
2664 switch (bpp) {
2665 case 8:
Ville Syrjäläd84f0312013-01-31 19:43:38 +02002666 fmt = DRM_FORMAT_C8;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002667 break;
2668 case 16:
2669 if (depth == 15)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002670 fmt = DRM_FORMAT_XRGB1555;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002671 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002672 fmt = DRM_FORMAT_RGB565;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002673 break;
2674 case 24:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002675 fmt = DRM_FORMAT_RGB888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002676 break;
2677 case 32:
2678 if (depth == 24)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002679 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002680 else if (depth == 30)
Ville Syrjälä04b39242011-11-17 18:05:13 +02002681 fmt = DRM_FORMAT_XRGB2101010;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002682 else
Ville Syrjälä04b39242011-11-17 18:05:13 +02002683 fmt = DRM_FORMAT_ARGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002684 break;
2685 default:
Ville Syrjälä04b39242011-11-17 18:05:13 +02002686 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2687 fmt = DRM_FORMAT_XRGB8888;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002688 break;
2689 }
2690
2691 return fmt;
2692}
2693EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2694
Dave Airlief453ba02008-11-07 14:05:41 -08002695/**
2696 * drm_mode_addfb - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002697 * @dev: drm device for the ioctl
2698 * @data: data pointer for the ioctl
2699 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002700 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002701 * Add a new FB to the specified CRTC, given a user request. This is the
2702 * original addfb ioclt which only supported RGB formats.
Dave Airlief453ba02008-11-07 14:05:41 -08002703 *
2704 * Called by the user via ioctl.
2705 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002706 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08002707 * Zero on success, errno on failure.
2708 */
2709int drm_mode_addfb(struct drm_device *dev,
2710 void *data, struct drm_file *file_priv)
2711{
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002712 struct drm_mode_fb_cmd *or = data;
2713 struct drm_mode_fb_cmd2 r = {};
2714 struct drm_mode_config *config = &dev->mode_config;
2715 struct drm_framebuffer *fb;
2716 int ret = 0;
2717
2718 /* Use new struct with format internally */
2719 r.fb_id = or->fb_id;
2720 r.width = or->width;
2721 r.height = or->height;
2722 r.pitches[0] = or->pitch;
2723 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
2724 r.handles[0] = or->handle;
2725
2726 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2727 return -EINVAL;
2728
Jesse Barnesacb4b992011-11-07 12:03:23 -08002729 if ((config->min_width > r.width) || (r.width > config->max_width))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002730 return -EINVAL;
Jesse Barnesacb4b992011-11-07 12:03:23 -08002731
2732 if ((config->min_height > r.height) || (r.height > config->max_height))
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002733 return -EINVAL;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002734
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002735 fb = dev->mode_config.funcs->fb_create(dev, file_priv, &r);
2736 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002737 DRM_DEBUG_KMS("could not create framebuffer\n");
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002738 return PTR_ERR(fb);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002739 }
2740
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002741 mutex_lock(&file_priv->fbs_lock);
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002742 or->fb_id = fb->base.id;
2743 list_add(&fb->filp_head, &file_priv->fbs);
2744 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002745 mutex_unlock(&file_priv->fbs_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002746
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002747 return ret;
2748}
2749
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002750static int format_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjälä935b5972011-12-20 00:06:48 +02002751{
2752 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
2753
2754 switch (format) {
2755 case DRM_FORMAT_C8:
2756 case DRM_FORMAT_RGB332:
2757 case DRM_FORMAT_BGR233:
2758 case DRM_FORMAT_XRGB4444:
2759 case DRM_FORMAT_XBGR4444:
2760 case DRM_FORMAT_RGBX4444:
2761 case DRM_FORMAT_BGRX4444:
2762 case DRM_FORMAT_ARGB4444:
2763 case DRM_FORMAT_ABGR4444:
2764 case DRM_FORMAT_RGBA4444:
2765 case DRM_FORMAT_BGRA4444:
2766 case DRM_FORMAT_XRGB1555:
2767 case DRM_FORMAT_XBGR1555:
2768 case DRM_FORMAT_RGBX5551:
2769 case DRM_FORMAT_BGRX5551:
2770 case DRM_FORMAT_ARGB1555:
2771 case DRM_FORMAT_ABGR1555:
2772 case DRM_FORMAT_RGBA5551:
2773 case DRM_FORMAT_BGRA5551:
2774 case DRM_FORMAT_RGB565:
2775 case DRM_FORMAT_BGR565:
2776 case DRM_FORMAT_RGB888:
2777 case DRM_FORMAT_BGR888:
2778 case DRM_FORMAT_XRGB8888:
2779 case DRM_FORMAT_XBGR8888:
2780 case DRM_FORMAT_RGBX8888:
2781 case DRM_FORMAT_BGRX8888:
2782 case DRM_FORMAT_ARGB8888:
2783 case DRM_FORMAT_ABGR8888:
2784 case DRM_FORMAT_RGBA8888:
2785 case DRM_FORMAT_BGRA8888:
2786 case DRM_FORMAT_XRGB2101010:
2787 case DRM_FORMAT_XBGR2101010:
2788 case DRM_FORMAT_RGBX1010102:
2789 case DRM_FORMAT_BGRX1010102:
2790 case DRM_FORMAT_ARGB2101010:
2791 case DRM_FORMAT_ABGR2101010:
2792 case DRM_FORMAT_RGBA1010102:
2793 case DRM_FORMAT_BGRA1010102:
2794 case DRM_FORMAT_YUYV:
2795 case DRM_FORMAT_YVYU:
2796 case DRM_FORMAT_UYVY:
2797 case DRM_FORMAT_VYUY:
2798 case DRM_FORMAT_AYUV:
2799 case DRM_FORMAT_NV12:
2800 case DRM_FORMAT_NV21:
2801 case DRM_FORMAT_NV16:
2802 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02002803 case DRM_FORMAT_NV24:
2804 case DRM_FORMAT_NV42:
Ville Syrjälä935b5972011-12-20 00:06:48 +02002805 case DRM_FORMAT_YUV410:
2806 case DRM_FORMAT_YVU410:
2807 case DRM_FORMAT_YUV411:
2808 case DRM_FORMAT_YVU411:
2809 case DRM_FORMAT_YUV420:
2810 case DRM_FORMAT_YVU420:
2811 case DRM_FORMAT_YUV422:
2812 case DRM_FORMAT_YVU422:
2813 case DRM_FORMAT_YUV444:
2814 case DRM_FORMAT_YVU444:
2815 return 0;
2816 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03002817 DRM_DEBUG_KMS("invalid pixel format %s\n",
2818 drm_get_format_name(r->pixel_format));
Ville Syrjälä935b5972011-12-20 00:06:48 +02002819 return -EINVAL;
2820 }
2821}
2822
Ville Syrjäläcff91b62012-05-24 20:54:00 +03002823static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002824{
2825 int ret, hsub, vsub, num_planes, i;
2826
2827 ret = format_check(r);
2828 if (ret) {
Ville Syrjälä6ba6d032013-06-10 11:15:10 +03002829 DRM_DEBUG_KMS("bad framebuffer format %s\n",
2830 drm_get_format_name(r->pixel_format));
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002831 return ret;
2832 }
2833
2834 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
2835 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
2836 num_planes = drm_format_num_planes(r->pixel_format);
2837
2838 if (r->width == 0 || r->width % hsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002839 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002840 return -EINVAL;
2841 }
2842
2843 if (r->height == 0 || r->height % vsub) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002844 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002845 return -EINVAL;
2846 }
2847
2848 for (i = 0; i < num_planes; i++) {
2849 unsigned int width = r->width / (i != 0 ? hsub : 1);
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00002850 unsigned int height = r->height / (i != 0 ? vsub : 1);
2851 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002852
2853 if (!r->handles[i]) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002854 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002855 return -EINVAL;
2856 }
2857
Ville Syrjäläb180b5d2012-10-25 18:05:04 +00002858 if ((uint64_t) width * cpp > UINT_MAX)
2859 return -ERANGE;
2860
2861 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
2862 return -ERANGE;
2863
2864 if (r->pitches[i] < width * cpp) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002865 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002866 return -EINVAL;
2867 }
2868 }
2869
2870 return 0;
2871}
2872
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002873/**
2874 * drm_mode_addfb2 - add an FB to the graphics configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002875 * @dev: drm device for the ioctl
2876 * @data: data pointer for the ioctl
2877 * @file_priv: drm file for the ioctl call
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002878 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002879 * Add a new FB to the specified CRTC, given a user request with format. This is
2880 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
2881 * and uses fourcc codes as pixel format specifiers.
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002882 *
2883 * Called by the user via ioctl.
2884 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002885 * Returns:
Jesse Barnes308e5bc2011-11-14 14:51:28 -08002886 * Zero on success, errno on failure.
2887 */
2888int drm_mode_addfb2(struct drm_device *dev,
2889 void *data, struct drm_file *file_priv)
2890{
2891 struct drm_mode_fb_cmd2 *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002892 struct drm_mode_config *config = &dev->mode_config;
2893 struct drm_framebuffer *fb;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02002894 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08002895
Dave Airliefb3b06c2011-02-08 13:55:21 +10002896 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2897 return -EINVAL;
2898
Ville Syrjäläe3cc3522012-11-08 09:09:42 +00002899 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
2900 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
2901 return -EINVAL;
2902 }
2903
Dave Airlief453ba02008-11-07 14:05:41 -08002904 if ((config->min_width > r->width) || (r->width > config->max_width)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002905 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002906 r->width, config->min_width, config->max_width);
Dave Airlief453ba02008-11-07 14:05:41 -08002907 return -EINVAL;
2908 }
2909 if ((config->min_height > r->height) || (r->height > config->max_height)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002910 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
Jesse Barnes8cf5c912011-11-14 14:51:27 -08002911 r->height, config->min_height, config->max_height);
Dave Airlief453ba02008-11-07 14:05:41 -08002912 return -EINVAL;
2913 }
2914
Ville Syrjäläd1b45d52012-04-05 21:35:18 +03002915 ret = framebuffer_check(r);
2916 if (ret)
Ville Syrjälä935b5972011-12-20 00:06:48 +02002917 return ret;
Ville Syrjälä935b5972011-12-20 00:06:48 +02002918
Dave Airlief453ba02008-11-07 14:05:41 -08002919 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
Chris Wilsoncce13ff2010-08-08 13:36:38 +01002920 if (IS_ERR(fb)) {
Dave Airlie1aa1b112012-05-01 17:38:35 +01002921 DRM_DEBUG_KMS("could not create framebuffer\n");
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002922 return PTR_ERR(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002923 }
2924
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002925 mutex_lock(&file_priv->fbs_lock);
Jakob Bornecrantze0c84632008-12-19 14:50:50 +10002926 r->fb_id = fb->base.id;
Dave Airlief453ba02008-11-07 14:05:41 -08002927 list_add(&fb->filp_head, &file_priv->fbs);
Jerome Glisse94401062010-07-15 15:43:25 -04002928 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002929 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002930
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002931
Dave Airlief453ba02008-11-07 14:05:41 -08002932 return ret;
2933}
2934
2935/**
2936 * drm_mode_rmfb - remove an FB from the configuration
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002937 * @dev: drm device for the ioctl
2938 * @data: data pointer for the ioctl
2939 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002940 *
Dave Airlief453ba02008-11-07 14:05:41 -08002941 * Remove the FB specified by the user.
2942 *
2943 * Called by the user via ioctl.
2944 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002945 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08002946 * Zero on success, errno on failure.
2947 */
2948int drm_mode_rmfb(struct drm_device *dev,
2949 void *data, struct drm_file *file_priv)
2950{
Dave Airlief453ba02008-11-07 14:05:41 -08002951 struct drm_framebuffer *fb = NULL;
2952 struct drm_framebuffer *fbl = NULL;
2953 uint32_t *id = data;
Dave Airlief453ba02008-11-07 14:05:41 -08002954 int found = 0;
2955
Dave Airliefb3b06c2011-02-08 13:55:21 +10002956 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2957 return -EINVAL;
2958
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002959 mutex_lock(&file_priv->fbs_lock);
Daniel Vetter2b677e82012-12-10 21:16:05 +01002960 mutex_lock(&dev->mode_config.fb_lock);
2961 fb = __drm_framebuffer_lookup(dev, *id);
2962 if (!fb)
2963 goto fail_lookup;
2964
Dave Airlief453ba02008-11-07 14:05:41 -08002965 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
2966 if (fb == fbl)
2967 found = 1;
Daniel Vetter2b677e82012-12-10 21:16:05 +01002968 if (!found)
2969 goto fail_lookup;
2970
2971 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
2972 __drm_framebuffer_unregister(dev, fb);
Dave Airlief453ba02008-11-07 14:05:41 -08002973
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002974 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01002975 mutex_unlock(&dev->mode_config.fb_lock);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002976 mutex_unlock(&file_priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08002977
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002978 drm_framebuffer_remove(fb);
Daniel Vetter4b096ac2012-12-10 21:19:18 +01002979
Daniel Vetter2b677e82012-12-10 21:16:05 +01002980 return 0;
2981
2982fail_lookup:
2983 mutex_unlock(&dev->mode_config.fb_lock);
2984 mutex_unlock(&file_priv->fbs_lock);
2985
Ville Syrjälä37c4e702013-10-17 13:35:01 +03002986 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08002987}
2988
2989/**
2990 * drm_mode_getfb - get FB info
Daniel Vetter065a50ed2012-12-02 00:09:18 +01002991 * @dev: drm device for the ioctl
2992 * @data: data pointer for the ioctl
2993 * @file_priv: drm file for the ioctl call
Dave Airlief453ba02008-11-07 14:05:41 -08002994 *
Dave Airlief453ba02008-11-07 14:05:41 -08002995 * Lookup the FB given its ID and return info about it.
2996 *
2997 * Called by the user via ioctl.
2998 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01002999 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08003000 * Zero on success, errno on failure.
3001 */
3002int drm_mode_getfb(struct drm_device *dev,
3003 void *data, struct drm_file *file_priv)
3004{
3005 struct drm_mode_fb_cmd *r = data;
Dave Airlief453ba02008-11-07 14:05:41 -08003006 struct drm_framebuffer *fb;
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003007 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003008
Dave Airliefb3b06c2011-02-08 13:55:21 +10003009 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3010 return -EINVAL;
3011
Daniel Vetter786b99e2012-12-02 21:53:40 +01003012 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003013 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003014 return -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003015
3016 r->height = fb->height;
3017 r->width = fb->width;
3018 r->depth = fb->depth;
3019 r->bpp = fb->bits_per_pixel;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02003020 r->pitch = fb->pitches[0];
David Herrmann101b96f2013-08-26 15:16:49 +02003021 if (fb->funcs->create_handle) {
Thomas Hellstrom09f308f2014-03-13 10:00:42 +01003022 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
Thomas Hellstrom43683052014-03-13 11:07:44 +01003023 drm_is_control_client(file_priv)) {
David Herrmann101b96f2013-08-26 15:16:49 +02003024 ret = fb->funcs->create_handle(fb, file_priv,
3025 &r->handle);
3026 } else {
3027 /* GET_FB() is an unprivileged ioctl so we must not
3028 * return a buffer-handle to non-master processes! For
3029 * backwards-compatibility reasons, we cannot make
3030 * GET_FB() privileged, so just return an invalid handle
3031 * for non-masters. */
3032 r->handle = 0;
3033 ret = 0;
3034 }
3035 } else {
Daniel Vetteraf26ef32012-12-13 23:07:50 +01003036 ret = -ENODEV;
David Herrmann101b96f2013-08-26 15:16:49 +02003037 }
Dave Airlief453ba02008-11-07 14:05:41 -08003038
Daniel Vetter58c0dca2012-12-13 23:06:08 +01003039 drm_framebuffer_unreference(fb);
3040
Dave Airlief453ba02008-11-07 14:05:41 -08003041 return ret;
3042}
3043
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003044/**
3045 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3046 * @dev: drm device for the ioctl
3047 * @data: data pointer for the ioctl
3048 * @file_priv: drm file for the ioctl call
3049 *
3050 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3051 * rectangle list. Generic userspace which does frontbuffer rendering must call
3052 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3053 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3054 *
3055 * Modesetting drivers which always update the frontbuffer do not need to
3056 * implement the corresponding ->dirty framebuffer callback.
3057 *
3058 * Called by the user via ioctl.
3059 *
3060 * Returns:
3061 * Zero on success, errno on failure.
3062 */
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003063int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3064 void *data, struct drm_file *file_priv)
3065{
3066 struct drm_clip_rect __user *clips_ptr;
3067 struct drm_clip_rect *clips = NULL;
3068 struct drm_mode_fb_dirty_cmd *r = data;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003069 struct drm_framebuffer *fb;
3070 unsigned flags;
3071 int num_clips;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003072 int ret;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003073
Dave Airliefb3b06c2011-02-08 13:55:21 +10003074 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3075 return -EINVAL;
3076
Daniel Vetter786b99e2012-12-02 21:53:40 +01003077 fb = drm_framebuffer_lookup(dev, r->fb_id);
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003078 if (!fb)
Ville Syrjälä37c4e702013-10-17 13:35:01 +03003079 return -ENOENT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003080
3081 num_clips = r->num_clips;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003082 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003083
3084 if (!num_clips != !clips_ptr) {
3085 ret = -EINVAL;
3086 goto out_err1;
3087 }
3088
3089 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3090
3091 /* If userspace annotates copy, clips must come in pairs */
3092 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3093 ret = -EINVAL;
3094 goto out_err1;
3095 }
3096
3097 if (num_clips && clips_ptr) {
Xi Wanga5cd3352011-11-23 01:12:01 -05003098 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3099 ret = -EINVAL;
3100 goto out_err1;
3101 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003102 clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
3103 if (!clips) {
3104 ret = -ENOMEM;
3105 goto out_err1;
3106 }
3107
3108 ret = copy_from_user(clips, clips_ptr,
3109 num_clips * sizeof(*clips));
Dan Carpentere902a352010-06-04 12:23:21 +02003110 if (ret) {
3111 ret = -EFAULT;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003112 goto out_err2;
Dan Carpentere902a352010-06-04 12:23:21 +02003113 }
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003114 }
3115
3116 if (fb->funcs->dirty) {
Thomas Hellstrom02b00162010-10-05 12:43:02 +02003117 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3118 clips, num_clips);
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003119 } else {
3120 ret = -ENOSYS;
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003121 }
3122
3123out_err2:
3124 kfree(clips);
3125out_err1:
Daniel Vetter4ccf0972012-12-11 00:38:18 +01003126 drm_framebuffer_unreference(fb);
3127
Jakob Bornecrantz884840a2009-12-03 23:25:47 +00003128 return ret;
3129}
3130
3131
Dave Airlief453ba02008-11-07 14:05:41 -08003132/**
3133 * drm_fb_release - remove and free the FBs on this file
Daniel Vetter065a50ed2012-12-02 00:09:18 +01003134 * @priv: drm file for the ioctl
Dave Airlief453ba02008-11-07 14:05:41 -08003135 *
Dave Airlief453ba02008-11-07 14:05:41 -08003136 * Destroy all the FBs associated with @filp.
3137 *
3138 * Called by the user via ioctl.
3139 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003140 * Returns:
Dave Airlief453ba02008-11-07 14:05:41 -08003141 * Zero on success, errno on failure.
3142 */
Kristian Høgsbergea39f832009-02-12 14:37:56 -05003143void drm_fb_release(struct drm_file *priv)
Dave Airlief453ba02008-11-07 14:05:41 -08003144{
Dave Airlief453ba02008-11-07 14:05:41 -08003145 struct drm_device *dev = priv->minor->dev;
3146 struct drm_framebuffer *fb, *tfb;
3147
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003148 mutex_lock(&priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003149 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
Daniel Vetter2b677e82012-12-10 21:16:05 +01003150
3151 mutex_lock(&dev->mode_config.fb_lock);
3152 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3153 __drm_framebuffer_unregister(dev, fb);
3154 mutex_unlock(&dev->mode_config.fb_lock);
3155
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003156 list_del_init(&fb->filp_head);
Daniel Vetter2b677e82012-12-10 21:16:05 +01003157
3158 /* This will also drop the fpriv->fbs reference. */
Rob Clarkf7eff602012-09-05 21:48:38 +00003159 drm_framebuffer_remove(fb);
Dave Airlief453ba02008-11-07 14:05:41 -08003160 }
Daniel Vetter4b096ac2012-12-10 21:19:18 +01003161 mutex_unlock(&priv->fbs_lock);
Dave Airlief453ba02008-11-07 14:05:41 -08003162}
3163
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003164/**
3165 * drm_property_create - create a new property type
3166 * @dev: drm device
3167 * @flags: flags specifying the property type
3168 * @name: name of the property
3169 * @num_values: number of pre-defined values
3170 *
3171 * This creates a new generic drm property which can then be attached to a drm
3172 * object with drm_object_attach_property. The returned property object must be
3173 * freed with drm_property_destroy.
3174 *
3175 * Returns:
3176 * A pointer to the newly created property on success, NULL on failure.
3177 */
Dave Airlief453ba02008-11-07 14:05:41 -08003178struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3179 const char *name, int num_values)
3180{
3181 struct drm_property *property = NULL;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003182 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003183
3184 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3185 if (!property)
3186 return NULL;
3187
Rob Clark98f75de2014-05-30 11:37:03 -04003188 property->dev = dev;
3189
Dave Airlief453ba02008-11-07 14:05:41 -08003190 if (num_values) {
3191 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
3192 if (!property->values)
3193 goto fail;
3194 }
3195
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003196 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3197 if (ret)
3198 goto fail;
3199
Dave Airlief453ba02008-11-07 14:05:41 -08003200 property->flags = flags;
3201 property->num_values = num_values;
3202 INIT_LIST_HEAD(&property->enum_blob_list);
3203
Vinson Lee471dd2e2011-11-10 11:55:40 -08003204 if (name) {
Dave Airlief453ba02008-11-07 14:05:41 -08003205 strncpy(property->name, name, DRM_PROP_NAME_LEN);
Vinson Lee471dd2e2011-11-10 11:55:40 -08003206 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3207 }
Dave Airlief453ba02008-11-07 14:05:41 -08003208
3209 list_add_tail(&property->head, &dev->mode_config.property_list);
Rob Clark5ea22f22014-05-30 11:34:01 -04003210
3211 WARN_ON(!drm_property_type_valid(property));
3212
Dave Airlief453ba02008-11-07 14:05:41 -08003213 return property;
3214fail:
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003215 kfree(property->values);
Dave Airlief453ba02008-11-07 14:05:41 -08003216 kfree(property);
3217 return NULL;
3218}
3219EXPORT_SYMBOL(drm_property_create);
3220
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003221/**
3222 * drm_property_create - create a new enumeration property type
3223 * @dev: drm device
3224 * @flags: flags specifying the property type
3225 * @name: name of the property
3226 * @props: enumeration lists with property values
3227 * @num_values: number of pre-defined values
3228 *
3229 * This creates a new generic drm property which can then be attached to a drm
3230 * object with drm_object_attach_property. The returned property object must be
3231 * freed with drm_property_destroy.
3232 *
3233 * Userspace is only allowed to set one of the predefined values for enumeration
3234 * properties.
3235 *
3236 * Returns:
3237 * A pointer to the newly created property on success, NULL on failure.
3238 */
Sascha Hauer4a67d392012-02-06 10:58:17 +01003239struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3240 const char *name,
3241 const struct drm_prop_enum_list *props,
3242 int num_values)
3243{
3244 struct drm_property *property;
3245 int i, ret;
3246
3247 flags |= DRM_MODE_PROP_ENUM;
3248
3249 property = drm_property_create(dev, flags, name, num_values);
3250 if (!property)
3251 return NULL;
3252
3253 for (i = 0; i < num_values; i++) {
3254 ret = drm_property_add_enum(property, i,
3255 props[i].type,
3256 props[i].name);
3257 if (ret) {
3258 drm_property_destroy(dev, property);
3259 return NULL;
3260 }
3261 }
3262
3263 return property;
3264}
3265EXPORT_SYMBOL(drm_property_create_enum);
3266
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003267/**
3268 * drm_property_create - create a new bitmask property type
3269 * @dev: drm device
3270 * @flags: flags specifying the property type
3271 * @name: name of the property
3272 * @props: enumeration lists with property bitflags
3273 * @num_values: number of pre-defined values
3274 *
3275 * This creates a new generic drm property which can then be attached to a drm
3276 * object with drm_object_attach_property. The returned property object must be
3277 * freed with drm_property_destroy.
3278 *
3279 * Compared to plain enumeration properties userspace is allowed to set any
3280 * or'ed together combination of the predefined property bitflag values
3281 *
3282 * Returns:
3283 * A pointer to the newly created property on success, NULL on failure.
3284 */
Rob Clark49e27542012-05-17 02:23:26 -06003285struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3286 int flags, const char *name,
3287 const struct drm_prop_enum_list *props,
3288 int num_values)
3289{
3290 struct drm_property *property;
3291 int i, ret;
3292
3293 flags |= DRM_MODE_PROP_BITMASK;
3294
3295 property = drm_property_create(dev, flags, name, num_values);
3296 if (!property)
3297 return NULL;
3298
3299 for (i = 0; i < num_values; i++) {
3300 ret = drm_property_add_enum(property, i,
3301 props[i].type,
3302 props[i].name);
3303 if (ret) {
3304 drm_property_destroy(dev, property);
3305 return NULL;
3306 }
3307 }
3308
3309 return property;
3310}
3311EXPORT_SYMBOL(drm_property_create_bitmask);
3312
Rob Clarkebc44cf2012-09-12 22:22:31 -05003313static struct drm_property *property_create_range(struct drm_device *dev,
3314 int flags, const char *name,
3315 uint64_t min, uint64_t max)
3316{
3317 struct drm_property *property;
3318
3319 property = drm_property_create(dev, flags, name, 2);
3320 if (!property)
3321 return NULL;
3322
3323 property->values[0] = min;
3324 property->values[1] = max;
3325
3326 return property;
3327}
3328
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003329/**
3330 * drm_property_create - create a new ranged property type
3331 * @dev: drm device
3332 * @flags: flags specifying the property type
3333 * @name: name of the property
3334 * @min: minimum value of the property
3335 * @max: maximum value of the property
3336 *
3337 * This creates a new generic drm property which can then be attached to a drm
3338 * object with drm_object_attach_property. The returned property object must be
3339 * freed with drm_property_destroy.
3340 *
3341 * Userspace is allowed to set any interger value in the (min, max) range
3342 * inclusive.
3343 *
3344 * Returns:
3345 * A pointer to the newly created property on success, NULL on failure.
3346 */
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003347struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3348 const char *name,
3349 uint64_t min, uint64_t max)
3350{
Rob Clarkebc44cf2012-09-12 22:22:31 -05003351 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3352 name, min, max);
Sascha Hauerd9bc3c02012-02-06 10:58:18 +01003353}
3354EXPORT_SYMBOL(drm_property_create_range);
3355
Rob Clarkebc44cf2012-09-12 22:22:31 -05003356struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3357 int flags, const char *name,
3358 int64_t min, int64_t max)
3359{
3360 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3361 name, I642U64(min), I642U64(max));
3362}
3363EXPORT_SYMBOL(drm_property_create_signed_range);
3364
Rob Clark98f75de2014-05-30 11:37:03 -04003365struct drm_property *drm_property_create_object(struct drm_device *dev,
3366 int flags, const char *name, uint32_t type)
3367{
3368 struct drm_property *property;
3369
3370 flags |= DRM_MODE_PROP_OBJECT;
3371
3372 property = drm_property_create(dev, flags, name, 1);
3373 if (!property)
3374 return NULL;
3375
3376 property->values[0] = type;
3377
3378 return property;
3379}
3380EXPORT_SYMBOL(drm_property_create_object);
3381
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003382/**
3383 * drm_property_add_enum - add a possible value to an enumeration property
3384 * @property: enumeration property to change
3385 * @index: index of the new enumeration
3386 * @value: value of the new enumeration
3387 * @name: symbolic name of the new enumeration
3388 *
3389 * This functions adds enumerations to a property.
3390 *
3391 * It's use is deprecated, drivers should use one of the more specific helpers
3392 * to directly create the property with all enumerations already attached.
3393 *
3394 * Returns:
3395 * Zero on success, error code on failure.
3396 */
Dave Airlief453ba02008-11-07 14:05:41 -08003397int drm_property_add_enum(struct drm_property *property, int index,
3398 uint64_t value, const char *name)
3399{
3400 struct drm_property_enum *prop_enum;
3401
Rob Clark5ea22f22014-05-30 11:34:01 -04003402 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3403 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
Rob Clark49e27542012-05-17 02:23:26 -06003404 return -EINVAL;
3405
3406 /*
3407 * Bitmask enum properties have the additional constraint of values
3408 * from 0 to 63
3409 */
Rob Clark5ea22f22014-05-30 11:34:01 -04003410 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3411 (value > 63))
Dave Airlief453ba02008-11-07 14:05:41 -08003412 return -EINVAL;
3413
3414 if (!list_empty(&property->enum_blob_list)) {
3415 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3416 if (prop_enum->value == value) {
3417 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3418 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3419 return 0;
3420 }
3421 }
3422 }
3423
3424 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3425 if (!prop_enum)
3426 return -ENOMEM;
3427
3428 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3429 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3430 prop_enum->value = value;
3431
3432 property->values[index] = value;
3433 list_add_tail(&prop_enum->head, &property->enum_blob_list);
3434 return 0;
3435}
3436EXPORT_SYMBOL(drm_property_add_enum);
3437
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003438/**
3439 * drm_property_destroy - destroy a drm property
3440 * @dev: drm device
3441 * @property: property to destry
3442 *
3443 * This function frees a property including any attached resources like
3444 * enumeration values.
3445 */
Dave Airlief453ba02008-11-07 14:05:41 -08003446void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3447{
3448 struct drm_property_enum *prop_enum, *pt;
3449
3450 list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
3451 list_del(&prop_enum->head);
3452 kfree(prop_enum);
3453 }
3454
3455 if (property->num_values)
3456 kfree(property->values);
3457 drm_mode_object_put(dev, &property->base);
3458 list_del(&property->head);
3459 kfree(property);
3460}
3461EXPORT_SYMBOL(drm_property_destroy);
3462
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003463/**
3464 * drm_object_attach_property - attach a property to a modeset object
3465 * @obj: drm modeset object
3466 * @property: property to attach
3467 * @init_val: initial value of the property
3468 *
3469 * This attaches the given property to the modeset object with the given initial
3470 * value. Currently this function cannot fail since the properties are stored in
3471 * a statically sized array.
3472 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003473void drm_object_attach_property(struct drm_mode_object *obj,
3474 struct drm_property *property,
3475 uint64_t init_val)
3476{
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003477 int count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003478
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003479 if (count == DRM_OBJECT_MAX_PROPERTY) {
3480 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3481 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3482 "you see this message on the same object type.\n",
3483 obj->type);
3484 return;
Paulo Zanonic5431882012-05-15 18:09:02 -03003485 }
3486
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003487 obj->properties->ids[count] = property->base.id;
3488 obj->properties->values[count] = init_val;
3489 obj->properties->count++;
Paulo Zanonic5431882012-05-15 18:09:02 -03003490}
3491EXPORT_SYMBOL(drm_object_attach_property);
3492
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003493/**
3494 * drm_object_property_set_value - set the value of a property
3495 * @obj: drm mode object to set property value for
3496 * @property: property to set
3497 * @val: value the property should be set to
3498 *
3499 * This functions sets a given property on a given object. This function only
3500 * changes the software state of the property, it does not call into the
3501 * driver's ->set_property callback.
3502 *
3503 * Returns:
3504 * Zero on success, error code on failure.
3505 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003506int drm_object_property_set_value(struct drm_mode_object *obj,
3507 struct drm_property *property, uint64_t val)
3508{
3509 int i;
3510
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003511 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003512 if (obj->properties->ids[i] == property->base.id) {
3513 obj->properties->values[i] = val;
3514 return 0;
3515 }
3516 }
3517
3518 return -EINVAL;
3519}
3520EXPORT_SYMBOL(drm_object_property_set_value);
3521
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003522/**
3523 * drm_object_property_get_value - retrieve the value of a property
3524 * @obj: drm mode object to get property value from
3525 * @property: property to retrieve
3526 * @val: storage for the property value
3527 *
3528 * This function retrieves the softare state of the given property for the given
3529 * property. Since there is no driver callback to retrieve the current property
3530 * value this might be out of sync with the hardware, depending upon the driver
3531 * and property.
3532 *
3533 * Returns:
3534 * Zero on success, error code on failure.
3535 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003536int drm_object_property_get_value(struct drm_mode_object *obj,
3537 struct drm_property *property, uint64_t *val)
3538{
3539 int i;
3540
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003541 for (i = 0; i < obj->properties->count; i++) {
Paulo Zanonic5431882012-05-15 18:09:02 -03003542 if (obj->properties->ids[i] == property->base.id) {
3543 *val = obj->properties->values[i];
3544 return 0;
3545 }
3546 }
3547
3548 return -EINVAL;
3549}
3550EXPORT_SYMBOL(drm_object_property_get_value);
3551
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003552/**
3553 * drm_mode_getproperty_ioctl - get the current value of a connector's property
3554 * @dev: DRM device
3555 * @data: ioctl data
3556 * @file_priv: DRM file info
3557 *
3558 * This function retrieves the current value for an connectors's property.
3559 *
3560 * Called by the user via ioctl.
3561 *
3562 * Returns:
3563 * Zero on success, errno on failure.
3564 */
Dave Airlief453ba02008-11-07 14:05:41 -08003565int drm_mode_getproperty_ioctl(struct drm_device *dev,
3566 void *data, struct drm_file *file_priv)
3567{
Dave Airlief453ba02008-11-07 14:05:41 -08003568 struct drm_mode_get_property *out_resp = data;
3569 struct drm_property *property;
3570 int enum_count = 0;
3571 int blob_count = 0;
3572 int value_count = 0;
3573 int ret = 0, i;
3574 int copied;
3575 struct drm_property_enum *prop_enum;
3576 struct drm_mode_property_enum __user *enum_ptr;
3577 struct drm_property_blob *prop_blob;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003578 uint32_t __user *blob_id_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003579 uint64_t __user *values_ptr;
3580 uint32_t __user *blob_length_ptr;
3581
Dave Airliefb3b06c2011-02-08 13:55:21 +10003582 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3583 return -EINVAL;
3584
Daniel Vetter84849902012-12-02 00:28:11 +01003585 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04003586 property = drm_property_find(dev, out_resp->prop_id);
3587 if (!property) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003588 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003589 goto done;
3590 }
Dave Airlief453ba02008-11-07 14:05:41 -08003591
Rob Clark5ea22f22014-05-30 11:34:01 -04003592 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3593 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003594 list_for_each_entry(prop_enum, &property->enum_blob_list, head)
3595 enum_count++;
Rob Clark5ea22f22014-05-30 11:34:01 -04003596 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003597 list_for_each_entry(prop_blob, &property->enum_blob_list, head)
3598 blob_count++;
3599 }
3600
3601 value_count = property->num_values;
3602
3603 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
3604 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
3605 out_resp->flags = property->flags;
3606
3607 if ((out_resp->count_values >= value_count) && value_count) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003608 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003609 for (i = 0; i < value_count; i++) {
3610 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
3611 ret = -EFAULT;
3612 goto done;
3613 }
3614 }
3615 }
3616 out_resp->count_values = value_count;
3617
Rob Clark5ea22f22014-05-30 11:34:01 -04003618 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3619 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003620 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
3621 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003622 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003623 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3624
3625 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
3626 ret = -EFAULT;
3627 goto done;
3628 }
3629
3630 if (copy_to_user(&enum_ptr[copied].name,
3631 &prop_enum->name, DRM_PROP_NAME_LEN)) {
3632 ret = -EFAULT;
3633 goto done;
3634 }
3635 copied++;
3636 }
3637 }
3638 out_resp->count_enum_blobs = enum_count;
3639 }
3640
Rob Clark5ea22f22014-05-30 11:34:01 -04003641 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Dave Airlief453ba02008-11-07 14:05:41 -08003642 if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
3643 copied = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003644 blob_id_ptr = (uint32_t __user *)(unsigned long)out_resp->enum_blob_ptr;
3645 blob_length_ptr = (uint32_t __user *)(unsigned long)out_resp->values_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003646
3647 list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
3648 if (put_user(prop_blob->base.id, blob_id_ptr + copied)) {
3649 ret = -EFAULT;
3650 goto done;
3651 }
3652
3653 if (put_user(prop_blob->length, blob_length_ptr + copied)) {
3654 ret = -EFAULT;
3655 goto done;
3656 }
3657
3658 copied++;
3659 }
3660 }
3661 out_resp->count_enum_blobs = blob_count;
3662 }
3663done:
Daniel Vetter84849902012-12-02 00:28:11 +01003664 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003665 return ret;
3666}
3667
3668static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
3669 void *data)
3670{
3671 struct drm_property_blob *blob;
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003672 int ret;
Dave Airlief453ba02008-11-07 14:05:41 -08003673
3674 if (!length || !data)
3675 return NULL;
3676
3677 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3678 if (!blob)
3679 return NULL;
3680
Ville Syrjälä6bfc56a2012-03-13 12:35:48 +02003681 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
3682 if (ret) {
3683 kfree(blob);
3684 return NULL;
3685 }
3686
Dave Airlief453ba02008-11-07 14:05:41 -08003687 blob->length = length;
3688
3689 memcpy(blob->data, data, length);
3690
Dave Airlief453ba02008-11-07 14:05:41 -08003691 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
3692 return blob;
3693}
3694
3695static void drm_property_destroy_blob(struct drm_device *dev,
3696 struct drm_property_blob *blob)
3697{
3698 drm_mode_object_put(dev, &blob->base);
3699 list_del(&blob->head);
3700 kfree(blob);
3701}
3702
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003703/**
3704 * drm_mode_getblob_ioctl - get the contents of a blob property value
3705 * @dev: DRM device
3706 * @data: ioctl data
3707 * @file_priv: DRM file info
3708 *
3709 * This function retrieves the contents of a blob property. The value stored in
3710 * an object's blob property is just a normal modeset object id.
3711 *
3712 * Called by the user via ioctl.
3713 *
3714 * Returns:
3715 * Zero on success, errno on failure.
3716 */
Dave Airlief453ba02008-11-07 14:05:41 -08003717int drm_mode_getblob_ioctl(struct drm_device *dev,
3718 void *data, struct drm_file *file_priv)
3719{
Dave Airlief453ba02008-11-07 14:05:41 -08003720 struct drm_mode_get_blob *out_resp = data;
3721 struct drm_property_blob *blob;
3722 int ret = 0;
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003723 void __user *blob_ptr;
Dave Airlief453ba02008-11-07 14:05:41 -08003724
Dave Airliefb3b06c2011-02-08 13:55:21 +10003725 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3726 return -EINVAL;
3727
Daniel Vetter84849902012-12-02 00:28:11 +01003728 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04003729 blob = drm_property_blob_find(dev, out_resp->blob_id);
3730 if (!blob) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003731 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08003732 goto done;
3733 }
Dave Airlief453ba02008-11-07 14:05:41 -08003734
3735 if (out_resp->length == blob->length) {
Ville Syrjälä81f6c7f2011-12-20 00:06:42 +02003736 blob_ptr = (void __user *)(unsigned long)out_resp->data;
Dave Airlief453ba02008-11-07 14:05:41 -08003737 if (copy_to_user(blob_ptr, blob->data, blob->length)){
3738 ret = -EFAULT;
3739 goto done;
3740 }
3741 }
3742 out_resp->length = blob->length;
3743
3744done:
Daniel Vetter84849902012-12-02 00:28:11 +01003745 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08003746 return ret;
3747}
3748
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003749/**
3750 * drm_mode_connector_update_edid_property - update the edid property of a connector
3751 * @connector: drm connector
3752 * @edid: new value of the edid property
3753 *
3754 * This function creates a new blob modeset object and assigns its id to the
3755 * connector's edid property.
3756 *
3757 * Returns:
3758 * Zero on success, errno on failure.
3759 */
Dave Airlief453ba02008-11-07 14:05:41 -08003760int drm_mode_connector_update_edid_property(struct drm_connector *connector,
3761 struct edid *edid)
3762{
3763 struct drm_device *dev = connector->dev;
Laurent Pinchart4a1b0712012-05-17 13:27:21 +02003764 int ret, size;
Dave Airlief453ba02008-11-07 14:05:41 -08003765
3766 if (connector->edid_blob_ptr)
3767 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
3768
3769 /* Delete edid, when there is none. */
3770 if (!edid) {
3771 connector->edid_blob_ptr = NULL;
Rob Clark58495562012-10-11 20:50:56 -05003772 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
Dave Airlief453ba02008-11-07 14:05:41 -08003773 return ret;
3774 }
3775
Adam Jackson7466f4c2010-03-29 21:43:23 +00003776 size = EDID_LENGTH * (1 + edid->extensions);
3777 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
3778 size, edid);
Sachin Kamate655d122012-11-19 09:44:57 +00003779 if (!connector->edid_blob_ptr)
3780 return -EINVAL;
Dave Airlief453ba02008-11-07 14:05:41 -08003781
Rob Clark58495562012-10-11 20:50:56 -05003782 ret = drm_object_property_set_value(&connector->base,
Dave Airlief453ba02008-11-07 14:05:41 -08003783 dev->mode_config.edid_property,
3784 connector->edid_blob_ptr->base.id);
3785
3786 return ret;
3787}
3788EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
3789
Paulo Zanoni26a34812012-05-15 18:08:59 -03003790static bool drm_property_change_is_valid(struct drm_property *property,
Ville Syrjälä592c20e2012-05-24 20:53:58 +03003791 uint64_t value)
Paulo Zanoni26a34812012-05-15 18:08:59 -03003792{
3793 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
3794 return false;
Rob Clark5ea22f22014-05-30 11:34:01 -04003795
3796 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
Paulo Zanoni26a34812012-05-15 18:08:59 -03003797 if (value < property->values[0] || value > property->values[1])
3798 return false;
3799 return true;
Rob Clarkebc44cf2012-09-12 22:22:31 -05003800 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
3801 int64_t svalue = U642I64(value);
3802 if (svalue < U642I64(property->values[0]) ||
3803 svalue > U642I64(property->values[1]))
3804 return false;
3805 return true;
Rob Clark5ea22f22014-05-30 11:34:01 -04003806 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
Rob Clark49e27542012-05-17 02:23:26 -06003807 int i;
Ville Syrjälä592c20e2012-05-24 20:53:58 +03003808 uint64_t valid_mask = 0;
Rob Clark49e27542012-05-17 02:23:26 -06003809 for (i = 0; i < property->num_values; i++)
3810 valid_mask |= (1ULL << property->values[i]);
3811 return !(value & ~valid_mask);
Rob Clark5ea22f22014-05-30 11:34:01 -04003812 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
Ville Syrjäläc4a56752012-10-25 18:05:06 +00003813 /* Only the driver knows */
3814 return true;
Rob Clark98f75de2014-05-30 11:37:03 -04003815 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
3816 struct drm_mode_object *obj;
3817 /* a zero value for an object property translates to null: */
3818 if (value == 0)
3819 return true;
3820 /*
3821 * NOTE: use _object_find() directly to bypass restriction on
3822 * looking up refcnt'd objects (ie. fb's). For a refcnt'd
3823 * object this could race against object finalization, so it
3824 * simply tells us that the object *was* valid. Which is good
3825 * enough.
3826 */
3827 obj = _object_find(property->dev, value, property->values[0]);
3828 return obj != NULL;
Paulo Zanoni26a34812012-05-15 18:08:59 -03003829 } else {
3830 int i;
3831 for (i = 0; i < property->num_values; i++)
3832 if (property->values[i] == value)
3833 return true;
3834 return false;
3835 }
3836}
3837
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003838/**
3839 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
3840 * @dev: DRM device
3841 * @data: ioctl data
3842 * @file_priv: DRM file info
3843 *
3844 * This function sets the current value for a connectors's property. It also
3845 * calls into a driver's ->set_property callback to update the hardware state
3846 *
3847 * Called by the user via ioctl.
3848 *
3849 * Returns:
3850 * Zero on success, errno on failure.
3851 */
Dave Airlief453ba02008-11-07 14:05:41 -08003852int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
3853 void *data, struct drm_file *file_priv)
3854{
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03003855 struct drm_mode_connector_set_property *conn_set_prop = data;
3856 struct drm_mode_obj_set_property obj_set_prop = {
3857 .value = conn_set_prop->value,
3858 .prop_id = conn_set_prop->prop_id,
3859 .obj_id = conn_set_prop->connector_id,
3860 .obj_type = DRM_MODE_OBJECT_CONNECTOR
3861 };
Dave Airlief453ba02008-11-07 14:05:41 -08003862
Paulo Zanoni0057d8d2012-05-15 18:09:03 -03003863 /* It does all the locking and checking we need */
3864 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
Dave Airlief453ba02008-11-07 14:05:41 -08003865}
3866
Paulo Zanonic5431882012-05-15 18:09:02 -03003867static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
3868 struct drm_property *property,
3869 uint64_t value)
3870{
3871 int ret = -EINVAL;
3872 struct drm_connector *connector = obj_to_connector(obj);
3873
3874 /* Do DPMS ourselves */
3875 if (property == connector->dev->mode_config.dpms_property) {
3876 if (connector->funcs->dpms)
3877 (*connector->funcs->dpms)(connector, (int)value);
3878 ret = 0;
3879 } else if (connector->funcs->set_property)
3880 ret = connector->funcs->set_property(connector, property, value);
3881
3882 /* store the property value if successful */
3883 if (!ret)
Rob Clark58495562012-10-11 20:50:56 -05003884 drm_object_property_set_value(&connector->base, property, value);
Paulo Zanonic5431882012-05-15 18:09:02 -03003885 return ret;
3886}
3887
Paulo Zanonibffd9de02012-05-15 18:09:05 -03003888static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
3889 struct drm_property *property,
3890 uint64_t value)
3891{
3892 int ret = -EINVAL;
3893 struct drm_crtc *crtc = obj_to_crtc(obj);
3894
3895 if (crtc->funcs->set_property)
3896 ret = crtc->funcs->set_property(crtc, property, value);
3897 if (!ret)
3898 drm_object_property_set_value(obj, property, value);
3899
3900 return ret;
3901}
3902
Rob Clark4d939142012-05-17 02:23:27 -06003903static int drm_mode_plane_set_obj_prop(struct drm_mode_object *obj,
3904 struct drm_property *property,
3905 uint64_t value)
3906{
3907 int ret = -EINVAL;
3908 struct drm_plane *plane = obj_to_plane(obj);
3909
3910 if (plane->funcs->set_property)
3911 ret = plane->funcs->set_property(plane, property, value);
3912 if (!ret)
3913 drm_object_property_set_value(obj, property, value);
3914
3915 return ret;
3916}
3917
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003918/**
3919 * drm_mode_getproperty_ioctl - get the current value of a object's property
3920 * @dev: DRM device
3921 * @data: ioctl data
3922 * @file_priv: DRM file info
3923 *
3924 * This function retrieves the current value for an object's property. Compared
3925 * to the connector specific ioctl this one is extended to also work on crtc and
3926 * plane objects.
3927 *
3928 * Called by the user via ioctl.
3929 *
3930 * Returns:
3931 * Zero on success, errno on failure.
3932 */
Paulo Zanonic5431882012-05-15 18:09:02 -03003933int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
3934 struct drm_file *file_priv)
3935{
3936 struct drm_mode_obj_get_properties *arg = data;
3937 struct drm_mode_object *obj;
3938 int ret = 0;
3939 int i;
3940 int copied = 0;
3941 int props_count = 0;
3942 uint32_t __user *props_ptr;
3943 uint64_t __user *prop_values_ptr;
3944
3945 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3946 return -EINVAL;
3947
Daniel Vetter84849902012-12-02 00:28:11 +01003948 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003949
3950 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
3951 if (!obj) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03003952 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03003953 goto out;
3954 }
3955 if (!obj->properties) {
3956 ret = -EINVAL;
3957 goto out;
3958 }
3959
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03003960 props_count = obj->properties->count;
Paulo Zanonic5431882012-05-15 18:09:02 -03003961
3962 /* This ioctl is called twice, once to determine how much space is
3963 * needed, and the 2nd time to fill it. */
3964 if ((arg->count_props >= props_count) && props_count) {
3965 copied = 0;
3966 props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
3967 prop_values_ptr = (uint64_t __user *)(unsigned long)
3968 (arg->prop_values_ptr);
3969 for (i = 0; i < props_count; i++) {
3970 if (put_user(obj->properties->ids[i],
3971 props_ptr + copied)) {
3972 ret = -EFAULT;
3973 goto out;
3974 }
3975 if (put_user(obj->properties->values[i],
3976 prop_values_ptr + copied)) {
3977 ret = -EFAULT;
3978 goto out;
3979 }
3980 copied++;
3981 }
3982 }
3983 arg->count_props = props_count;
3984out:
Daniel Vetter84849902012-12-02 00:28:11 +01003985 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03003986 return ret;
3987}
3988
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01003989/**
3990 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
3991 * @dev: DRM device
3992 * @data: ioctl data
3993 * @file_priv: DRM file info
3994 *
3995 * This function sets the current value for an object's property. It also calls
3996 * into a driver's ->set_property callback to update the hardware state.
3997 * Compared to the connector specific ioctl this one is extended to also work on
3998 * crtc and plane objects.
3999 *
4000 * Called by the user via ioctl.
4001 *
4002 * Returns:
4003 * Zero on success, errno on failure.
4004 */
Paulo Zanonic5431882012-05-15 18:09:02 -03004005int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4006 struct drm_file *file_priv)
4007{
4008 struct drm_mode_obj_set_property *arg = data;
4009 struct drm_mode_object *arg_obj;
4010 struct drm_mode_object *prop_obj;
4011 struct drm_property *property;
4012 int ret = -EINVAL;
4013 int i;
4014
4015 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4016 return -EINVAL;
4017
Daniel Vetter84849902012-12-02 00:28:11 +01004018 drm_modeset_lock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004019
4020 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004021 if (!arg_obj) {
4022 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004023 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004024 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004025 if (!arg_obj->properties)
4026 goto out;
4027
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004028 for (i = 0; i < arg_obj->properties->count; i++)
Paulo Zanonic5431882012-05-15 18:09:02 -03004029 if (arg_obj->properties->ids[i] == arg->prop_id)
4030 break;
4031
Paulo Zanoni7f88a9b2012-05-15 18:09:04 -03004032 if (i == arg_obj->properties->count)
Paulo Zanonic5431882012-05-15 18:09:02 -03004033 goto out;
4034
4035 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4036 DRM_MODE_OBJECT_PROPERTY);
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004037 if (!prop_obj) {
4038 ret = -ENOENT;
Paulo Zanonic5431882012-05-15 18:09:02 -03004039 goto out;
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004040 }
Paulo Zanonic5431882012-05-15 18:09:02 -03004041 property = obj_to_property(prop_obj);
4042
4043 if (!drm_property_change_is_valid(property, arg->value))
4044 goto out;
4045
4046 switch (arg_obj->type) {
4047 case DRM_MODE_OBJECT_CONNECTOR:
4048 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4049 arg->value);
4050 break;
Paulo Zanonibffd9de02012-05-15 18:09:05 -03004051 case DRM_MODE_OBJECT_CRTC:
4052 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4053 break;
Rob Clark4d939142012-05-17 02:23:27 -06004054 case DRM_MODE_OBJECT_PLANE:
4055 ret = drm_mode_plane_set_obj_prop(arg_obj, property, arg->value);
4056 break;
Paulo Zanonic5431882012-05-15 18:09:02 -03004057 }
4058
4059out:
Daniel Vetter84849902012-12-02 00:28:11 +01004060 drm_modeset_unlock_all(dev);
Paulo Zanonic5431882012-05-15 18:09:02 -03004061 return ret;
4062}
4063
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004064/**
4065 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4066 * @connector: connector to attach
4067 * @encoder: encoder to attach @connector to
4068 *
4069 * This function links up a connector to an encoder. Note that the routing
4070 * restrictions between encoders and crtcs are exposed to userspace through the
4071 * possible_clones and possible_crtcs bitmasks.
4072 *
4073 * Returns:
4074 * Zero on success, errno on failure.
4075 */
Dave Airlief453ba02008-11-07 14:05:41 -08004076int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4077 struct drm_encoder *encoder)
4078{
4079 int i;
4080
4081 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4082 if (connector->encoder_ids[i] == 0) {
4083 connector->encoder_ids[i] = encoder->base.id;
4084 return 0;
4085 }
4086 }
4087 return -ENOMEM;
4088}
4089EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4090
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004091/**
4092 * drm_mode_crtc_set_gamma_size - set the gamma table size
4093 * @crtc: CRTC to set the gamma table size for
4094 * @gamma_size: size of the gamma table
4095 *
4096 * Drivers which support gamma tables should set this to the supported gamma
4097 * table size when initializing the CRTC. Currently the drm core only supports a
4098 * fixed gamma table size.
4099 *
4100 * Returns:
4101 * Zero on success, errno on failure.
4102 */
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004103int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004104 int gamma_size)
Dave Airlief453ba02008-11-07 14:05:41 -08004105{
4106 crtc->gamma_size = gamma_size;
4107
4108 crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
4109 if (!crtc->gamma_store) {
4110 crtc->gamma_size = 0;
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004111 return -ENOMEM;
Dave Airlief453ba02008-11-07 14:05:41 -08004112 }
4113
Sascha Hauer4cae5b82012-02-01 11:38:23 +01004114 return 0;
Dave Airlief453ba02008-11-07 14:05:41 -08004115}
4116EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4117
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004118/**
4119 * drm_mode_gamma_set_ioctl - set the gamma table
4120 * @dev: DRM device
4121 * @data: ioctl data
4122 * @file_priv: DRM file info
4123 *
4124 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4125 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4126 *
4127 * Called by the user via ioctl.
4128 *
4129 * Returns:
4130 * Zero on success, errno on failure.
4131 */
Dave Airlief453ba02008-11-07 14:05:41 -08004132int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4133 void *data, struct drm_file *file_priv)
4134{
4135 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004136 struct drm_crtc *crtc;
4137 void *r_base, *g_base, *b_base;
4138 int size;
4139 int ret = 0;
4140
Dave Airliefb3b06c2011-02-08 13:55:21 +10004141 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4142 return -EINVAL;
4143
Daniel Vetter84849902012-12-02 00:28:11 +01004144 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004145 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4146 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004147 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004148 goto out;
4149 }
Dave Airlief453ba02008-11-07 14:05:41 -08004150
Laurent Pinchartebe0f242012-05-17 13:27:24 +02004151 if (crtc->funcs->gamma_set == NULL) {
4152 ret = -ENOSYS;
4153 goto out;
4154 }
4155
Dave Airlief453ba02008-11-07 14:05:41 -08004156 /* memcpy into gamma store */
4157 if (crtc_lut->gamma_size != crtc->gamma_size) {
4158 ret = -EINVAL;
4159 goto out;
4160 }
4161
4162 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4163 r_base = crtc->gamma_store;
4164 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4165 ret = -EFAULT;
4166 goto out;
4167 }
4168
4169 g_base = r_base + size;
4170 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4171 ret = -EFAULT;
4172 goto out;
4173 }
4174
4175 b_base = g_base + size;
4176 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4177 ret = -EFAULT;
4178 goto out;
4179 }
4180
James Simmons72034252010-08-03 01:33:19 +01004181 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
Dave Airlief453ba02008-11-07 14:05:41 -08004182
4183out:
Daniel Vetter84849902012-12-02 00:28:11 +01004184 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004185 return ret;
4186
4187}
4188
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004189/**
4190 * drm_mode_gamma_get_ioctl - get the gamma table
4191 * @dev: DRM device
4192 * @data: ioctl data
4193 * @file_priv: DRM file info
4194 *
4195 * Copy the current gamma table into the storage provided. This also provides
4196 * the gamma table size the driver expects, which can be used to size the
4197 * allocated storage.
4198 *
4199 * Called by the user via ioctl.
4200 *
4201 * Returns:
4202 * Zero on success, errno on failure.
4203 */
Dave Airlief453ba02008-11-07 14:05:41 -08004204int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4205 void *data, struct drm_file *file_priv)
4206{
4207 struct drm_mode_crtc_lut *crtc_lut = data;
Dave Airlief453ba02008-11-07 14:05:41 -08004208 struct drm_crtc *crtc;
4209 void *r_base, *g_base, *b_base;
4210 int size;
4211 int ret = 0;
4212
Dave Airliefb3b06c2011-02-08 13:55:21 +10004213 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4214 return -EINVAL;
4215
Daniel Vetter84849902012-12-02 00:28:11 +01004216 drm_modeset_lock_all(dev);
Rob Clarka2b34e22013-10-05 16:36:52 -04004217 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4218 if (!crtc) {
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004219 ret = -ENOENT;
Dave Airlief453ba02008-11-07 14:05:41 -08004220 goto out;
4221 }
Dave Airlief453ba02008-11-07 14:05:41 -08004222
4223 /* memcpy into gamma store */
4224 if (crtc_lut->gamma_size != crtc->gamma_size) {
4225 ret = -EINVAL;
4226 goto out;
4227 }
4228
4229 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4230 r_base = crtc->gamma_store;
4231 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4232 ret = -EFAULT;
4233 goto out;
4234 }
4235
4236 g_base = r_base + size;
4237 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4238 ret = -EFAULT;
4239 goto out;
4240 }
4241
4242 b_base = g_base + size;
4243 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4244 ret = -EFAULT;
4245 goto out;
4246 }
4247out:
Daniel Vetter84849902012-12-02 00:28:11 +01004248 drm_modeset_unlock_all(dev);
Dave Airlief453ba02008-11-07 14:05:41 -08004249 return ret;
4250}
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004251
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004252/**
4253 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4254 * @dev: DRM device
4255 * @data: ioctl data
4256 * @file_priv: DRM file info
4257 *
4258 * This schedules an asynchronous update on a given CRTC, called page flip.
4259 * Optionally a drm event is generated to signal the completion of the event.
4260 * Generic drivers cannot assume that a pageflip with changed framebuffer
4261 * properties (including driver specific metadata like tiling layout) will work,
4262 * but some drivers support e.g. pixel format changes through the pageflip
4263 * ioctl.
4264 *
4265 * Called by the user via ioctl.
4266 *
4267 * Returns:
4268 * Zero on success, errno on failure.
4269 */
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004270int drm_mode_page_flip_ioctl(struct drm_device *dev,
4271 void *data, struct drm_file *file_priv)
4272{
4273 struct drm_mode_crtc_page_flip *page_flip = data;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004274 struct drm_crtc *crtc;
Daniel Vetterb0d12322012-12-11 01:07:12 +01004275 struct drm_framebuffer *fb = NULL, *old_fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004276 struct drm_pending_vblank_event *e = NULL;
4277 unsigned long flags;
4278 int ret = -EINVAL;
4279
4280 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4281 page_flip->reserved != 0)
4282 return -EINVAL;
4283
Keith Packard62f21042013-07-22 18:50:00 -07004284 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4285 return -EINVAL;
4286
Rob Clarka2b34e22013-10-05 16:36:52 -04004287 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4288 if (!crtc)
Ville Syrjäläf27657f2013-10-17 13:35:00 +03004289 return -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004290
Rob Clark51fd3712013-11-19 12:10:12 -05004291 drm_modeset_lock(&crtc->mutex, NULL);
Matt Roperf4510a22014-04-01 15:22:40 -07004292 if (crtc->primary->fb == NULL) {
Chris Wilson90c1efd2010-07-17 20:23:26 +01004293 /* The framebuffer is currently unbound, presumably
4294 * due to a hotplug event, that userspace has not
4295 * yet discovered.
4296 */
4297 ret = -EBUSY;
4298 goto out;
4299 }
4300
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004301 if (crtc->funcs->page_flip == NULL)
4302 goto out;
4303
Daniel Vetter786b99e2012-12-02 21:53:40 +01004304 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004305 if (!fb) {
4306 ret = -ENOENT;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004307 goto out;
Ville Syrjälä37c4e702013-10-17 13:35:01 +03004308 }
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004309
Damien Lespiauc11e9282013-09-25 16:45:30 +01004310 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4311 if (ret)
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004312 goto out;
Ville Syrjälä5f61bb42012-03-13 12:35:45 +02004313
Matt Roperf4510a22014-04-01 15:22:40 -07004314 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
Laurent Pinchart909d9cd2013-04-22 01:38:46 +02004315 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4316 ret = -EINVAL;
4317 goto out;
4318 }
4319
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004320 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4321 ret = -ENOMEM;
4322 spin_lock_irqsave(&dev->event_lock, flags);
4323 if (file_priv->event_space < sizeof e->event) {
4324 spin_unlock_irqrestore(&dev->event_lock, flags);
4325 goto out;
4326 }
4327 file_priv->event_space -= sizeof e->event;
4328 spin_unlock_irqrestore(&dev->event_lock, flags);
4329
4330 e = kzalloc(sizeof *e, GFP_KERNEL);
4331 if (e == NULL) {
4332 spin_lock_irqsave(&dev->event_lock, flags);
4333 file_priv->event_space += sizeof e->event;
4334 spin_unlock_irqrestore(&dev->event_lock, flags);
4335 goto out;
4336 }
4337
Jesse Barnes7bd4d7b2009-11-19 10:50:22 -08004338 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004339 e->event.base.length = sizeof e->event;
4340 e->event.user_data = page_flip->user_data;
4341 e->base.event = &e->event.base;
4342 e->base.file_priv = file_priv;
4343 e->base.destroy =
4344 (void (*) (struct drm_pending_event *)) kfree;
4345 }
4346
Matt Roperf4510a22014-04-01 15:22:40 -07004347 old_fb = crtc->primary->fb;
Keith Packarded8d1972013-07-22 18:49:58 -07004348 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004349 if (ret) {
Joonyoung Shimaef6a7e2012-04-18 13:47:02 +09004350 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4351 spin_lock_irqsave(&dev->event_lock, flags);
4352 file_priv->event_space += sizeof e->event;
4353 spin_unlock_irqrestore(&dev->event_lock, flags);
4354 kfree(e);
4355 }
Daniel Vetterb0d12322012-12-11 01:07:12 +01004356 /* Keep the old fb, don't unref it. */
4357 old_fb = NULL;
4358 } else {
Thierry Reding8cf1e982013-02-13 16:08:33 +01004359 /*
4360 * Warn if the driver hasn't properly updated the crtc->fb
4361 * field to reflect that the new framebuffer is now used.
4362 * Failing to do so will screw with the reference counting
4363 * on framebuffers.
4364 */
Matt Roperf4510a22014-04-01 15:22:40 -07004365 WARN_ON(crtc->primary->fb != fb);
Daniel Vetterb0d12322012-12-11 01:07:12 +01004366 /* Unref only the old framebuffer. */
4367 fb = NULL;
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004368 }
4369
4370out:
Daniel Vetterb0d12322012-12-11 01:07:12 +01004371 if (fb)
4372 drm_framebuffer_unreference(fb);
4373 if (old_fb)
4374 drm_framebuffer_unreference(old_fb);
Rob Clark51fd3712013-11-19 12:10:12 -05004375 drm_modeset_unlock(&crtc->mutex);
Daniel Vetterb4d5e7d2012-12-11 16:59:31 +01004376
Kristian Høgsbergd91d8a32009-11-17 12:43:55 -05004377 return ret;
4378}
Chris Wilsoneb033552011-01-24 15:11:08 +00004379
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004380/**
4381 * drm_mode_config_reset - call ->reset callbacks
4382 * @dev: drm device
4383 *
4384 * This functions calls all the crtc's, encoder's and connector's ->reset
4385 * callback. Drivers can use this in e.g. their driver load or resume code to
4386 * reset hardware and software state.
4387 */
Chris Wilsoneb033552011-01-24 15:11:08 +00004388void drm_mode_config_reset(struct drm_device *dev)
4389{
4390 struct drm_crtc *crtc;
4391 struct drm_encoder *encoder;
4392 struct drm_connector *connector;
4393
4394 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4395 if (crtc->funcs->reset)
4396 crtc->funcs->reset(crtc);
4397
4398 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
4399 if (encoder->funcs->reset)
4400 encoder->funcs->reset(encoder);
4401
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004402 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4403 connector->status = connector_status_unknown;
4404
Chris Wilsoneb033552011-01-24 15:11:08 +00004405 if (connector->funcs->reset)
4406 connector->funcs->reset(connector);
Daniel Vetter5e2cb2f2012-10-23 18:23:35 +00004407 }
Chris Wilsoneb033552011-01-24 15:11:08 +00004408}
4409EXPORT_SYMBOL(drm_mode_config_reset);
Dave Airlieff72145b2011-02-07 12:16:14 +10004410
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004411/**
4412 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
4413 * @dev: DRM device
4414 * @data: ioctl data
4415 * @file_priv: DRM file info
4416 *
4417 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
4418 * TTM or something else entirely) and returns the resulting buffer handle. This
4419 * handle can then be wrapped up into a framebuffer modeset object.
4420 *
4421 * Note that userspace is not allowed to use such objects for render
4422 * acceleration - drivers must create their own private ioctls for such a use
4423 * case.
4424 *
4425 * Called by the user via ioctl.
4426 *
4427 * Returns:
4428 * Zero on success, errno on failure.
4429 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004430int drm_mode_create_dumb_ioctl(struct drm_device *dev,
4431 void *data, struct drm_file *file_priv)
4432{
4433 struct drm_mode_create_dumb *args = data;
David Herrmannb28cd412014-01-20 20:09:55 +01004434 u32 cpp, stride, size;
Dave Airlieff72145b2011-02-07 12:16:14 +10004435
4436 if (!dev->driver->dumb_create)
4437 return -ENOSYS;
David Herrmannb28cd412014-01-20 20:09:55 +01004438 if (!args->width || !args->height || !args->bpp)
4439 return -EINVAL;
4440
4441 /* overflow checks for 32bit size calculations */
4442 cpp = DIV_ROUND_UP(args->bpp, 8);
4443 if (cpp > 0xffffffffU / args->width)
4444 return -EINVAL;
4445 stride = cpp * args->width;
4446 if (args->height > 0xffffffffU / stride)
4447 return -EINVAL;
4448
4449 /* test for wrap-around */
4450 size = args->height * stride;
4451 if (PAGE_ALIGN(size) == 0)
4452 return -EINVAL;
4453
Dave Airlieff72145b2011-02-07 12:16:14 +10004454 return dev->driver->dumb_create(file_priv, dev, args);
4455}
4456
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004457/**
4458 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
4459 * @dev: DRM device
4460 * @data: ioctl data
4461 * @file_priv: DRM file info
4462 *
4463 * Allocate an offset in the drm device node's address space to be able to
4464 * memory map a dumb buffer.
4465 *
4466 * Called by the user via ioctl.
4467 *
4468 * Returns:
4469 * Zero on success, errno on failure.
4470 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004471int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
4472 void *data, struct drm_file *file_priv)
4473{
4474 struct drm_mode_map_dumb *args = data;
4475
4476 /* call driver ioctl to get mmap offset */
4477 if (!dev->driver->dumb_map_offset)
4478 return -ENOSYS;
4479
4480 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
4481}
4482
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004483/**
4484 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
4485 * @dev: DRM device
4486 * @data: ioctl data
4487 * @file_priv: DRM file info
4488 *
4489 * This destroys the userspace handle for the given dumb backing storage buffer.
4490 * Since buffer objects must be reference counted in the kernel a buffer object
4491 * won't be immediately freed if a framebuffer modeset object still uses it.
4492 *
4493 * Called by the user via ioctl.
4494 *
4495 * Returns:
4496 * Zero on success, errno on failure.
4497 */
Dave Airlieff72145b2011-02-07 12:16:14 +10004498int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
4499 void *data, struct drm_file *file_priv)
4500{
4501 struct drm_mode_destroy_dumb *args = data;
4502
4503 if (!dev->driver->dumb_destroy)
4504 return -ENOSYS;
4505
4506 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
4507}
Dave Airlie248dbc22011-11-29 20:02:54 +00004508
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004509/**
4510 * drm_fb_get_bpp_depth - get the bpp/depth values for format
4511 * @format: pixel format (DRM_FORMAT_*)
4512 * @depth: storage for the depth value
4513 * @bpp: storage for the bpp value
4514 *
4515 * This only supports RGB formats here for compat with code that doesn't use
4516 * pixel formats directly yet.
Dave Airlie248dbc22011-11-29 20:02:54 +00004517 */
4518void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
4519 int *bpp)
4520{
4521 switch (format) {
Ville Syrjäläc51a6bc2013-01-31 19:43:37 +02004522 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02004523 case DRM_FORMAT_RGB332:
4524 case DRM_FORMAT_BGR233:
Dave Airlie248dbc22011-11-29 20:02:54 +00004525 *depth = 8;
4526 *bpp = 8;
4527 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004528 case DRM_FORMAT_XRGB1555:
4529 case DRM_FORMAT_XBGR1555:
4530 case DRM_FORMAT_RGBX5551:
4531 case DRM_FORMAT_BGRX5551:
4532 case DRM_FORMAT_ARGB1555:
4533 case DRM_FORMAT_ABGR1555:
4534 case DRM_FORMAT_RGBA5551:
4535 case DRM_FORMAT_BGRA5551:
Dave Airlie248dbc22011-11-29 20:02:54 +00004536 *depth = 15;
4537 *bpp = 16;
4538 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004539 case DRM_FORMAT_RGB565:
4540 case DRM_FORMAT_BGR565:
Dave Airlie248dbc22011-11-29 20:02:54 +00004541 *depth = 16;
4542 *bpp = 16;
4543 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004544 case DRM_FORMAT_RGB888:
4545 case DRM_FORMAT_BGR888:
4546 *depth = 24;
4547 *bpp = 24;
4548 break;
4549 case DRM_FORMAT_XRGB8888:
4550 case DRM_FORMAT_XBGR8888:
4551 case DRM_FORMAT_RGBX8888:
4552 case DRM_FORMAT_BGRX8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00004553 *depth = 24;
4554 *bpp = 32;
4555 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004556 case DRM_FORMAT_XRGB2101010:
4557 case DRM_FORMAT_XBGR2101010:
4558 case DRM_FORMAT_RGBX1010102:
4559 case DRM_FORMAT_BGRX1010102:
4560 case DRM_FORMAT_ARGB2101010:
4561 case DRM_FORMAT_ABGR2101010:
4562 case DRM_FORMAT_RGBA1010102:
4563 case DRM_FORMAT_BGRA1010102:
Dave Airlie248dbc22011-11-29 20:02:54 +00004564 *depth = 30;
4565 *bpp = 32;
4566 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02004567 case DRM_FORMAT_ARGB8888:
4568 case DRM_FORMAT_ABGR8888:
4569 case DRM_FORMAT_RGBA8888:
4570 case DRM_FORMAT_BGRA8888:
Dave Airlie248dbc22011-11-29 20:02:54 +00004571 *depth = 32;
4572 *bpp = 32;
4573 break;
4574 default:
Ville Syrjälä23c453a2013-10-15 21:06:51 +03004575 DRM_DEBUG_KMS("unsupported pixel format %s\n",
4576 drm_get_format_name(format));
Dave Airlie248dbc22011-11-29 20:02:54 +00004577 *depth = 0;
4578 *bpp = 0;
4579 break;
4580 }
4581}
4582EXPORT_SYMBOL(drm_fb_get_bpp_depth);
Ville Syrjälä141670e2012-04-05 21:35:15 +03004583
4584/**
4585 * drm_format_num_planes - get the number of planes for format
4586 * @format: pixel format (DRM_FORMAT_*)
4587 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004588 * Returns:
Ville Syrjälä141670e2012-04-05 21:35:15 +03004589 * The number of planes used by the specified pixel format.
4590 */
4591int drm_format_num_planes(uint32_t format)
4592{
4593 switch (format) {
4594 case DRM_FORMAT_YUV410:
4595 case DRM_FORMAT_YVU410:
4596 case DRM_FORMAT_YUV411:
4597 case DRM_FORMAT_YVU411:
4598 case DRM_FORMAT_YUV420:
4599 case DRM_FORMAT_YVU420:
4600 case DRM_FORMAT_YUV422:
4601 case DRM_FORMAT_YVU422:
4602 case DRM_FORMAT_YUV444:
4603 case DRM_FORMAT_YVU444:
4604 return 3;
4605 case DRM_FORMAT_NV12:
4606 case DRM_FORMAT_NV21:
4607 case DRM_FORMAT_NV16:
4608 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02004609 case DRM_FORMAT_NV24:
4610 case DRM_FORMAT_NV42:
Ville Syrjälä141670e2012-04-05 21:35:15 +03004611 return 2;
4612 default:
4613 return 1;
4614 }
4615}
4616EXPORT_SYMBOL(drm_format_num_planes);
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03004617
4618/**
4619 * drm_format_plane_cpp - determine the bytes per pixel value
4620 * @format: pixel format (DRM_FORMAT_*)
4621 * @plane: plane index
4622 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004623 * Returns:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03004624 * The bytes per pixel value for the specified plane.
4625 */
4626int drm_format_plane_cpp(uint32_t format, int plane)
4627{
4628 unsigned int depth;
4629 int bpp;
4630
4631 if (plane >= drm_format_num_planes(format))
4632 return 0;
4633
4634 switch (format) {
4635 case DRM_FORMAT_YUYV:
4636 case DRM_FORMAT_YVYU:
4637 case DRM_FORMAT_UYVY:
4638 case DRM_FORMAT_VYUY:
4639 return 2;
4640 case DRM_FORMAT_NV12:
4641 case DRM_FORMAT_NV21:
4642 case DRM_FORMAT_NV16:
4643 case DRM_FORMAT_NV61:
Laurent Pinchartba623f62012-05-18 23:47:40 +02004644 case DRM_FORMAT_NV24:
4645 case DRM_FORMAT_NV42:
Ville Syrjälä5a86bd52012-04-05 21:35:16 +03004646 return plane ? 2 : 1;
4647 case DRM_FORMAT_YUV410:
4648 case DRM_FORMAT_YVU410:
4649 case DRM_FORMAT_YUV411:
4650 case DRM_FORMAT_YVU411:
4651 case DRM_FORMAT_YUV420:
4652 case DRM_FORMAT_YVU420:
4653 case DRM_FORMAT_YUV422:
4654 case DRM_FORMAT_YVU422:
4655 case DRM_FORMAT_YUV444:
4656 case DRM_FORMAT_YVU444:
4657 return 1;
4658 default:
4659 drm_fb_get_bpp_depth(format, &depth, &bpp);
4660 return bpp >> 3;
4661 }
4662}
4663EXPORT_SYMBOL(drm_format_plane_cpp);
Ville Syrjälä01b68b02012-04-05 21:35:17 +03004664
4665/**
4666 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
4667 * @format: pixel format (DRM_FORMAT_*)
4668 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004669 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03004670 * The horizontal chroma subsampling factor for the
4671 * specified pixel format.
4672 */
4673int drm_format_horz_chroma_subsampling(uint32_t format)
4674{
4675 switch (format) {
4676 case DRM_FORMAT_YUV411:
4677 case DRM_FORMAT_YVU411:
4678 case DRM_FORMAT_YUV410:
4679 case DRM_FORMAT_YVU410:
4680 return 4;
4681 case DRM_FORMAT_YUYV:
4682 case DRM_FORMAT_YVYU:
4683 case DRM_FORMAT_UYVY:
4684 case DRM_FORMAT_VYUY:
4685 case DRM_FORMAT_NV12:
4686 case DRM_FORMAT_NV21:
4687 case DRM_FORMAT_NV16:
4688 case DRM_FORMAT_NV61:
4689 case DRM_FORMAT_YUV422:
4690 case DRM_FORMAT_YVU422:
4691 case DRM_FORMAT_YUV420:
4692 case DRM_FORMAT_YVU420:
4693 return 2;
4694 default:
4695 return 1;
4696 }
4697}
4698EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
4699
4700/**
4701 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
4702 * @format: pixel format (DRM_FORMAT_*)
4703 *
Daniel Vetterc8e32cc2014-03-10 21:33:02 +01004704 * Returns:
Ville Syrjälä01b68b02012-04-05 21:35:17 +03004705 * The vertical chroma subsampling factor for the
4706 * specified pixel format.
4707 */
4708int drm_format_vert_chroma_subsampling(uint32_t format)
4709{
4710 switch (format) {
4711 case DRM_FORMAT_YUV410:
4712 case DRM_FORMAT_YVU410:
4713 return 4;
4714 case DRM_FORMAT_YUV420:
4715 case DRM_FORMAT_YVU420:
4716 case DRM_FORMAT_NV12:
4717 case DRM_FORMAT_NV21:
4718 return 2;
4719 default:
4720 return 1;
4721 }
4722}
4723EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004724
4725/**
4726 * drm_mode_config_init - initialize DRM mode_configuration structure
4727 * @dev: DRM device
4728 *
4729 * Initialize @dev's mode_config structure, used for tracking the graphics
4730 * configuration of @dev.
4731 *
4732 * Since this initializes the modeset locks, no locking is possible. Which is no
4733 * problem, since this should happen single threaded at init time. It is the
4734 * driver's problem to ensure this guarantee.
4735 *
4736 */
4737void drm_mode_config_init(struct drm_device *dev)
4738{
4739 mutex_init(&dev->mode_config.mutex);
Rob Clark51fd3712013-11-19 12:10:12 -05004740 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004741 mutex_init(&dev->mode_config.idr_mutex);
4742 mutex_init(&dev->mode_config.fb_lock);
4743 INIT_LIST_HEAD(&dev->mode_config.fb_list);
4744 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
4745 INIT_LIST_HEAD(&dev->mode_config.connector_list);
Sean Paul3b336ec2013-08-14 16:47:37 -04004746 INIT_LIST_HEAD(&dev->mode_config.bridge_list);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004747 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
4748 INIT_LIST_HEAD(&dev->mode_config.property_list);
4749 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
4750 INIT_LIST_HEAD(&dev->mode_config.plane_list);
4751 idr_init(&dev->mode_config.crtc_idr);
4752
4753 drm_modeset_lock_all(dev);
4754 drm_mode_create_standard_connector_properties(dev);
Rob Clark9922ab52014-04-01 20:16:57 -04004755 drm_mode_create_standard_plane_properties(dev);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004756 drm_modeset_unlock_all(dev);
4757
4758 /* Just to be sure */
4759 dev->mode_config.num_fb = 0;
4760 dev->mode_config.num_connector = 0;
4761 dev->mode_config.num_crtc = 0;
4762 dev->mode_config.num_encoder = 0;
Matt Ropere27dde32014-04-01 15:22:30 -07004763 dev->mode_config.num_overlay_plane = 0;
4764 dev->mode_config.num_total_plane = 0;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004765}
4766EXPORT_SYMBOL(drm_mode_config_init);
4767
4768/**
4769 * drm_mode_config_cleanup - free up DRM mode_config info
4770 * @dev: DRM device
4771 *
4772 * Free up all the connectors and CRTCs associated with this DRM device, then
4773 * free up the framebuffers and associated buffer objects.
4774 *
4775 * Note that since this /should/ happen single-threaded at driver/device
4776 * teardown time, no locking is required. It's the driver's job to ensure that
4777 * this guarantee actually holds true.
4778 *
4779 * FIXME: cleanup any dangling user buffer objects too
4780 */
4781void drm_mode_config_cleanup(struct drm_device *dev)
4782{
4783 struct drm_connector *connector, *ot;
4784 struct drm_crtc *crtc, *ct;
4785 struct drm_encoder *encoder, *enct;
Sean Paul3b336ec2013-08-14 16:47:37 -04004786 struct drm_bridge *bridge, *brt;
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004787 struct drm_framebuffer *fb, *fbt;
4788 struct drm_property *property, *pt;
4789 struct drm_property_blob *blob, *bt;
4790 struct drm_plane *plane, *plt;
4791
4792 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
4793 head) {
4794 encoder->funcs->destroy(encoder);
4795 }
4796
Sean Paul3b336ec2013-08-14 16:47:37 -04004797 list_for_each_entry_safe(bridge, brt,
4798 &dev->mode_config.bridge_list, head) {
4799 bridge->funcs->destroy(bridge);
4800 }
4801
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004802 list_for_each_entry_safe(connector, ot,
4803 &dev->mode_config.connector_list, head) {
4804 connector->funcs->destroy(connector);
4805 }
4806
4807 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
4808 head) {
4809 drm_property_destroy(dev, property);
4810 }
4811
4812 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
4813 head) {
4814 drm_property_destroy_blob(dev, blob);
4815 }
4816
4817 /*
4818 * Single-threaded teardown context, so it's not required to grab the
4819 * fb_lock to protect against concurrent fb_list access. Contrary, it
4820 * would actually deadlock with the drm_framebuffer_cleanup function.
4821 *
4822 * Also, if there are any framebuffers left, that's a driver leak now,
4823 * so politely WARN about this.
4824 */
4825 WARN_ON(!list_empty(&dev->mode_config.fb_list));
4826 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
4827 drm_framebuffer_remove(fb);
4828 }
4829
4830 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
4831 head) {
4832 plane->funcs->destroy(plane);
4833 }
4834
4835 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
4836 crtc->funcs->destroy(crtc);
4837 }
4838
4839 idr_destroy(&dev->mode_config.crtc_idr);
Rob Clark51fd3712013-11-19 12:10:12 -05004840 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
Laurent Pinchart87d24fc2013-04-15 15:37:16 +02004841}
4842EXPORT_SYMBOL(drm_mode_config_cleanup);